<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/urllib3.git/docs, branch travis-python-nightly</title>
<subtitle>github.com: shazow/urllib3.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/'/>
<entry>
<title>Document how to customize SNI and Host headers when connecting via IP</title>
<updated>2020-08-10T14:26:21+00:00</updated>
<author>
<name>Stephen Rosen</name>
<email>1300022+sirosen@users.noreply.github.com</email>
</author>
<published>2020-08-10T14:26:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=cbb6be7a764d0f93b02d014fcdf3a46eb2f619ce'/>
<id>cbb6be7a764d0f93b02d014fcdf3a46eb2f619ce</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typo, add rST code block</title>
<updated>2020-07-14T15:50:00+00:00</updated>
<author>
<name>matthewhughes934</name>
<email>34972397+matthewhughes934@users.noreply.github.com</email>
</author>
<published>2020-07-14T15:50:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=fe1f73b69838c04a516170478fd508966854c415'/>
<id>fe1f73b69838c04a516170478fd508966854c415</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add documentation for using Nox more efficiently (#1887)</title>
<updated>2020-06-14T19:03:34+00:00</updated>
<author>
<name>PleasantMachine9</name>
<email>65126927+PleasantMachine9@users.noreply.github.com</email>
</author>
<published>2020-06-14T19:03:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=444f044e0e02f52054c6961f6dfdf4111654f087'/>
<id>444f044e0e02f52054c6961f6dfdf4111654f087</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Feature/support env var sslkeylogfile (#1867)</title>
<updated>2020-06-11T13:13:09+00:00</updated>
<author>
<name>Bastiaan Bakker</name>
<email>bbakker@xebia.com</email>
</author>
<published>2020-06-11T13:13:09+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=b8733538ef3a258ee76329c3900acb9456fae98e'/>
<id>b8733538ef3a258ee76329c3900acb9456fae98e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix documentation build by skipping Sphinx 3.0.0 (#1844)</title>
<updated>2020-04-08T12:18:19+00:00</updated>
<author>
<name>Quentin Pradet</name>
<email>quentin.pradet@gmail.com</email>
</author>
<published>2020-04-08T12:18:19+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=c63903a96eec5b77456778fc06323e0251e3087c'/>
<id>c63903a96eec5b77456778fc06323e0251e3087c</id>
<content type='text'>
The autodoc_mock_imports failure will be fixed in Sphinx 3.0.1.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The autodoc_mock_imports failure will be fixed in Sphinx 3.0.1.</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for HTTPS connections to proxies. (#1679)</title>
<updated>2020-03-12T08:39:39+00:00</updated>
<author>
<name>Jorge</name>
<email>JALopezSilva@gmail.com</email>
</author>
<published>2020-03-12T08:39:39+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=8c7a43b4a4ca0c8d36d55f132daa2a43d06fe3c4'/>
<id>8c7a43b4a4ca0c8d36d55f132daa2a43d06fe3c4</id>
<content type='text'>
* 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.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* 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.</pre>
</div>
</content>
</entry>
<entry>
<title>Switch to SVG banner (#1740)</title>
<updated>2019-11-07T13:53:42+00:00</updated>
<author>
<name>Quentin Pradet</name>
<email>quentin.pradet@gmail.com</email>
</author>
<published>2019-11-07T13:53:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=188c03eccc508398ab0a0a4c1e79d5ee80734aca'/>
<id>188c03eccc508398ab0a0a4c1e79d5ee80734aca</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add SVG logo (#1739)</title>
<updated>2019-11-07T03:17:10+00:00</updated>
<author>
<name>Jess Shapiro</name>
<email>jesse@jesseshapiro.net</email>
</author>
<published>2019-11-07T03:17:10+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=a72409453da5f1911e084fab4e7bc73298ca9af4'/>
<id>a72409453da5f1911e084fab4e7bc73298ca9af4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add Tidelift to documentation and urllib3 branding (#1735)</title>
<updated>2019-11-05T15:15:36+00:00</updated>
<author>
<name>Seth Michael Larson</name>
<email>sethmichaellarson@gmail.com</email>
</author>
<published>2019-11-05T15:15:36+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=c823dc9e70097bfe462e254092d8b29c52b6a018'/>
<id>c823dc9e70097bfe462e254092d8b29c52b6a018</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update urllib3/requests GitHub URLs (#1719)</title>
<updated>2019-10-29T12:54:17+00:00</updated>
<author>
<name>Quentin Pradet</name>
<email>quentin.pradet@gmail.com</email>
</author>
<published>2019-10-29T12:54:17+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=11d68efa7c150823472f0e5309c3a08a1a10c2f2'/>
<id>11d68efa7c150823472f0e5309c3a08a1a10c2f2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
