Skip to content

Commit b0d3707

Browse files
committed
v2.34.1
1 parent 5691f59 commit b0d3707

2 files changed

Lines changed: 16 additions & 2 deletions

File tree

HISTORY.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,20 @@ dev
66

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

9+
2.34.1 (2026-05-13)
10+
-------------------
11+
12+
**Bugfixes**
13+
- Widened `json` input type from `dict` and `list` to `Mapping`
14+
and `Sequence`. (#7436)
15+
- Changed `headers` input type to MutableMapping and removed `None` from
16+
`Request.headers` typing to improve handling for users. (#7431)
17+
- `Response.reason` moved from `str | None` to `str` to improve handling
18+
for users. (#7437)
19+
- Fixed a bug where some bodies with custom `__getattr__` implementations
20+
weren't being properly detected as Iterables. (#7433)
21+
22+
923
2.34.0 (2026-05-11)
1024
-------------------
1125

src/requests/__version__.py

Lines changed: 2 additions & 2 deletions
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.34.0"
9-
__build__ = 0x023400
8+
__version__ = "2.34.1"
9+
__build__ = 0x023401
1010
__author__ = "Kenneth Reitz"
1111
__author_email__ = "me@kennethreitz.org"
1212
__license__ = "Apache-2.0"

0 commit comments

Comments
 (0)