From 2f495006eac37a4cf5592713d35e36f331eece5e Mon Sep 17 00:00:00 2001 From: Akshay Joshi Date: Mon, 3 Feb 2025 14:26:57 +0530 Subject: [PATCH] 1) Fixed an issue where the server shows disconnected on the Welcome page, even after the password was provided. 2) Updated the release notes and version information. --- docs/en_US/release_notes_9_0.rst | 3 ++- web/pgadmin/misc/workspaces/static/js/AdHocConnection.jsx | 1 + web/version.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/en_US/release_notes_9_0.rst b/docs/en_US/release_notes_9_0.rst index 98b772197..9c9648d0a 100644 --- a/docs/en_US/release_notes_9_0.rst +++ b/docs/en_US/release_notes_9_0.rst @@ -52,4 +52,5 @@ Bug fixes | `Issue #8309 `_ - Remove the option "With no data (concurrently)" from Refresh MATERIALIZED VIEW context menu. | `Issue #8320 `_ - Fix an issue where wrong information is shown after using the filter on the Dashboard> State tab. | `Issue #8365 `_ - Fixed an issue where PSQL tool is not opening if database name have HTML characters in the name. - | `Issue #8369 `_ - Fixed an issue where Default Privileges and Privileges not working correctly. \ No newline at end of file + | `Issue #8369 `_ - Fixed an issue where Default Privileges and Privileges not working correctly. + | `Issue #8408 `_ - Fixed an issue where quotes were missing in the CREATE script for the tablespace. \ No newline at end of file diff --git a/web/pgadmin/misc/workspaces/static/js/AdHocConnection.jsx b/web/pgadmin/misc/workspaces/static/js/AdHocConnection.jsx index f03dba975..a42e9d893 100644 --- a/web/pgadmin/misc/workspaces/static/js/AdHocConnection.jsx +++ b/web/pgadmin/misc/workspaces/static/js/AdHocConnection.jsx @@ -180,6 +180,7 @@ class AdHocConnectionSchema extends BaseUISchema { if(sid && !_.find(self.flatServers, (s) => s.value == sid)?.connected) { this.connectExistingServer(sid, state.user, null, (data) => { self.setServerConnected(sid, data.icon); + selectedServer.connected = true; resolve(() => ({ sid: sid, server_name:selectedServer?.label, host: selectedServer?.host, port: selectedServer?.port, service: selectedServer?.service, connection_params: selectedServer?.connection_params, connected: true diff --git a/web/version.py b/web/version.py index 6987222f8..13bb384fe 100644 --- a/web/version.py +++ b/web/version.py @@ -18,7 +18,7 @@ # Application version number components APP_RELEASE = 9 -APP_REVISION = 00 +APP_REVISION = 0 # Application version suffix, e.g. 'beta1', 'dev'. Usually an empty string # for GA releases.