Skip to content

Commit 69be299

Browse files
pquentinillia-v
andauthored
Release 2.1.0
Co-authored-by: Illia Volochii <illia.volochii@gmail.com>
1 parent 77f71d3 commit 69be299

File tree

9 files changed

+24
-11
lines changed

9 files changed

+24
-11
lines changed

CHANGES.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
2.1.0 (2023-11-13)
2+
==================
3+
4+
Read the `v2 migration guide <https://urllib3.readthedocs.io/en/latest/v2-migration-guide.html>`__ for help upgrading to the latest version of urllib3.
5+
6+
Removals
7+
--------
8+
9+
- Removed support for the deprecated urllib3[secure] extra. (`#2680 <https://github.com/urllib3/urllib3/issues/2680>`__)
10+
- Removed support for the deprecated SecureTransport TLS implementation. (`#2681 <https://github.com/urllib3/urllib3/issues/2681>`__)
11+
- Removed support for the end-of-life Python 3.7. (`#3143 <https://github.com/urllib3/urllib3/issues/3143>`__)
12+
13+
14+
Bugfixes
15+
--------
16+
17+
- Allowed loading CA certificates from memory for proxies. (`#3065 <https://github.com/urllib3/urllib3/issues/3065>`__)
18+
- Fixed decoding Gzip-encoded responses which specified ``x-gzip`` content-encoding. (`#3174 <https://github.com/urllib3/urllib3/issues/3174>`__)
19+
20+
121
2.0.7 (2023-10-17)
222
==================
323

changelog/2680.removal.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/2681.removal.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/3065.bugfix.rst

Lines changed: 0 additions & 3 deletions
This file was deleted.

changelog/3143.removal.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/3174.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ markers = [
8181
log_level = "DEBUG"
8282
filterwarnings = [
8383
"error",
84-
'''default:urllib3 v2.0 only supports OpenSSL 1.1.1+.*''',
84+
'''default:urllib3 v2 only supports OpenSSL 1.1.1+.*''',
8585
'''default:No IPv6 support. Falling back to IPv4:urllib3.exceptions.HTTPWarning''',
8686
'''default:No IPv6 support. skipping:urllib3.exceptions.HTTPWarning''',
8787
'''default:ssl\.TLSVersion\.TLSv1 is deprecated:DeprecationWarning''',

src/urllib3/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@
3232
else:
3333
if not ssl.OPENSSL_VERSION.startswith("OpenSSL "): # Defensive:
3434
warnings.warn(
35-
"urllib3 v2.0 only supports OpenSSL 1.1.1+, currently "
35+
"urllib3 v2 only supports OpenSSL 1.1.1+, currently "
3636
f"the 'ssl' module is compiled with {ssl.OPENSSL_VERSION!r}. "
3737
"See: https://github.com/urllib3/urllib3/issues/3020",
3838
exceptions.NotOpenSSLWarning,
3939
)
4040
elif ssl.OPENSSL_VERSION_INFO < (1, 1, 1): # Defensive:
4141
raise ImportError(
42-
"urllib3 v2.0 only supports OpenSSL 1.1.1+, currently "
42+
"urllib3 v2 only supports OpenSSL 1.1.1+, currently "
4343
f"the 'ssl' module is compiled with {ssl.OPENSSL_VERSION!r}. "
4444
"See: https://github.com/urllib3/urllib3/issues/2168"
4545
)

src/urllib3/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# This file is protected via CODEOWNERS
22
from __future__ import annotations
33

4-
__version__ = "2.0.7"
4+
__version__ = "2.1.0"

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy