Skip to content

Commit

Permalink
🔖 Release 2.0.932
Browse files Browse the repository at this point in the history
  • Loading branch information
Ousret committed Sep 12, 2023
1 parent 91ab03b commit 5c47b87
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 8 deletions.
15 changes: 15 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
2.0.932 (2023-09-12)
====================

Bugfixes
--------

- Fixed `assert_hostname` behavior when HTTPSConnection targets HTTP/3 over QUIC (`#8 <https://github.com/jawah/urllib3.future/issues/8>`__)
- Fixed protocol violation for HTTP/2 and HTTP/3 where we sent ``Connection: keep-alive`` when it is
forbidden. (`#16 <https://github.com/jawah/urllib3.future/issues/16>`__)
- Fixed ``unpack_chunk`` workaround function in the ``send`` method when body is multipart/form-data (`#17 <https://github.com/jawah/urllib3.future/issues/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 <https://github.com/jawah/urllib3.future/issues/18>`__)


2.0.931 (2023-07-16)
====================

Expand Down
2 changes: 0 additions & 2 deletions changelog/16.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/17.bugfix.rst

This file was deleted.

3 changes: 0 additions & 3 deletions changelog/18.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/8.bugfix.rst

This file was deleted.

2 changes: 1 addition & 1 deletion src/urllib3/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file is protected via CODEOWNERS
from __future__ import annotations

__version__ = "2.0.931"
__version__ = "2.0.932"

0 comments on commit 5c47b87

Please sign in to comment.