diff --git a/docs/en_US/release_notes_9_11.rst b/docs/en_US/release_notes_9_11.rst index 50e2be7d3..1232b1185 100644 --- a/docs/en_US/release_notes_9_11.rst +++ b/docs/en_US/release_notes_9_11.rst @@ -24,6 +24,7 @@ New features | `Issue #6390 `_ - Add support of DEPENDS/NO DEPENDS ON EXTENSION for MATERIALIZED VIEW. | `Issue #8968 `_ - Add support for showing the column data type beside column name in the object explorer. | `Issue #9263 `_ - Added Ubuntu 25.10 and Fedora 43 + | `Issue #9345 `_ - Add conditional TLS support for the Ingress in the Helm chart. Housekeeping ************ @@ -33,3 +34,5 @@ Bug fixes | `Issue #9155 `_ - Fix pkg_resources deprecation warning by migrating Docker base image to python:3-alpine from alpine:latest. | `Issue #9297 `_ - Fixed an issue where EXPLAIN should run on query under cursor if no text is selected. + | `Issue #9351 `_ - Fixed an issue where opening file in Query Tool does not retain file name in tab. + | `Issue #9354 `_ - Fixed an issue where connection is failing via Query Tool/PSQL Tool workspaces. diff --git a/web/pgadmin/misc/workspaces/static/js/AdHocConnection.jsx b/web/pgadmin/misc/workspaces/static/js/AdHocConnection.jsx index 223295285..5e56f9ded 100644 --- a/web/pgadmin/misc/workspaces/static/js/AdHocConnection.jsx +++ b/web/pgadmin/misc/workspaces/static/js/AdHocConnection.jsx @@ -224,6 +224,7 @@ class AdHocConnectionSchema extends BaseUISchema { state.sid, 'get_new_connection_database' ), optionsReloadBasis: `${state.sid} ${this.isServerConnected(state.sid)}`, + optionsLoaded: (res) => this.dbs = res, }; } else { return {type: 'text'};