From b28a385f499eea960cc39f4b3424588010c76ee5 Mon Sep 17 00:00:00 2001 From: Seth Michael Larson Date: Sun, 10 Nov 2019 20:05:50 -0600 Subject: [PATCH 1/2] Release 1.25.7 --- CHANGES.rst | 4 ++-- src/urllib3/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index c8f288e197..d62e2dbddb 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,8 +1,8 @@ Changes ======= -master (dev) ------------- +1.25.7 (2019-11-11) +------------------- * Fix issue where URL fragment was sent within the request target. (Pull #1732) diff --git a/src/urllib3/__init__.py b/src/urllib3/__init__.py index 8f5a21f346..96474d3680 100644 --- a/src/urllib3/__init__.py +++ b/src/urllib3/__init__.py @@ -22,7 +22,7 @@ __author__ = "Andrey Petrov (andrey.petrov@shazow.net)" __license__ = "MIT" -__version__ = "1.25.6" +__version__ = "1.25.7" __all__ = ( "HTTPConnectionPool", From 69390cb127abf22804f8d2c5eed07960b79a6df1 Mon Sep 17 00:00:00 2001 From: Seth Michael Larson Date: Mon, 11 Nov 2019 08:00:07 -0600 Subject: [PATCH 2/2] Update CHANGES.rst --- CHANGES.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index d62e2dbddb..fdad3e7a6f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,10 +4,16 @@ Changes 1.25.7 (2019-11-11) ------------------- +* Preserve ``chunked`` parameter on retries (Pull #1715, Pull #1734) + +* Allow unset ``SERVER_SOFTWARE`` in App Engine (Pull #1704, Issue #1470) + * Fix issue where URL fragment was sent within the request target. (Pull #1732) * Fix issue where an empty query section in a URL would fail to parse. (Pull #1732) +* Remove TLS 1.3 support in SecureTransport due to Apple removing support (Pull #1703) + 1.25.6 (2019-09-24) -------------------