summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth Michael Larson <sethmichaellarson@gmail.com>2020-10-19 09:08:14 -0500
committerGitHub <noreply@github.com>2020-10-19 09:08:14 -0500
commit9b95f29c575d73260ec4f5a8c0ea368cf242019e (patch)
tree3adfe6d8f7a920a97b97deb39eba31d03e5a5c2d
parent37664c98321374fb2af6d08d9943a9b9ae24eee8 (diff)
downloadurllib3-1.25-series.tar.gz
Release: 1.25.111.25.111.25-series
-rw-r--r--CHANGES.rst13
-rw-r--r--src/urllib3/_version.py2
2 files changed, 14 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 980168e9..df1a0dbd 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,6 +1,19 @@
Changes
=======
+1.25.11 (2020-10-19)
+--------------------
+
+* Fix retry backoff time parsed from ``Retry-After`` header when given
+ in the HTTP date format. The HTTP date was parsed as the local timezone
+ rather than accounting for the timezone in the HTTP date (typically
+ UTC) (Pull #1932, Pull #1935, Pull #1938, Pull #1949)
+
+* Fix issue where an error would be raised when the ``SSLKEYLOGFILE``
+ environment variable was set to the empty string. Now ``SSLContext.keylog_file``
+ is not set in this situation (Pull #2016)
+
+
1.25.10 (2020-07-22)
--------------------
diff --git a/src/urllib3/_version.py b/src/urllib3/_version.py
index 8697ad85..5a0ec53d 100644
--- a/src/urllib3/_version.py
+++ b/src/urllib3/_version.py
@@ -1,2 +1,2 @@
# This file is protected via CODEOWNERS
-__version__ = "1.25.10"
+__version__ = "1.25.11"