<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/urllib3.git/src, branch macos-github-actions</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>Stop skipping SecureTransport tests</title>
<updated>2020-03-30T16:43:14+00:00</updated>
<author>
<name>Quentin Pradet</name>
<email>quentin.pradet@gmail.com</email>
</author>
<published>2020-03-30T16:43:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=f761e0f0765c3994e11fb91e3760d894b9d9ee8a'/>
<id>f761e0f0765c3994e11fb91e3760d894b9d9ee8a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Test that ConnectionPool preserves path dot segments</title>
<updated>2020-03-25T12:51:09+00:00</updated>
<author>
<name>hodbn</name>
<email>hodbn@users.noreply.github.com</email>
</author>
<published>2020-03-25T12:51:09+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=4e00ac7636671ebd37fa27eab22e3983f51dd28d'/>
<id>4e00ac7636671ebd37fa27eab22e3983f51dd28d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Ensure load_verify_locations raises SSLError for all backends (#1812)</title>
<updated>2020-03-16T18:05:06+00:00</updated>
<author>
<name>Quentin Pradet</name>
<email>quentin.pradet@gmail.com</email>
</author>
<published>2020-03-16T18:05:06+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=eee53a69e1af019da18635d6974f893308db0ada'/>
<id>eee53a69e1af019da18635d6974f893308db0ada</id>
<content type='text'>
* Ensure load_verify_locations raises SSLError for all backends

This also adds TestSSL to the classes tested in SecureTransport and
PyOpenSSL, since:

1. TestSSL was the most natural place for this test.
2. The test only makes sense when run against all SSL backends.

Co-authored-by: Pierre-Louis Bonicoli &lt;pierre-louis.bonicoli@libregerbil.fr&gt;

* Remove redundant check in test

pytest.raises() already checks this.

* Update test_socketlevel.py

Co-authored-by: Pierre-Louis Bonicoli &lt;pierre-louis.bonicoli@libregerbil.fr&gt;
Co-authored-by: Seth Michael Larson &lt;sethmichaellarson@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Ensure load_verify_locations raises SSLError for all backends

This also adds TestSSL to the classes tested in SecureTransport and
PyOpenSSL, since:

1. TestSSL was the most natural place for this test.
2. The test only makes sense when run against all SSL backends.

Co-authored-by: Pierre-Louis Bonicoli &lt;pierre-louis.bonicoli@libregerbil.fr&gt;

* Remove redundant check in test

pytest.raises() already checks this.

* Update test_socketlevel.py

Co-authored-by: Pierre-Louis Bonicoli &lt;pierre-louis.bonicoli@libregerbil.fr&gt;
Co-authored-by: Seth Michael Larson &lt;sethmichaellarson@gmail.com&gt;</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>Rename VerifiedHTTPSConnection to HTTPSConnection (#1805)</title>
<updated>2020-02-29T00:01:19+00:00</updated>
<author>
<name>kobayashi</name>
<email>abok.1k@gmail.com</email>
</author>
<published>2020-02-29T00:01:19+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=33a29c5e34ee3375cde07addeb979aba56f2ca5a'/>
<id>33a29c5e34ee3375cde07addeb979aba56f2ca5a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow the CA certificate data to be passed as a string (#1804)</title>
<updated>2020-02-22T18:33:04+00:00</updated>
<author>
<name>Benno Rice</name>
<email>benno@jeamland.net</email>
</author>
<published>2020-02-22T18:33:04+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=c422c02afe576e976486c7e57c0320dfc599759b'/>
<id>c422c02afe576e976486c7e57c0320dfc599759b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Raise ValueError if method contains control characters (#1800)</title>
<updated>2020-02-17T21:34:48+00:00</updated>
<author>
<name>Seth Michael Larson</name>
<email>sethmichaellarson@gmail.com</email>
</author>
<published>2020-02-17T21:34:48+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=1dd69c5c5982fae7c87a620d487c2ebf7a6b436b'/>
<id>1dd69c5c5982fae7c87a620d487c2ebf7a6b436b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add __repr__ to Timeout (#1795)</title>
<updated>2020-02-04T14:54:17+00:00</updated>
<author>
<name>John Vandenberg</name>
<email>jayvdb@gmail.com</email>
</author>
<published>2020-02-04T14: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=95958b4712756bb531549a41010c9751f2233ba4'/>
<id>95958b4712756bb531549a41010c9751f2233ba4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Release 1.25.8 (#1788)</title>
<updated>2020-01-21T20:36:11+00:00</updated>
<author>
<name>Seth Michael Larson</name>
<email>sethmichaellarson@gmail.com</email>
</author>
<published>2020-01-21T20:36:11+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=2a57bc5758075a9248cc0d87f66a2ff678338478'/>
<id>2a57bc5758075a9248cc0d87f66a2ff678338478</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Optimize _encode_invalid_chars (#1787)</title>
<updated>2020-01-21T18:32:56+00:00</updated>
<author>
<name>Quentin Pradet</name>
<email>quentin.pradet@gmail.com</email>
</author>
<published>2020-01-21T18:32:56+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/urllib3.git/commit/?id=a2697e7c6b275f05879b60f593c5854a816489f0'/>
<id>a2697e7c6b275f05879b60f593c5854a816489f0</id>
<content type='text'>
Co-authored-by: Seth Michael Larson &lt;sethmichaellarson@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Seth Michael Larson &lt;sethmichaellarson@gmail.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
