File tree 2 files changed +26
-7
lines changed
2 files changed +26
-7
lines changed Original file line number Diff line number Diff line change 6
6
7
7
- \[ Short description of non-trivial change.\]
8
8
9
- ** Bugfixes**
10
9
11
- - Fixed urllib3 exception leak, wrapping ` urllib3.exceptions.SSLError ` with
12
- ` requests.exceptions.SSLError ` for ` content ` and ` iter_content ` .
10
+ 2.28.0 (2022-06-09)
11
+ -------------------
13
12
14
13
** Deprecations**
15
14
16
- - ⚠️ Requests has officially dropped support for Python 2.7. ⚠️
17
- - Requests has officially dropped support for Python 3.6 (including pypy3).
15
+ - ⚠️ Requests has officially dropped support for Python 2.7. ⚠️ (#6091 )
16
+ - Requests has officially dropped support for Python 3.6 (including pypy3.6). (#6091 )
17
+
18
+ ** Improvements**
19
+
20
+ - Wrap JSON parsing issues in Request's JSONDecodeError for payloads without
21
+ an encoding to make ` json() ` API consistent. (#6097 )
22
+ - Parse header components consistently, raising an InvalidHeader error in
23
+ all invalid cases. (#6154 )
24
+ - Added provisional 3.11 support with current beta build. (#6155 )
25
+ - Requests got a makeover and we decided to paint it black. (#6095 )
26
+
27
+ ** Bugfixes**
28
+
29
+ - Fixed bug where setting ` CURL_CA_BUNDLE ` to an empty string would disable
30
+ cert verification. All Requests 2.x versions before 2.28.0 are affected. (#6074 )
31
+ - Fixed urllib3 exception leak, wrapping ` urllib3.exceptions.SSLError ` with
32
+ ` requests.exceptions.SSLError ` for ` content ` and ` iter_content ` . (#6057 )
33
+ - Fixed issue where invalid Windows registry entires caused proxy resolution
34
+ to raise an exception rather than ignoring the entry. (#6149 )
35
+ - Fixed issue where entire payload could be included in the error message for
36
+ JSONDecodeError. (#6036 )
18
37
19
38
2.27.1 (2022-01-05)
20
39
-------------------
Original file line number Diff line number Diff line change 5
5
__title__ = "requests"
6
6
__description__ = "Python HTTP for Humans."
7
7
__url__ = "https://requests.readthedocs.io"
8
- __version__ = "2.27.1 "
9
- __build__ = 0x022701
8
+ __version__ = "2.28.0 "
9
+ __build__ = 0x022800
10
10
__author__ = "Kenneth Reitz"
11
11
__author_email__ = "[email protected] "
12
12
__license__ = "Apache 2.0"
You can’t perform that action at this time.
0 commit comments