Skip to content

Commit a1a6a54

Browse files
committed
v2.26.0
1 parent e253eba commit a1a6a54

File tree

2 files changed

+24
-7
lines changed

2 files changed

+24
-7
lines changed

HISTORY.md

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,29 @@ dev
55
---
66

77
- \[Short description of non-trivial change.\]
8-
- Requests Brotli compression, if either the `brotli` or `brotlicffi` package
9-
is installed.
8+
9+
2.26.0 (2021-07-13)
10+
-------------------
11+
12+
**Improvements**
13+
14+
- Requests now supports Brotli compression, if either the `brotli` or
15+
`brotlicffi` package is installed. (#5783)
16+
17+
- `Session.send` now correctly resolves proxy configurations from both
18+
the Session and Request. Behavior now matches `Session.request`. (#5681)
19+
20+
**Bugfixes**
21+
22+
- Fixed a race condition in zip extraction when using Requests in parallel
23+
from zip archive. (#5707)
1024

1125
**Dependencies**
1226

1327
- Instead of `chardet`, use the MIT-licensed `charset_normalizer` for Python3
1428
to remove license ambiguity for projects bundling requests. If `chardet`
1529
is already installed on your machine it will be used instead of `charset_normalizer`
16-
to keep backwards compatibility.
30+
to keep backwards compatibility. (#5797)
1731

1832
You can also install `chardet` while installing requests by
1933
specifying `[use_chardet_on_py3]` extra as follows:
@@ -24,12 +38,15 @@ dev
2438

2539
Python2 still depends upon the `chardet` module.
2640

41+
- Requests now supports `idna` 3.x on Python 3. `idna` 2.x will continue to
42+
be used on Python 2 installations. (#5711)
43+
2744
**Deprecations**
2845

2946
- The `requests[security]` extra has been converted to a no-op install.
30-
PyOpenSSL is no longer the recommended secure option for Requests.
47+
PyOpenSSL is no longer the recommended secure option for Requests. (#5867)
3148

32-
- Requests has officially dropped support for Python 3.5.
49+
- Requests has officially dropped support for Python 3.5. (#5867)
3350

3451
2.25.1 (2020-12-16)
3552
-------------------

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.25.1'
9-
__build__ = 0x022501
8+
__version__ = '2.26.0'
9+
__build__ = 0x022600
1010
__author__ = 'Kenneth Reitz'
1111
__author_email__ = '[email protected]'
1212
__license__ = 'Apache 2.0'

0 commit comments

Comments
 (0)