2020-11-24 10:21:27 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-urllib3: updated to 1.26.2
1.26.2
* Fixed an issue where ``wrap_socket`` and ``CERT_REQUIRED`` wouldn't
be imported properly on Python 2.7.8 and earlier
|
2020-11-12 10:00:07 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-urllib3: updated to 1.26.1
1.26.1 (2020-11-11)
-------------------
* Fixed an issue where two ``User-Agent`` headers would be sent if a
``User-Agent`` header key is passed as ``bytes``
1.26.0 (2020-11-10)
-------------------
* **NOTE: urllib3 v2.0 will drop support for Python 2**.
`Read more in the v2.0 Roadmap \
<https://urllib3.readthedocs.io/en/latest/v2-roadmap.html>`_.
* Added support for HTTPS proxies contacting HTTPS servers
* Deprecated negotiating TLSv1 and TLSv1.1 by default. Users that
still wish to use TLS earlier than 1.2 without a deprecation warning
should opt-in explicitly by setting ``ssl_version=ssl.PROTOCOL_TLSv1_1``
**Starting in urllib3 v2.0: Connections that receive a ``DeprecationWarning`` \
will fail**
* Deprecated ``Retry`` options ``Retry.DEFAULT_METHOD_WHITELIST``, \
``Retry.DEFAULT_REDIRECT_HEADERS_BLACKLIST``
and ``Retry(method_whitelist=...)`` in favor of ``Retry.DEFAULT_ALLOWED_METHODS``,
``Retry.DEFAULT_REMOVE_HEADERS_ON_REDIRECT``, and ``Retry(allowed_methods=...)``
* Added default ``User-Agent`` header to every request
* Added ``urllib3.util.SKIP_HEADER`` for skipping ``User-Agent``, \
``Accept-Encoding``,
and ``Host`` headers from being automatically emitted with requests
* Collapse ``transfer-encoding: chunked`` request data and framing into
the same ``socket.send()`` call
* Send ``http/1.1`` ALPN identifier with every TLS handshake by default
* Properly terminate SecureTransport connections when CA verification fails
* Don't emit an ``SNIMissingWarning`` when passing ``server_hostname=None``
to SecureTransport
* Disabled requesting TLSv1.2 session tickets as they weren't being used by urllib3
* Suppress ``BrokenPipeError`` when writing request body after the server
has closed the socket
* Wrap ``ssl.SSLError`` that can be raised from reading a socket (e.g. "bad \
MAC")
into an ``urllib3.exceptions.SSLError``
|
2020-10-19 20:55:29 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-urllib3: updated to 1.25.11
1.25.11
* Fix retry backoff time parsed from ``Retry-After`` header when given
in the HTTP date format. The HTTP date was parsed as the local timezone
rather than accounting for the timezone in the HTTP date (typically
UTC)
* Fix issue where an error would be raised when the ``SSLKEYLOGFILE``
environment variable was set to the empty string. Now ``SSLContext.keylog_file``
is not set in this situation
|
2020-07-27 12:06:52 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-urllib3: updated to 1.25.10
1.25.10
* Added support for ``SSLKEYLOGFILE`` environment variable for
logging TLS session keys with use with programs like
Wireshark for decrypting captured web traffic
* Fixed loading of SecureTransport libraries on macOS Big Sur
due to the new dynamic linker cache
* Collapse chunked request bodies data and framing into one
call to ``send()`` to reduce the number of TCP packets by 2-4x
* Don't insert ``None`` into ``ConnectionPool`` if the pool
was empty when requesting a connection
* Avoid ``hasattr`` call in ``BrotliDecoder.decompress()``
|
2020-05-16 20:02:59 by Adam Ciarcinski | Files touched by this commit (2) |
Log message:
pytest from versioned depends
|
2020-04-16 20:30:05 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-urllib3: updated to 1.25.9
1.25.9:
* Added ``InvalidProxyConfigurationWarning`` which is raised when
erroneously specifying an HTTPS proxy URL. urllib3 doesn't currently
support connecting to HTTPS proxies but will soon be able to
and we would like users to migrate properly without much breakage.
* Drain connection after ``PoolManager`` redirect
* Ensure ``load_verify_locations`` raises ``SSLError`` for all backends
* Rename ``VerifiedHTTPSConnection`` to ``HTTPSConnection``
* Allow the CA certificate data to be passed as a string
* Raise ``ValueError`` if method contains control characters
* Add ``__repr__`` to ``Timeout``
|
2020-01-22 09:54:30 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-urllib3: updated to 1.25.8
1.25.8:
* Drop support for EOL Python 3.4
* Optimize _encode_invalid_chars
|
2019-11-13 07:59:32 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-urllib3: updated to 1.25.7
1.25.7:
* Preserve ``chunked`` parameter on retries
* Allow unset ``SERVER_SOFTWARE`` in App Engine
* Fix issue where URL fragment was sent within the request target.
* Fix issue where an empty query section in a URL would fail to parse.
* Remove TLS 1.3 support in SecureTransport due to Apple removing support
|
2019-10-03 10:57:48 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-urllib3: updated to 1.25.6
1.25.6:
* Fix issue where tilde (``~``) characters were incorrectly
percent-encoded in the path.
1.25.5:
* Add mitigation for BPO-37428 affecting Python <3.7.4 and OpenSSL 1.1.1+ which
caused certificate verification to be enabled when using ``cert_reqs=CERT_NONE``.
1.25.4:
* Propagate Retry-After header settings to subsequent retries.
* Fix edge case where Retry-After header was still respected even when
explicitly opted out of.
* Remove dependency on ``rfc3986`` for URL parsing.
* Fix issue where URLs containing invalid characters within ``Url.auth`` would
raise an exception instead of percent-encoding those characters.
* Add support for ``HTTPResponse.auto_close = False`` which makes HTTP responses
work well with BufferedReaders and other ``io`` module features.
* Percent-encode invalid characters in URL for ``HTTPConnectionPool.request()``
|
2019-07-09 13:35:15 by Nia Alarie | Files touched by this commit (9) |
Log message:
Use https for readthedocs.io.
|