| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix multi-frame Zstandard response decoding | Rogdham | 2023-05-14 | 1 | -2/+7 |
| | | |||||
| * | Release 2.0.22.0.2 | Seth Michael Larson | 2023-05-03 | 1 | -1/+1 |
| | | |||||
| * | Continue reading the response stream if there is buffered decompressed data | Seth Michael Larson | 2023-05-03 | 1 | -1/+1 |
| | | |||||
| * | Release 2.0.12.0.1 | Seth Michael Larson | 2023-04-30 | 1 | -1/+1 |
| | | |||||
| * | Fix HTTPResponse.read(0) when underlying buffer is empty (#2998) | Quentin Pradet | 2023-04-29 | 1 | -1/+3 |
| | | |||||
| * | Ensure SSLSocket is closed after failure verifying cert hostname or fingerprint | Thomas Grainger | 2023-04-29 | 1 | -27/+33 |
| | | |||||
| * | Release 2.0.02.0.0 | Seth Michael Larson | 2023-04-26 | 1 | -1/+1 |
| | | |||||
| * | Release 2.0.0a42.0.0a4 | Seth Michael Larson | 2023-04-25 | 1 | -1/+1 |
| | | |||||
| * | Add backoff jitter to Retry (#2952) | Tom McTiernan | 2023-04-24 | 1 | -5/+15 |
| | | |||||
| * | Fix io_refs bug with pyopenssl.WrappedSocket and ↵ | Thomas Grainger | 2023-04-22 | 2 | -28/+32 |
| | | | | | securetransport.WrappedSocket.close() | ||||
| * | Update mypy to 1.2.0 | Hasan Ramezani | 2023-04-13 | 1 | -1/+1 |
| | | |||||
| * | Update mypy to 1.1.1 | Hasan Ramezani | 2023-03-07 | 1 | -1/+1 |
| | | |||||
| * | Update pre-commit repos | Hasan Ramezani | 2023-02-01 | 6 | -8/+0 |
| | | |||||
| * | Fix `_idna_encode()` detection of an ASCII hostname for `\x080` | Ben Kallus | 2023-01-29 | 1 | -1/+1 |
| | | |||||
| * | Remove "!" character from the "unreserved" characters in IPv6 Zone ID parsing | Ben Kallus | 2023-01-29 | 1 | -3/+1 |
| | | |||||
| * | Release 2.0.0a32.0.0a3 | Quentin Pradet | 2023-01-11 | 1 | -1/+1 |
| | | | | | Co-authored-by: Yiyang Zhan <pon.zhan@gmail.com> Co-authored-by: Seth Michael Larson <sethmichaellarson@gmail.com> | ||||
| * | Fix the type hint of PoolKey.key_retries by adding bool to the union | zhanpon | 2023-01-02 | 1 | -1/+1 |
| | | | | Co-authored-by: Seth Michael Larson <sethmichaellarson@gmail.com> | ||||
| * | fixed number of digits in port m( | Bastian Venthur | 2022-12-11 | 1 | -1/+1 |
| | | |||||
| * | fixed issue with port "0" returning None | Bastian Venthur | 2022-12-11 | 1 | -1/+1 |
| | | |||||
| * | Don't ignore debug logs in pytest, fix log args issue | Quentin Pradet | 2022-12-06 | 1 | -1/+1 |
| | | |||||
| * | Fix typos in HTTPResponse.getheaders() warnings | Kurt McKee | 2022-11-28 | 1 | -2/+2 |
| | | |||||
| * | Release 2.0.0a22.0.0a2 | Seth Michael Larson | 2022-11-23 | 1 | -1/+1 |
| | | |||||
| * | Require pyOpenSSL 17.1.0+ to support cryptography 39+ | Quentin Pradet | 2022-11-23 | 1 | -9/+1 |
| | | | | Co-authored-by: Illia Volochii <illia.volochii@gmail.com> | ||||
| * | Strip leading zeros from ports | Bastian Venthur | 2022-11-22 | 1 | -1/+1 |
| | | |||||
| * | Use the typing namespace and from __future__ import annotations | Bastian Venthur | 2022-11-21 | 30 | -935/+858 |
| | | | | Co-authored-by: Thomas Grainger <tagrain@gmail.com> | ||||
| * | Prevent issue in HTTPResponse().read() when decoded_content is True and then ↵ | Ousret | 2022-11-20 | 1 | -0/+12 |
| | | | | | | | False Provided it has initialized eligible decoder(decompressor) and did decode once | ||||
| * | Restore but deprecate HTTPResponse.getheaders() and .getheader() methods | Quentin Pradet | 2022-11-17 | 3 | -4/+17 |
| | | |||||
| * | Release 2.0.0-alpha12.0.0a1 | Seth Michael Larson | 2022-11-15 | 2 | -2/+2 |
| | | | | Co-authored-by: Quentin Pradet <quentin.pradet@gmail.com> | ||||
| * | Change deprecation warnings to explicitly mention v2.1.0 for removals | Seth Michael Larson | 2022-11-15 | 7 | -22/+19 |
| | | |||||
| * | Fix socket timeout value when HTTPConnection is reused | Seth Michael Larson | 2022-11-14 | 2 | -2/+7 |
| | | |||||
| * | Standardize HTTPResponse.read(X) behavior regardless of compression | Quentin Pradet | 2022-11-14 | 1 | -38/+134 |
| | | | | Co-authored-by: Franek Magiera <framagie@gmail.com> | ||||
| * | Stop considering LibreSSL for HAS_NEVER_CHECK_COMMON_NAME | Quentin Pradet | 2022-11-11 | 1 | -24/+9 |
| | | |||||
| * | Create BaseHTTPConnection APIs | Seth Michael Larson | 2022-11-10 | 10 | -185/+425 |
| | | |||||
| * | Remove usage of HTTPConnection.auto_open | Quentin Pradet | 2022-11-09 | 2 | -16/+3 |
| | | | | | It is no longer needed as HTTPConnection no longer mutates host and port. See https://github.com/urllib3/urllib3/issues/2775 for full info. | ||||
| * | Update mypy to 0.990 | Hasan Ramezani | 2022-11-08 | 3 | -4/+4 |
| | | |||||
| * | Use io.IOBase for readable, closed, and writeable | Seth Michael Larson | 2022-11-07 | 1 | -7/+3 |
| | | |||||
| * | Change HTTPConnection.getresponse() to return urllib3.HTTPResponse | Levi | 2022-11-07 | 5 | -88/+214 |
| | | | | Co-authored-by: Seth Michael Larson <sethmichaellarson@gmail.com> | ||||
| * | Update mypy to 0.981 | Hasan Ramezani | 2022-10-03 | 1 | -2/+3 |
| | | |||||
| * | Fix type annotation in contrib/pyopenssl | Alex Gaynor | 2022-09-18 | 1 | -2/+2 |
| | | |||||
| * | Drop support for OpenSSL <1.1.1 (#2705) | Seth Michael Larson | 2022-08-22 | 7 | -126/+28 |
| | | | | Co-authored-by: Quentin Pradet <quentin.pradet@gmail.com> | ||||
| * | Add proxy_assert_hostname and proxy_assert_fingerprint to ProxyManager | Josh Schneier | 2022-08-17 | 2 | -3/+18 |
| | | |||||
| * | Don't close ConnectionPools from PoolManager until unreferenced | stephan-hof | 2022-08-16 | 2 | -12/+25 |
| | | | | Co-authored-by: Seth Michael Larson <sethmichaellarson@gmail.com> | ||||
| * | Add deprecation warnings for pyOpenSSL and the [secure] extra | ivanllt | 2022-08-12 | 2 | -0/+26 |
| | | | | Co-authored-by: Seth Michael Larson <sethmichaellarson@gmail.com> | ||||
| * | Added deprecation warning for urllib3.contrib.securetransport module | ivanllt | 2022-08-04 | 1 | -0/+9 |
| | | |||||
| * | Use `_TYPE_FIELD_VALUE` in `urllib3.fields.format_header_param_rfc2231` for ↵ | Kevin Kirsche | 2022-08-01 | 1 | -1/+1 |
| | | | | | | consistency (#2697) Co-authored-by: Hasan Ramezani <hasan.r67@gmail.com> | ||||
| * | Fix type annotation for pyopenssl.WrappedSocket.getpeercert (#2688) | Nikita Sobolev | 2022-07-25 | 1 | -1/+1 |
| | | |||||
| * | Fix `OverflowError` when TLS is used on some Python versions | Illia Volochii | 2022-07-19 | 1 | -3/+51 |
| | | | | Co-authored-by: Seth Michael Larson <sethmichaellarson@gmail.com> | ||||
| * | Add support for configuring header combining with HTTPHeaderDict | Raphael Gaschignard | 2022-07-15 | 2 | -10/+32 |
| | | | | Co-authored-by: Seth Michael Larson <sethmichaellarson@gmail.com> | ||||
| * | Bump RECENT_DATE | Quentin Pradet | 2022-07-01 | 1 | -1/+1 |
| | | |||||
| * | Raise an unretryable exception when ssl module isn't available | satoru | 2022-06-29 | 1 | -1/+1 |
| | | |||||
