Skip to content

Commit da8b77e

Browse files
committed
v2.34.0.dev1
1 parent 561e4b6 commit da8b77e

2 files changed

Lines changed: 17 additions & 2 deletions

File tree

HISTORY.md

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

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

9+
2.34.0 (2026-05-??)
10+
-------------------
11+
12+
**Improvements**
13+
* Requests 2.34.0 introduces inline types, replacing those provided by
14+
typeshed. Public API types should be fully compatible with mypy, pyright,
15+
and ty. (#7272)
16+
* Digest Auth hashing algorithms have added `usedforsecurity=False` to clarify
17+
security considerations. (#7310)
18+
19+
**Bugfixes**
20+
* ``Response.history`` no longer contains a reference to itself, preventing
21+
accidental looping when traversing the history list. (#7328)
22+
23+
924
2.33.1 (2026-03-30)
1025
-------------------
1126

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.33.1"
9-
__build__ = 0x023301
8+
__version__ = "2.34.0.dev1"
9+
__build__ = 0x023400
1010
__author__ = "Kenneth Reitz"
1111
__author_email__ = "me@kennethreitz.org"
1212
__license__ = "Apache-2.0"

0 commit comments

Comments
 (0)