From 56f01e088dc006c03d4ee6ea9da4ab810f1ed700 Mon Sep 17 00:00:00 2001 From: Illia Volochii Date: Tue, 17 Oct 2023 20:26:50 +0300 Subject: [PATCH] Release 2.0.7 --- .readthedocs.yml | 2 +- CHANGES.rst | 10 ++++++++++ dev-requirements.txt | 2 +- src/urllib3/_version.py | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 78bd2064f6..7c59df5b3a 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -3,7 +3,7 @@ version: 2 build: os: ubuntu-22.04 tools: - python: "3" + python: "3.11" python: install: diff --git a/CHANGES.rst b/CHANGES.rst index 27038fef47..6c37aeba10 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,8 @@ +2.0.7 (2023-10-17) +================== + +* Made body stripped from HTTP requests changing the request method to GET after HTTP 303 "See Other" redirect responses. + 2.0.6 (2023-10-02) ================== @@ -167,6 +172,11 @@ Fixed * Fixed a socket leak if ``HTTPConnection.connect()`` fails (`#2571 `__). * Fixed ``urllib3.contrib.pyopenssl.WrappedSocket`` and ``urllib3.contrib.securetransport.WrappedSocket`` close methods (`#2970 `__) +1.26.18 (2023-10-17) +==================== + +* Made body stripped from HTTP requests changing the request method to GET after HTTP 303 "See Other" redirect responses. + 1.26.17 (2023-10-02) ==================== diff --git a/dev-requirements.txt b/dev-requirements.txt index 70f5097338..8b3632c37f 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -10,4 +10,4 @@ cryptography==39.0.2;implementation_name=="pypy" and implementation_version<"7.3 cryptography==41.0.4;implementation_name!="pypy" or implementation_version>="7.3.10" backports.zoneinfo==0.2.1;python_version<"3.9" towncrier==23.6.0 -pytest-memray==1.4.0;python_version>="3.8" and python_version<"3.12" and sys_platform!="win32" and implementation_name=="cpython" +pytest-memray==1.4.0;python_version>="3.8" and python_version<"3.13" and sys_platform!="win32" and implementation_name=="cpython" diff --git a/src/urllib3/_version.py b/src/urllib3/_version.py index 2d0d430896..e2b88f1d68 100644 --- a/src/urllib3/_version.py +++ b/src/urllib3/_version.py @@ -1,4 +1,4 @@ # This file is protected via CODEOWNERS from __future__ import annotations -__version__ = "2.0.6" +__version__ = "2.0.7"