diff options
Diffstat (limited to 'urllib3.egg-info')
-rw-r--r-- | urllib3.egg-info/PKG-INFO | 25 | ||||
-rw-r--r-- | urllib3.egg-info/SOURCES.txt | 2 | ||||
-rw-r--r-- | urllib3.egg-info/pbr.json | 2 | ||||
-rw-r--r-- | urllib3.egg-info/requires.txt | 7 |
4 files changed, 29 insertions, 7 deletions
diff --git a/urllib3.egg-info/PKG-INFO b/urllib3.egg-info/PKG-INFO index cdd3ed3..a375cfe 100644 --- a/urllib3.egg-info/PKG-INFO +++ b/urllib3.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: urllib3 -Version: 1.12 +Version: 1.13.1 Summary: HTTP library with thread-safe connection pooling, file post, and more. Home-page: http://urllib3.readthedocs.org/ Author: Andrey Petrov @@ -156,6 +156,29 @@ Description: ======= Changes ======= + 1.13.1 (2015-12-18) + +++++++++++++++++++ + + * Fixed regression in IPv6 + SSL for match_hostname. (Issue #761) + + + 1.13 (2015-12-14) + +++++++++++++++++ + + * Fixed ``pip install urllib3[secure]`` on modern pip. (Issue #706) + + * pyopenssl: Fixed SSL3_WRITE_PENDING error. (Issue #717) + + * pyopenssl: Support for TLSv1.1 and TLSv1.2. (Issue #696) + + * Close connections more defensively on exception. (Issue #734) + + * Adjusted ``read_chunked`` to handle gzipped, chunk-encoded bodies without + repeatedly flushing the decoder, to function better on Jython. (Issue #743) + + * Accept ``ca_cert_dir`` for SSL-related PoolManager configuration. (Issue #758) + + 1.12 (2015-09-03) +++++++++++++++++ diff --git a/urllib3.egg-info/SOURCES.txt b/urllib3.egg-info/SOURCES.txt index 229925c..45b06b2 100644 --- a/urllib3.egg-info/SOURCES.txt +++ b/urllib3.egg-info/SOURCES.txt @@ -35,6 +35,8 @@ dummyserver/certs/client.pem dummyserver/certs/client_bad.pem dummyserver/certs/server.crt dummyserver/certs/server.csr +dummyserver/certs/server.ipv6addr.crt +dummyserver/certs/server.ipv6addr.key dummyserver/certs/server.key dummyserver/certs/server.key.org dummyserver/certs/server.no_san.crt diff --git a/urllib3.egg-info/pbr.json b/urllib3.egg-info/pbr.json index 0af0534..98673b0 100644 --- a/urllib3.egg-info/pbr.json +++ b/urllib3.egg-info/pbr.json @@ -1 +1 @@ -{"is_release": false, "git_version": "d7d9caa"}
\ No newline at end of file +{"is_release": false, "git_version": "12d04b7"}
\ No newline at end of file diff --git a/urllib3.egg-info/requires.txt b/urllib3.egg-info/requires.txt index 2490b32..f43ed1a 100644 --- a/urllib3.egg-info/requires.txt +++ b/urllib3.egg-info/requires.txt @@ -1,9 +1,6 @@ -[secure;python_version<="2.7"] -pyOpenSSL +[secure] +pyOpenSSL>=0.13 ndg-httpsclient pyasn1 certifi - -[secure;python_version>"2.7"] -certifi |