diff --git a/docs/en_US/release_notes_9_11.rst b/docs/en_US/release_notes_9_11.rst index 4a727c65a..8a9f0838c 100644 --- a/docs/en_US/release_notes_9_11.rst +++ b/docs/en_US/release_notes_9_11.rst @@ -32,12 +32,14 @@ Housekeeping Bug fixes ********* + | `Issue #9036 `_ - Fixed an issue on type casting of default string function/procedure arguments in debugger tool. | `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. - | `Issue #9354 `_ - Fixed an issue where connection is failing via Query Tool/PSQL Tool workspaces. + | `Issue #9368 `_ - Plain SQL restore runs with '\restrict' option to prevent harmful psql meta-commands (CVE-2025-13780). | `Issue #9372 `_ - Fixed an issue where copying highlighted text in the query tool data output cell editor would copy the complete string. | `Issue #9373 `_ - Fixed an issue where copying a single cell should not add quoting. + | `Issue #9393 `_ - Fix the Helm chart server definition and change the app version. | `Issue #9399 `_ - Specify the correct hostname placeholder for the Password Exec command. | `Issue #9408 `_ - Ensure the proper handling of extra volume mount configurations in the Helm deployment template by correcting the configuration value references. diff --git a/requirements.txt b/requirements.txt index a35694353..b9bc43043 100644 --- a/requirements.txt +++ b/requirements.txt @@ -56,7 +56,7 @@ sqlparse==0.* sshtunnel==0.* typer[all]==0.20.* urllib3==1.26.*; python_version <= '3.9' -urllib3==2.5.*; python_version > '3.9' +urllib3==2.6.*; python_version > '3.9' user-agents==2.2.0 Werkzeug==3.1.* WTForms==3.1.*; python_version <= '3.9'