From ef1b69bd5a0e9dc73e9fea4246a6b78425f96c6d Mon Sep 17 00:00:00 2001 From: Akshay Joshi Date: Mon, 2 Feb 2026 12:24:51 +0530 Subject: [PATCH] Update version for release v9.12 --- docs/en_US/release_notes_9_12.rst | 2 +- web/version.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/en_US/release_notes_9_12.rst b/docs/en_US/release_notes_9_12.rst index 9077ac0fb..25848f998 100644 --- a/docs/en_US/release_notes_9_12.rst +++ b/docs/en_US/release_notes_9_12.rst @@ -52,7 +52,7 @@ Bug fixes | `Issue #9350 `_ - Disable Parameters and Membership fields when object is not new for Login and group roles. | `Issue #9380 `_ - Fixed an issue where the Query History panel would auto-scroll to the top and did not preserve the scroll bar position for the selected entry. | `Issue #9500 `_ - Fixed an issue where connection parameters were using localized values instead of literal values, causing connection failures. - | `Issue #9518 `_ - Mask the secret key for restrict option in the process watcher when restoring plain SQL file. + | `Issue #9518 `_ - Mask the secret key for restrict option in the process watcher when restoring plain SQL file (CVE-2026-1707). | `Issue #9522 `_ - Ensure the container deployment supports boolean values in yaml format. | `Issue #9552 `_ - Ensure that the tooltip for the password cell is not visible. | `Issue #9553 `_ - Fix pgAdmin fails when performing Backup/Restore on a PostgreSQL connection defined exclusively via pg_service.conf. diff --git a/web/version.py b/web/version.py index dac71f4e4..d3a7f48bd 100644 --- a/web/version.py +++ b/web/version.py @@ -18,7 +18,7 @@ # Application version number components APP_RELEASE = 9 -APP_REVISION = 11 +APP_REVISION = 12 # Application version suffix, e.g. 'beta1', 'dev'. Usually an empty string # for GA releases. @@ -27,7 +27,7 @@ APP_SUFFIX = '' # Numeric application version for upgrade checks. Should be in the format: # [X]XYYZZ, where X is the release version, Y is the revision, with a leading # zero if needed, and Z represents the suffix, with a leading zero if needed -APP_VERSION_INT = 91100 +APP_VERSION_INT = 91200 # DO NOT CHANGE! # The application version string, constructed from the components