diff --git a/docs/en_US/release_notes_8_12.rst b/docs/en_US/release_notes_8_12.rst index a21e734b3..1e650c131 100644 --- a/docs/en_US/release_notes_8_12.rst +++ b/docs/en_US/release_notes_8_12.rst @@ -35,5 +35,6 @@ Bug fixes | `Issue #7076 `_ - Revamp the current password saving implementation to a keyring and reduce repeated OS user password prompts. | `Issue #7571 `_ - Fixed an issue where users could not use pgAdmin if they did not have access to the management database. | `Issue #7811 `_ - Fixed an issue where servers listed in the servers.json file were being reimported upon container restart. + | `Issue #7839 `_ - Added support for OIDC based OAuth2 authentication. | `Issue #7878 `_ - Fixed an issue where cursor moves to end of line when editing input fields. | `Issue #7895 `_ - Fixed an issue where different client backend shows all SQL are same. \ No newline at end of file diff --git a/web/version.py b/web/version.py index cce194bd2..a607f5e9e 100644 --- a/web/version.py +++ b/web/version.py @@ -18,7 +18,7 @@ # Application version number components APP_RELEASE = 8 -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 = 81100 +APP_VERSION_INT = 81200 # DO NOT CHANGE! # The application version string, constructed from the components