We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84d10f0 commit 6e83187Copy full SHA for 6e83187
2 files changed
HISTORY.md
@@ -6,6 +6,14 @@ dev
6
7
- \[Short description of non-trivial change.\]
8
9
+
10
+2.34.2 (2026-05-14)
11
+-------------------
12
+- Moved `headers` input type back to `Mapping` to avoid invariance issues
13
+ with `MutableMapping` and inferred dict types. Users calling
14
+ `Request.headers.update()` may need to narrow typing in their code. (#7441)
15
16
17
2.34.1 (2026-05-13)
18
-------------------
19
src/requests/__version__.py
@@ -5,8 +5,8 @@
5
__title__ = "requests"
__description__ = "Python HTTP for Humans."
__url__ = "https://requests.readthedocs.io"
-__version__ = "2.34.1"
-__build__ = 0x023401
+__version__ = "2.34.2"
+__build__ = 0x023402
__author__ = "Kenneth Reitz"
__author_email__ = "me@kennethreitz.org"
__license__ = "Apache-2.0"
0 commit comments