requests v2.28.1 Release Notes
Release Date: 2022-06-29 // over 2 years ago-
๐ Improvements
- Speed optimization in
iter_content
with transition toyield from
. (#6170)
Dependencies
- โ Added support for chardet 5.0.0 (#6179)
- โ Added support for charset-normalizer 2.1.0 (#6169)
- Speed optimization in
Previous changes from v2.28.0
-
๐ Deprecations
- ๐ โ ๏ธ Requests has officially dropped support for Python 2.7. โ ๏ธ (#6091)
- ๐ Requests has officially dropped support for Python 3.6 (including pypy3.6). (#6091)
๐ Improvements
- ๐ฐ Wrap JSON parsing issues in Request's JSONDecodeError for payloads without
an encoding to make
json()
API consistent. (#6097) - ๐ Parse header components consistently, raising an InvalidHeader error in all invalid cases. (#6154)
- โ Added provisional 3.11 support with current beta build. (#6155)
- Requests got a makeover and we decided to paint it black. (#6095)
๐ Bugfixes
- Fixed bug where setting
CURL_CA_BUNDLE
to an empty string would disable cert verification. All Requests 2.x versions before 2.28.0 are affected. (#6074) - ๐ Fixed urllib3 exception leak, wrapping
urllib3.exceptions.SSLError
withrequests.exceptions.SSLError
forcontent
anditer_content
. (#6057) - ๐ Fixed issue where invalid Windows registry entires caused proxy resolution to raise an exception rather than ignoring the entry. (#6149)
- ๐ Fixed issue where entire payload could be included in the error message for JSONDecodeError. (#6036)