summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth Michael Larson <seth.larson@elastic.co>2022-01-06 11:25:57 -0600
committerSeth Michael Larson <seth.larson@elastic.co>2022-01-06 11:30:53 -0600
commite3c7fbf10ca812e9689164e69f7373f66512396a (patch)
treed5bc35f0e22b2740adb04c054e6e1208405b665e
parent72e72b8ca8353318f60f418554c1150418bcb3a4 (diff)
downloadurllib3-release-1.26.8.tar.gz
Release 1.26.8release-1.26.8
-rw-r--r--CHANGES.rst16
-rw-r--r--src/urllib3/_version.py2
2 files changed, 17 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 124a13e2..66bf8846 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,8 +1,24 @@
Changes
=======
+1.26.8 (2022-01-07)
+-------------------
+
+* Added extra message to``urllib3.exceptions.ProxyError`` when urllib3 detects that
+ a proxy is configured to use HTTPS but the proxy itself appears to only use HTTP.
+* Added a mention of the size of the connection pool when discarding a connection due to the pool being full.
+* Added explicit support for Python 3.11.
+* Deprecated the ``Retry.MAX_BACKOFF`` class property in favor of ``Retry.DEFAULT_MAX_BACKOFF``
+ to better match the rest of the default parameter names. ``Retry.MAX_BACKOFF`` is removed in v2.0.
+* Changed location of the vendored ``ssl.match_hostname`` function from ``urllib3.packages.ssl_match_hostname``
+ to ``urllib3.util.ssl_match_hostname`` to ensure Python 3.10+ compatibility after being repackaged
+ by downstream distributors.
+* Fixed absolute imports, all imports are now relative.
+
+
1.26.7 (2021-09-22)
-------------------
+
* Fixed a bug with HTTPS hostname verification involving IP addresses and lack
of SNI. (Issue #2400)
* Fixed a bug where IPv6 braces weren't stripped during certificate hostname
diff --git a/src/urllib3/_version.py b/src/urllib3/_version.py
index 5141d980..fa8979d7 100644
--- a/src/urllib3/_version.py
+++ b/src/urllib3/_version.py
@@ -1,2 +1,2 @@
# This file is protected via CODEOWNERS
-__version__ = "1.26.7"
+__version__ = "1.26.8"