Update dependency urllib3 to v1.26.18
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
urllib3 (changelog) | ironbank-pypi | patch |
1.26.2 -> 1.26.18
|
urllib3 (changelog) | minor |
==1.22 -> ==1.26.18
|
⚠ Dependency Lookup Warnings ⚠
Warnings were logged while processing this repo. Please check the logs for more information.
Release Notes
urllib3/urllib3
v1.26.18
====================
- Made body stripped from HTTP requests changing the request method to GET after HTTP 303 "See Other" redirect responses.
v1.26.17
====================
- Added the
Cookie
header to the list of headers to strip from requests when redirecting to a different host. As before, different headers can be set viaRetry.remove_headers_on_redirect
. (#​3139 <https://github.com/urllib3/urllib3/pull/3139>
_)
v1.26.16
====================
- Fixed thread-safety issue where accessing a
PoolManager
with many distinct origins would cause connection pools to be closed while requests are in progress (#​2954 <https://github.com/urllib3/urllib3/pull/2954>
_)
v1.26.15
====================
- Fix socket timeout value when
HTTPConnection
is reused (#​2645 <https://github.com/urllib3/urllib3/issues/2645>
__) - Remove "!" character from the unreserved characters in IPv6 Zone ID parsing
(
#​2899 <https://github.com/urllib3/urllib3/issues/2899>
__) - Fix IDNA handling of '\x80' byte (
#​2901 <https://github.com/urllib3/urllib3/issues/2901>
__)
v1.26.14
====================
- Fixed parsing of port 0 (zero) returning None, instead of 0. (
#​2850 <https://github.com/urllib3/urllib3/issues/2850>
__) - Removed deprecated getheaders() calls in contrib module. Fixed the type hint of
PoolKey.key_retries
by addingbool
to the union. (#​2865 <https://github.com/urllib3/urllib3/issues/2865>
__)
v1.26.13
====================
- Deprecated the
HTTMResponse.getheaders()
andHTTMResponse.getheader()
methods. - Fixed an issue where parsing a URL with leading zeroes in the port would be rejected even when the port number after removing the zeroes was valid.
- Fixed a deprecation warning when using cryptography v39.0.0.
- Removed the
<4
in theRequires-Python
packaging metadata field.
v1.26.12
====================
- Deprecated the
urllib3[secure]
extra and theurllib3.contrib.pyopenssl
module. Both will be removed in v2.x. See thisGitHub issue <https://github.com/urllib3/urllib3/issues/2680>
_ for justification and info on how to migrate.
v1.26.11
====================
- Fixed an issue where reading more than 2 GiB in a call to
HTTMResponse.read
would raise anOverflowError
on Python 3.9 and earlier.
v1.26.10
====================
- Removed support for Python 3.5
- Fixed an issue where a
ProxyError
recommending configuring the proxy as HTTP instead of HTTPS could appear even when an HTTPS proxy wasn't configured.
v1.26.9
===================
- Changed
urllib3[brotli]
extra to favor installing Brotli libraries that are still receiving updates likebrotli
andbrotlicffi
instead ofbrotlipy
. This change does not impact behavior of urllib3, only which dependencies are installed. - Fixed a socket leaking when
HTTPSConnection.connect()
raises an exception. - Fixed
server_hostname
being forwarded fromPoolManager
toHTTPConnectionPool
when requesting an HTTP URL. Should only be forwarded when requesting an HTTPS URL.
v1.26.8
===================
- Added extra message to
urllib3.exceptions.ProxyError
when urllib3 detects that a proxy is configured to use HTTPS but the proxy itself appears to only use HTTP. - Added a mention of the size of the connection pool when discarding a connection due to the pool being full.
- Added explicit support for Python 3.11.
- Deprecated the
Retry.MAX_BACKOFF
class property in favor ofRetry.DEFAULT_MAX_BACKOFF
to better match the rest of the default parameter names.Retry.MAX_BACKOFF
is removed in v2.0. - Changed location of the vendored
ssl.match_hostname
function fromurllib3.packages.ssl_match_hostname
tourllib3.util.ssl_match_hostname
to ensure Python 3.10+ compatibility after being repackaged by downstream distributors. - Fixed absolute imports, all imports are now relative.
v1.26.7
===================
- Fixed a bug with HTTPS hostname verification involving IP addresses and lack of SNI. (Issue #2400)
- Fixed a bug where IPv6 braces weren't stripped during certificate hostname matching. (Issue #2240)
v1.26.6
===================
- Deprecated the
urllib3.contrib.ntlmpool
module. urllib3 is not able to support it properly due toreasons listed in this issue <https://github.com/urllib3/urllib3/issues/2282>
_. If you are a user of this module please leave a comment. - Changed
HTTPConnection.request_chunked()
to not erroneously emit multipleTransfer-Encoding
headers in the case that one is already specified. - Fixed typo in deprecation message to recommend
Retry.DEFAULT_ALLOWED_METHODS
.
v1.26.5
===================
- Fixed deprecation warnings emitted in Python 3.10.
- Updated vendored
six
library to 1.16.0. - Improved performance of URL parser when splitting the authority component.
v1.26.4
===================
- Changed behavior of the default
SSLContext
when connecting to HTTPS proxy during HTTPS requests. The defaultSSLContext
now setscheck_hostname=True
.
v1.26.3
===================
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.