Skip to content

Commit 88dce9d

Browse files
authored
v2.32.2
1 parent c98e4d1 commit 88dce9d

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

HISTORY.md

+14
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,20 @@ dev
66

77
- \[Short description of non-trivial change.\]
88

9+
2.32.2 (2024-05-21)
10+
-------------------
11+
12+
**Deprecations**
13+
- To provide a more stable migration for custom HTTPAdapters impacted
14+
by the CVE changes in 2.32.0, we've renamed `_get_connection` to
15+
a new public API, `get_connection_with_tls_context`. Existing custom
16+
HTTPAdapters will need to migrate their code to use this new API.
17+
`get_connection` is considered deprecated in all versions of Requests>=2.32.0.
18+
19+
A minimal (2-line) example has been provided in the linked PR to ease
20+
migration, but we strongly urge users to evaluate if their custom adapter
21+
is subject to the same issue described in CVE-2024-35195. (#6710)
22+
923
2.32.1 (2024-05-20)
1024
-------------------
1125

src/requests/__version__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
__title__ = "requests"
66
__description__ = "Python HTTP for Humans."
77
__url__ = "https://requests.readthedocs.io"
8-
__version__ = "2.32.1"
9-
__build__ = 0x023201
8+
__version__ = "2.32.2"
9+
__build__ = 0x023202
1010
__author__ = "Kenneth Reitz"
1111
__author_email__ = "[email protected]"
1212
__license__ = "Apache-2.0"

0 commit comments

Comments
 (0)