summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* Create a PR template for releases including a post-release checklisteuri102021-07-121-17/+7
|
* Last fixes to documentation consistencyVishwas B Sharma2021-06-232-3/+3
|
* Docs: add print results where missing (#2302)euri102021-06-232-1/+9
|
* Fix typo 'tox' -> 'nox' in contributing docseuri102021-06-231-1/+1
|
* Remove CONTRIBUTORS.txtSeth Michael Larson2021-06-191-1/+0
|
* Use top-level urllib3.request() function more in docsubdussamad2021-06-172-33/+25
|
* Add documentation guidelines to contributing docs, apply to guidesubdussamad2021-05-214-287/+518
|
* Rename HTTPConnectionPool variables to 'pool'Bastian Venthur2021-05-181-2/+2
|
* docs: switch from pycon code blocks to pythonBastian Venthur2021-05-182-33/+33
|
* Added sphinx-copybutton to easily copy code examplesubdussamad2021-05-172-0/+2
|
* Added HTTPHeaderDict to top level moduleubdussamad2021-05-171-0/+17
|
* Improve `assert_hostname` and `server_hostname` documentationQuentin Pradet2021-03-081-4/+19
|
* Make community Discord more visible and update to vanity URLSeth Michael Larson2021-02-192-1/+2
|
* Add top-level request() methodFranek Magiera2021-02-081-0/+7
|
* Recommend GitHub Sponsors instead of Open CollectiveSeth Michael Larson2020-12-233-13/+4
|
* Switch to Brotli C bindings for CPython, brotlicffi for non-CPython (#2099)Seth Michael Larson2020-12-051-1/+2
| | | | | * Switch to Brotli C bindings for CPython, brotlicffi for non-CPython * Fix brotli make_headers() test on PyPy
* Add alternate 'dark mode' banner to documentationQuentin Pradet2020-11-163-1/+4
|
* Remove remaining mentions of Google App EngineQuentin Pradet2020-11-151-33/+0
|
* Remove support for Google App Engine StandardHugo van Kemenade2020-11-152-8/+0
| | | | | | The 'URLFetch' service is only available on Python 2.7 and since 2.7 is no longer supported we can drop urllib3's third-party module for App Engine as well
* Remove support for Python 2 and 3.5Hugo van Kemenade2020-11-154-93/+8
| | | | | | | | - Upgrades syntax to Python 3.6+ with f-strings - Removes most usage of six - Removes documentation relevant to Python 2 - Removes universal wheel config - Removes mock dependency for testing
* Switch to an absolute URL for banner imageSeth Michael Larson2020-10-231-1/+1
|
* Update documentation for HTTPS proxiesJorge2020-10-061-10/+49
|
* Sort imports with 'isort'Quentin Pradet2020-10-012-3/+2
|
* Rename Retry options and defaultsSeth Michael Larson2020-09-281-1/+0
|
* Update color scheme of banner to match logoSeth Michael Larson2020-09-241-1/+1
|
* Create v2.0 Roadmap and Open Collective Sponsors SectionSeth Michael Larson2020-09-215-8/+244
|
* Fix autodoc and intersphinx links in documentation (#1966)Seth Michael Larson2020-09-181-2/+1
|
* Use Sphinx 3 and unpin FuroPradyun Gedam2020-09-151-2/+2
|
* Document disabling certificate verification via cert_reqs='CERT_NONE'Heikki Orsila2020-09-111-1/+1
|
* Stricter RTD builds, move Sponsors to docs (#1954)Seth Michael Larson2020-09-094-15/+18
|
* Overhaul and re-theme documentationSeth Michael Larson2020-09-0826-549/+487
|
* Change 'sanity-friendly' to 'user-friendly'Seth Michael Larson2020-08-312-3/+3
|
* Install Mypy in Nox, add Ezzeri Esa to contributorsEzzeri Esa2020-08-251-1/+1
|
* Fix typo in docMichael Shields2020-08-211-1/+1
|
* Document how to customize SNI and Host headers when connecting via IPStephen Rosen2020-08-101-0/+39
|
* Fix typo, add rST code blockmatthewhughes9342020-07-141-2/+2
|
* Add documentation for using Nox more efficiently (#1887)PleasantMachine92020-06-141-7/+29
|
* Feature/support env var sslkeylogfile (#1867)Bastiaan Bakker2020-06-111-1/+14
|
* Fix documentation build by skipping Sphinx 3.0.0 (#1844)Quentin Pradet2020-04-081-1/+1
| | | The autodoc_mock_imports failure will be fixed in Sphinx 3.0.1.
* Add support for HTTPS connections to proxies. (#1679)Jorge2020-03-121-6/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add support to talk HTTPS to proxies. Currently there's no way to validate identify for the proxy you might be connecting. Proxies supporting HTTPS endpoints are becoming more common and we need to extend the support for them. When an HTTPS proxy is provided, instead of doing the HTTP CONNECT, we'll forward any requests directly to the proxy and ultimately to the destination. * Fix proxy_headers missing on HTTPS proxy connections. * blackfmt missing files. * Prevent usage of HTTPS proxies when fetching HTTPS resources. - Will be supported by default when we can do TLS within TLS. * Update proxy documentation with more information. * Renamed flag for HTTPS websites through HTTPS proxies. * Added myself to contributors. * Documentation and contributors fixes. * Removed mention that TLS in TLS is being developed as requested. * Space in between my name and the github page. * Add flag to enable HTTPS proxy support. Now that we're adding support for HTTPS proxies we want to avoid a breaking change with clients that had an improper proxy configuration. For now, we're adding a warning an defaulting to the previous behavior. In the future we'll change the behavior to enable HTTPS proxies by default. * Remove guard flag, error out on HTTPS/HTTPS. As requested in the last revision for the PR: - Removed the _enable_https_proxies flag. Instead the feature will be enabled and will error out on invalid configurations. (HTTPS + HTTPS) - Other comments: rename a method, parentheses to clarify order of operations.
* Switch to SVG banner (#1740)Quentin Pradet2019-11-072-0/+1
|
* Add SVG logo (#1739)Jess Shapiro2019-11-061-0/+10
|
* Add Tidelift to documentation and urllib3 branding (#1735)Seth Michael Larson2019-11-055-0/+16
|
* Update urllib3/requests GitHub URLs (#1719)Quentin Pradet2019-10-291-1/+1
|
* Add optional auto_close parameter to HTTPResponse (#1652)George Sakkis2019-07-261-0/+14
|
* Change references to Makefile into Nox (#1643)Ratan Kulshreshtha2019-07-051-26/+34
|
* Clarify the units for timeouts within documentation (#1630)Robert David Grant2019-06-041-2/+2
|
* Remove extra words in the contributing docs (#1613)Quentin Pradet2019-05-221-2/+2
|
* Apply changes from 1.24.2 release to master (#1566)Seth Michael Larson2019-04-191-1/+0
|
* Fixed small typo in advanced usage documentation (#1541)Chris P2019-02-201-1/+1
|