Skip to content

Commit

Permalink
Release 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sethmlarson committed May 3, 2023
1 parent d8dcdd7 commit b234aaf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
11 changes: 8 additions & 3 deletions CHANGES.rst
@@ -1,8 +1,13 @@
2.0.1 (2023-04-30)
2.0.2 (2023-05-03)
==================

Fixes
-----
- Fixed ``HTTPResponse.stream()`` to continue yielding bytes if buffered decompressed data
was still available to be read even if the underlying socket is closed. This prevents
a compressed response from being truncated. (`#3009 <https://github.com/urllib3/urllib3/issues/3009>`__)


2.0.1 (2023-04-30)
==================

- Fixed a socket leak when fingerprint or hostname verifications fail. (`#2991 <https://github.com/urllib3/urllib3/issues/2991>`__)
- Fixed an error when ``HTTPResponse.read(0)`` was the first ``read`` call or when the internal response body buffer was otherwise empty. (`#2998 <https://github.com/urllib3/urllib3/issues/2998>`__)
Expand Down
3 changes: 0 additions & 3 deletions changelog/3009.bugfix

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.0.1"
__version__ = "2.0.2"

0 comments on commit b234aaf

Please sign in to comment.