Skip to content

Commit e9b97d6

Browse files
committed
1) Pin pywinpty due to andfoy/pywinpty#545
2) Remove scram_client_key and scram_server_key from the connection string parameter as it is not meant to be specified directly by users or client applications.
1 parent 83377d4 commit e9b97d6

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

docs/en_US/release_notes_9_9.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ New features
2525
| `Issue #6395 <https://github.com/pgadmin-org/pgadmin4/issues/6395>`_ - Added "SUBSCRIPT" option while creating a External Type.
2626
| `Issue #6996 <https://github.com/pgadmin-org/pgadmin4/issues/6996>`_ - Added option to skip the password dialog when using an identity file.
2727
| `Issue #8932 <https://github.com/pgadmin-org/pgadmin4/issues/8932>`_ - Added 'failover' and 'two_phase' parameter support in CREATE/ALTER SUBSCRIPTION for PostgreSQL v17+.
28+
| `Issue #9225 <https://github.com/pgadmin-org/pgadmin4/issues/9225>`_ - Add support for initializing the pgAdmin4 Kubernetes Helm chart.
2829
2930
Housekeeping
3031
************

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ psycopg[c]==3.2.10
4646
pyotp==2.*
4747
python-dateutil==2.*
4848
pytz==2025.*
49-
pywinpty==3.0.*; sys_platform=="win32"
49+
# pinned for https://github.com/andfoy/pywinpty/issues/545
50+
pywinpty==2.0.*; sys_platform=="win32"
5051
qrcode[pil]==8.*; python_version >= '3.9'
5152
setuptools==80.*
5253
SQLAlchemy==2.*

web/pgadmin/browser/server_groups/servers/static/js/server.ui.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -157,12 +157,6 @@ export function getConnectionParameters() {
157157
'value': 'max_protocol_version', 'label': gettext('Max protocol version'),
158158
'vartype': 'enum', 'min_server_version': '18',
159159
'enumvals': [gettext('3.0'), gettext('3.2'), gettext('latest')]
160-
}, {
161-
'value': 'scram_client_key', 'label': gettext('Scram client key'), 'vartype': 'string',
162-
'min_server_version': '18'
163-
}, {
164-
'value': 'scram_server_key', 'label': gettext('Scram server key'), 'vartype': 'string',
165-
'min_server_version': '18'
166160
}, {
167161
'value': 'oauth_issuer', 'label': gettext('OAuth issuer'), 'vartype': 'string',
168162
'min_server_version': '18'

0 commit comments

Comments
 (0)