summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth Michael Larson <sethmichaellarson@gmail.com>2022-03-16 08:24:47 -0500
committerGitHub <noreply@github.com>2022-03-16 08:24:47 -0500
commit6de3330eb54f73a57c7860f75123bde8b043dbd2 (patch)
treeb7ffab76ce88bb2e4d2258e22064855b6ea5f3f5
parent5ea33e159ef9f11282240da5f6af1e3a5563b334 (diff)
downloadurllib3-6de3330eb54f73a57c7860f75123bde8b043dbd2.tar.gz
Release 1.26.91.26.9
-rw-r--r--CHANGES.rst11
-rw-r--r--src/urllib3/_version.py2
2 files changed, 12 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 94878e7d..bd5f8fcc 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,6 +1,17 @@
Changes
=======
+1.26.9 (2022-03-16)
+-------------------
+
+* Changed ``urllib3[brotli]`` extra to favor installing Brotli libraries that are still
+ receiving updates like ``brotli`` and ``brotlicffi`` instead of ``brotlipy``.
+ This change does not impact behavior of urllib3, only which dependencies are installed.
+* Fixed a socket leaking when ``HTTPSConnection.connect()`` raises an exception.
+* Fixed ``server_hostname`` being forwarded from ``PoolManager`` to ``HTTPConnectionPool``
+ when requesting an HTTP URL. Should only be forwarded when requesting an HTTPS URL.
+
+
1.26.8 (2022-01-07)
-------------------
diff --git a/src/urllib3/_version.py b/src/urllib3/_version.py
index fa8979d7..d905b697 100644
--- a/src/urllib3/_version.py
+++ b/src/urllib3/_version.py
@@ -1,2 +1,2 @@
# This file is protected via CODEOWNERS
-__version__ = "1.26.8"
+__version__ = "1.26.9"