From 5c47b871ac34f010e3d2f3f462751f6684a6c363 Mon Sep 17 00:00:00 2001 From: Ahmed TAHRI Date: Tue, 12 Sep 2023 14:03:17 +0200 Subject: [PATCH] :bookmark: Release 2.0.932 --- CHANGES.rst | 15 +++++++++++++++ changelog/16.bugfix.rst | 2 -- changelog/17.bugfix.rst | 1 - changelog/18.bugfix.rst | 3 --- changelog/8.bugfix.rst | 1 - src/urllib3/_version.py | 2 +- 6 files changed, 16 insertions(+), 8 deletions(-) delete mode 100644 changelog/16.bugfix.rst delete mode 100644 changelog/17.bugfix.rst delete mode 100644 changelog/18.bugfix.rst delete mode 100644 changelog/8.bugfix.rst diff --git a/CHANGES.rst b/CHANGES.rst index deed893371..bec310d60b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,18 @@ +2.0.932 (2023-09-12) +==================== + +Bugfixes +-------- + +- Fixed `assert_hostname` behavior when HTTPSConnection targets HTTP/3 over QUIC (`#8 `__) +- Fixed protocol violation for HTTP/2 and HTTP/3 where we sent ``Connection: keep-alive`` when it is + forbidden. (`#16 `__) +- Fixed ``unpack_chunk`` workaround function in the ``send`` method when body is multipart/form-data (`#17 `__) +- Fixed the flow control when sending a body for a HTTP/2 connection. + The body will be split into numerous chunks if the size exceed the specified blocksize when not + using HTTP/1.1 in order to avoid ProtocolError (flow control) (`#18 `__) + + 2.0.931 (2023-07-16) ==================== diff --git a/changelog/16.bugfix.rst b/changelog/16.bugfix.rst deleted file mode 100644 index d64dd58504..0000000000 --- a/changelog/16.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Fixed protocol violation for HTTP/2 and HTTP/3 where we sent ``Connection: keep-alive`` when it is -forbidden. \ No newline at end of file diff --git a/changelog/17.bugfix.rst b/changelog/17.bugfix.rst deleted file mode 100644 index 3edb801db9..0000000000 --- a/changelog/17.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed ``unpack_chunk`` workaround function in the ``send`` method when body is multipart/form-data \ No newline at end of file diff --git a/changelog/18.bugfix.rst b/changelog/18.bugfix.rst deleted file mode 100644 index fd0d4358f9..0000000000 --- a/changelog/18.bugfix.rst +++ /dev/null @@ -1,3 +0,0 @@ -Fixed the flow control when sending a body for a HTTP/2 connection. -The body will be split into numerous chunks if the size exceed the specified blocksize when not -using HTTP/1.1 in order to avoid ProtocolError (flow control) \ No newline at end of file diff --git a/changelog/8.bugfix.rst b/changelog/8.bugfix.rst deleted file mode 100644 index 2a2252141f..0000000000 --- a/changelog/8.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed `assert_hostname` behavior when HTTPSConnection targets HTTP/3 over QUIC \ No newline at end of file diff --git a/src/urllib3/_version.py b/src/urllib3/_version.py index 4805d51ee9..344c0807a9 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.931" +__version__ = "2.0.932"