| Commit message (Expand) | Author | Age | Files | Lines |
| * | Merge pull request from GHSA-q2q7-5pp4-w6pg | Seth Michael Larson | 2021-05-26 | 1 | -3/+5 |
| * | Add documentation guidelines to contributing docs, apply to guides | ubdussamad | 2021-05-21 | 5 | -47/+92 |
| * | Added body parameter to top-level request() and RequestMethods.request() | Bastian Venthur | 2021-05-19 | 2 | -2/+6 |
| * | Changed :ret: RST directive to :returns: | Bastian Venthur | 2021-05-18 | 1 | -2/+2 |
| * | Added HTTPHeaderDict to top level module | ubdussamad | 2021-05-17 | 1 | -0/+2 |
| * | Add type hints to urllib3.util.retry | Hasan Ramezani | 2021-05-14 | 1 | -53/+72 |
| * | Add type hints to urllib3.util.timeout | Hasan Ramezani | 2021-05-11 | 1 | -18/+29 |
| * | Remove urllib3.util.current_time, use time.monotonic instead | Hasan Ramezani | 2021-05-11 | 2 | -8/+3 |
| * | Fix default socket_options value for HTTPSConnection | Franek Magiera | 2021-05-10 | 1 | -1/+3 |
| * | Add type hints to urllib3.request | Hasan Ramezani | 2021-05-07 | 1 | -22/+43 |
| * | Add type hints to urllib3.util.request | Hasan Ramezani | 2021-05-07 | 1 | -12/+15 |
| * | Add type hints to urllib3.util.util | Hasan Ramezani | 2021-05-06 | 1 | -2/+2 |
| * | Raise FullPoolError when _put_conn() is called on full blocking pool | Dmitry Mazin | 2021-05-01 | 2 | -2/+20 |
| * | Change from str.format() to f-strings | Franek Magiera | 2021-05-01 | 2 | -6/+5 |
| * | Fix handling of conn without sock in is_connection_dropped() | Christian Neumüller | 2021-04-27 | 1 | -1/+1 |
| * | Move ssl_match_hostname to urllib3.utils | Hasan Ramezani | 2021-04-21 | 7 | -27/+14 |
| * | Add type hints for proxy, ssl_, ssltransport and wait modules | Franek Magiera | 2021-04-20 | 5 | -71/+225 |
| * | Add type hints to connection modules | Franek Magiera | 2021-04-12 | 6 | -113/+238 |
| * | Update accept_encoding=True documentation for Brotli | Дилян Палаузов | 2021-03-29 | 1 | -1/+2 |
| * | Use queue.LifoQueue instead of our own implementation | Dulmandakh | 2021-03-18 | 2 | -18/+1 |
| * | Stop relying on stdlib hostname matching until hostname_checks_common_name bu... | Quentin Pradet | 2021-03-18 | 1 | -2/+4 |
| * | Lean on SSLContext to verify hostnames when possible (#2178) | Quentin Pradet | 2021-03-16 | 4 | -24/+27 |
| * | Always use our custom ssl.match_hostname() implementation | Quentin Pradet | 2021-03-16 | 2 | -21/+1 |
| * | Many minor code quality and readability improvements | Shubhendra Singh Chauhan | 2021-03-14 | 4 | -7/+6 |
| * | Always pass server_hostname to wrap_socket() | Quentin Pradet | 2021-03-10 | 2 | -12/+5 |
| * | Mark '_compat.RLock' as Python 3.6 only | Quentin Pradet | 2021-03-10 | 2 | -2/+2 |
| * | Add type hints to collections and exceptions modules | Jess Shapiro | 2021-03-08 | 6 | -201/+318 |
| * | Fix last place that allowed a missing check_hostname | Quentin Pradet | 2021-03-08 | 1 | -1/+1 |
| * | Bring coverage back to 100% | Quentin Pradet | 2021-03-08 | 1 | -2/+0 |
| * | Add types to util.reraise() | Hasan Ramezani | 2021-02-16 | 1 | -2/+7 |
| * | Remove hasattr for 'check_hostname' as should always exist in Python 3.6+ | Quentin Pradet | 2021-02-12 | 1 | -6/+3 |
| * | Remove deprecated iter_fields(), add type hints to 'fields' and 'filepost' mo... | Seth Michael Larson | 2021-02-10 | 4 | -92/+90 |
| * | Add exception wrapper for HTTPS proxy connection failure (#2133) | Jorge | 2021-02-09 | 3 | -23/+46 |
| * | Add types to URL parser, remove get_host() and split_first() (#2139) | Seth Michael Larson | 2021-02-09 | 6 | -165/+141 |
| * | Add top-level request() method | Franek Magiera | 2021-02-08 | 1 | -0/+15 |
| * | Don't compare bytes and str in putheader() | Quentin Pradet | 2021-01-26 | 1 | -1/+1 |
| * | Use pyupgrade, black, isort, and flake8 via pre-commit | Hugo van Kemenade | 2021-01-08 | 1 | -2/+2 |
| * | Use system TLS ciphers if using OpenSSL 1.1.1+ or SecureTransport | Seth Michael Larson | 2021-01-07 | 4 | -90/+38 |
| * | Update RECENT_DATE to 2020-07-01 | Seth Michael Larson | 2020-12-31 | 1 | -1/+1 |
| * | Remove work-around for missing ipaddress module in Python 2 | Jon Dufresne | 2020-12-26 | 1 | -15/+1 |
| * | Remove fallback on commonName in match_hostname() | Hasan Ramezani | 2020-12-23 | 4 | -38/+2 |
| * | Replace deprecated socket.error with OSError | Aaron Niskode-Dossett | 2020-12-23 | 5 | -16/+11 |
| * | Attach errno to SocketError when raised from OpenSSL.SSL.SysCallError | Aaron Niskode-Dossett | 2020-12-23 | 1 | -3/+3 |
| * | Improve message for ProxySchemeUnknown exception | Hasan Ramezani | 2020-12-10 | 1 | -1/+8 |
| * | Switch to Brotli C bindings for CPython, brotlicffi for non-CPython (#2099) | Seth Michael Larson | 2020-12-05 | 2 | -2/+8 |
| * | Remove remaining mentions of Python 2 | Hasan Ramezani | 2020-11-28 | 3 | -15/+1 |
| * | Change return type of HTTPResponse.getheaders() to match CPython | Seth Michael Larson | 2020-11-28 | 1 | -2/+2 |
| * | Add BaseHTTPResponse base class | Seth Michael Larson | 2020-11-28 | 3 | -132/+214 |
| * | Remove backported socket.makefile() | Quentin Pradet | 2020-11-27 | 4 | -90/+15 |
| * | Remove _const_compare_digest | jianghang | 2020-11-26 | 1 | -16/+1 |