Skip to content

Commit

Permalink
Release 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pquentin committed Feb 18, 2024
1 parent 49b2dda commit 54d6edf
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGES.rst
@@ -1,3 +1,12 @@
2.2.1 (2024-02-16)
==================

- Fixed issue where ``InsecureRequestWarning`` was emitted for HTTPS connections when using Emscripten. (`#3331 <https://github.com/urllib3/urllib3/issues/3331>`__)
- Fixed ``HTTPConnectionPool.urlopen`` to stop automatically casting non-proxy headers to ``HTTPHeaderDict``. This change was premature as it did not apply to proxy headers and ``HTTPHeaderDict`` does not handle byte header values correctly yet. (`#3343 <https://github.com/urllib3/urllib3/issues/3343>`__)
- Changed ``ProtocolError`` to ``InvalidChunkLength`` when response terminates before the chunk length is sent. (`#2860 <https://github.com/urllib3/urllib3/issues/2860>`__)
- Changed ``ProtocolError`` to be more verbose on incomplete reads with excess content. (`#3261 <https://github.com/urllib3/urllib3/issues/3261>`__)


2.2.0 (2024-01-30)
==================

Expand Down
1 change: 0 additions & 1 deletion changelog/2860.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/3261.misc.rst

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

__version__ = "2.2.0"
__version__ = "2.2.1"

0 comments on commit 54d6edf

Please sign in to comment.