Skip to content

Commit 2f49500

Browse files
committed
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.
1 parent dd09986 commit 2f49500

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

docs/en_US/release_notes_9_0.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,5 @@ Bug fixes
5252
| `Issue #8309 <https://github.com/pgadmin-org/pgadmin4/issues/8309>`_ - Remove the option "With no data (concurrently)" from Refresh MATERIALIZED VIEW context menu.
5353
| `Issue #8320 <https://github.com/pgadmin-org/pgadmin4/issues/8320>`_ - Fix an issue where wrong information is shown after using the filter on the Dashboard> State tab.
5454
| `Issue #8365 <https://github.com/pgadmin-org/pgadmin4/issues/8365>`_ - Fixed an issue where PSQL tool is not opening if database name have HTML characters in the name.
55-
| `Issue #8369 <https://github.com/pgadmin-org/pgadmin4/issues/8369>`_ - Fixed an issue where Default Privileges and Privileges not working correctly.
55+
| `Issue #8369 <https://github.com/pgadmin-org/pgadmin4/issues/8369>`_ - Fixed an issue where Default Privileges and Privileges not working correctly.
56+
| `Issue #8408 <https://github.com/pgadmin-org/pgadmin4/issues/8408>`_ - Fixed an issue where quotes were missing in the CREATE script for the tablespace.

web/pgadmin/misc/workspaces/static/js/AdHocConnection.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ class AdHocConnectionSchema extends BaseUISchema {
180180
if(sid && !_.find(self.flatServers, (s) => s.value == sid)?.connected) {
181181
this.connectExistingServer(sid, state.user, null, (data) => {
182182
self.setServerConnected(sid, data.icon);
183+
selectedServer.connected = true;
183184
resolve(() => ({ sid: sid, server_name:selectedServer?.label, host: selectedServer?.host,
184185
port: selectedServer?.port, service: selectedServer?.service,
185186
connection_params: selectedServer?.connection_params, connected: true

web/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
# Application version number components
2020
APP_RELEASE = 9
21-
APP_REVISION = 00
21+
APP_REVISION = 0
2222

2323
# Application version suffix, e.g. 'beta1', 'dev'. Usually an empty string
2424
# for GA releases.

0 commit comments

Comments
 (0)