summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Release 1.26.11.26.1Seth Michael Larson2020-11-112-1/+8
|
* [1.26] Don't send 'User-Agent' twice if header is binarySeth Michael Larson2020-11-112-1/+24
|
* Add back the HTTPHeaderDict import from 1.25.xSeth Michael Larson2020-11-111-0/+1
|
* Release: 1.26.01.26.0Seth Michael Larson2020-11-102-13/+55
|
* Remove type stubs from 1.26 branchSeth Michael Larson2020-11-0811-185/+1
|
* Improve readability on return handling logic.Jorge Lopez Silva2020-11-071-4/+3
|
* Fix constructor parameter order in SSLTransport.Jorge Lopez Silva2020-11-072-1/+18
| | | | | | - server_hostname was not being passed correctly to the SSL layer which made certain SNI connections failed. - Reported by a team internally, and validated with them the fix.
* Skip TLS versions if disabled by OpenSSL configSeth Michael Larson2020-11-053-36/+72
|
* Terminate connection when custom verification fails (SecureTransport) (#1977)hodbn2020-11-014-21/+110
|
* Add SKIP_HEADER for skipping automatically added headersSeth Michael Larson2020-10-276-28/+176
|
* Switch to an absolute URL for banner imageSeth Michael Larson2020-10-231-1/+1
|
* Add 1.25.11 release to CHANGES.rstSeth Michael Larson2020-10-191-0/+13
|
* Document url and body parameters for ConnectionPool.urlopen()matthewhughes9342020-10-191-3/+5
|
* Update documentation for HTTPS proxiesJorge2020-10-061-10/+49
|
* Deprecate negotiating TLSv1 and TLSv1.1 by defaultSeth Michael Larson2020-10-062-20/+117
|
* Don't set keylog_filename for empty valuesSeth Michael Larson2020-10-042-2/+16
|
* Fix flaky test by avoiding refused connection with short timeout (#2008)Quentin Pradet2020-10-021-2/+2
|
* Add isort config to setup.cfg for editors (#2009)Quentin Pradet2020-10-012-2/+5
|
* Add supported Python versions badge to README (#2010)Hasan Ramezani2020-10-011-0/+1
|
* Sort imports with 'isort'Quentin Pradet2020-10-0177-403/+373
|
* Raise error on invalid labels in create_connection()Hasan Ramezani2020-09-302-0/+35
|
* Stop testing docs in TravisQuentin Pradet2020-09-291-4/+0
| | | | | | Let's rely on the ReadTheDocs pull request check instead. This does mean that `nox -rs docs` won't get exercised by continuous integration, which is an acceptable compromise.
* Use GitHub Actions checkout v2 (#2006)谭九鼎2020-09-291-2/+2
|
* Enforce flake8-2020Quentin Pradet2020-09-285-13/+13
| | | | | We don't know if we'll ever have a Python 4 or if six.PY3 will include Python 4+ or if six will still be of any use by then, but I'd like avoiding having to think about it in reviews. :)
* Integrate TLS-in-TLS support into urllib3 (#1923)Jorge2020-09-2912-66/+405
|
* Rename Retry options and defaultsSeth Michael Larson2020-09-284-21/+611
|
* Add PR and issue templates (#1978)hodbn2020-09-254-0/+80
| | | | | | | | | | | | | | | | | | | | | | | | | | | * Add issue templates * Add SO and Discord to issue templates * Add a PR template * Fix Discord invite URL in PR contact link * Title caps bug report template * Simplify PR template * Simplify bug report template * Switch Bug Report and Feature Request issue templates order * Update PULL_REQUEST_TEMPLATE.md * Update 01_feature_request.md * Update 02_bug_report.md * Update config.yml Co-authored-by: Seth Michael Larson <sethmichaellarson@gmail.com>
* Disable the use of session tickets on TLSv1.2 by defaultPleasantMachine92020-09-251-1/+12
| | | | | | | | Since currently session resumption is not supported by urllib3 there is no reason to request tickets from the server. It takes up extra bytes in transit (~200 bytes), and raises some minor security concerns. See: https://blog.filippo.io/we-need-to-talk-about-session-tickets
* FUNDING.yml: Add GitcoinAndrey Petrov2020-09-251-0/+1
|
* Update color scheme of banner to match logoSeth Michael Larson2020-09-241-1/+1
|
* Update the Discord inviteSeth Michael Larson2020-09-231-1/+1
|
* Add Contributor Covenant as Code of ConductAndrey Petrov2020-09-221-0/+128
|
* Add Discord shield, reorder shieldsSeth Michael Larson2020-09-221-4/+5
|
* Add Open Collective to GitHub FundingSeth Michael Larson2020-09-211-0/+1
|
* Create v2.0 Roadmap and Open Collective Sponsors SectionSeth Michael Larson2020-09-215-8/+244
|
* Consume connections better in socket-level tests (#1958)hodbn2020-09-182-23/+89
| | | Co-authored-by: Quentin Pradet <quentin.pradet@gmail.com>
* Use LONG_TIMEOUT on test with disabled retriesQuentin Pradet2020-09-181-1/+1
|
* Fix autodoc and intersphinx links in documentation (#1966)Seth Michael Larson2020-09-1811-88/+114
|
* Move nox -s lint to GitHub ActionsQuentin Pradet2020-09-162-2/+15
|
* Use Sphinx 3 and unpin FuroPradyun Gedam2020-09-151-2/+2
|
* Include filepost.pyi and util/url.pyi (#1955)Ezzeri Esa2020-09-154-0/+51
|
* Get SSLTransport tests to 100% coverageJorge2020-09-131-14/+44
|
* Migrate Windows CI to GitHub Actionshodbn2020-09-135-305/+35
|
* Mark master branch as 1.26.0.dev0 for RTDSeth Michael Larson2020-09-111-1/+1
|
* Swallow BrokenPipeError when writing request bodyRober Morales-Chaparro2020-09-114-5/+78
| | | | | | | | | | | | | In the case the server legitimately closes a connection but we are still sending data (e.g. sending a POST request), the old code prevents the response to be retrieved. With this change, we avoid a broken pipe in the request write process to be able to capture the HTTP response. Co-authored-by: Rober Morales-Chaparro <rober.morales@gmail.com> Co-authored-by: Seth Michael Larson <sethmichaellarson@gmail.com> Co-authored-by: hodbn <hodbn@users.noreply.github.com> Co-authored-by: Quentin Pradet <quentin.pradet@gmail.com>
* Document disabling certificate verification via cert_reqs='CERT_NONE'Heikki Orsila2020-09-111-1/+1
|
* Remove duplicate dict key and except blockhodbn2020-09-092-9/+1
|
* Stricter RTD builds, move Sponsors to docs (#1954)Seth Michael Larson2020-09-096-27/+44
|
* Use LONG_TIMEOUT on another timeout-based testQuentin Pradet2020-09-091-1/+1
| | | | | While we do have a retry here, it's needed to make two queries, and cannot be wasted on a timeout due to continuous integration being slow.
* Use ci/upload_coverage.sh in GitHub ActionsQuentin Pradet2020-09-091-7/+4
|