aboutsummaryrefslogtreecommitdiff
path: root/urllib3.egg-info
diff options
context:
space:
mode:
Diffstat (limited to 'urllib3.egg-info')
-rw-r--r--urllib3.egg-info/PKG-INFO30
-rw-r--r--urllib3.egg-info/SOURCES.txt4
-rw-r--r--urllib3.egg-info/pbr.json1
3 files changed, 25 insertions, 10 deletions
diff --git a/urllib3.egg-info/PKG-INFO b/urllib3.egg-info/PKG-INFO
index a19a535..cdd3ed3 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.11
+Version: 1.12
Summary: HTTP library with thread-safe connection pooling, file post, and more.
Home-page: http://urllib3.readthedocs.org/
Author: Andrey Petrov
@@ -156,6 +156,19 @@ Description: =======
Changes
=======
+ 1.12 (2015-09-03)
+ +++++++++++++++++
+
+ * Rely on ``six`` for importing ``httplib`` to work around
+ conflicts with other Python 3 shims. (Issue #688)
+
+ * Add support for directories of certificate authorities, as supported by
+ OpenSSL. (Issue #701)
+
+ * New exception: ``NewConnectionError``, raised when we fail to establish
+ a new connection, usually ``ECONNREFUSED`` socket error.
+
+
1.11 (2015-07-21)
+++++++++++++++++
@@ -164,10 +177,10 @@ Description: =======
* ``pip install urllib3[secure]`` will install Certifi and
PyOpenSSL as dependencies. (Issue #678)
-
+
* Made ``HTTPHeaderDict`` usable as a ``headers`` input value
(Issues #632, #679)
-
+
* Added `urllib3.contrib.appengine <https://urllib3.readthedocs.org/en/latest/contrib.html#google-app-engine>`_
which has an ``AppEngineManager`` for using ``URLFetch`` in a
Google AppEngine environment. (Issue #664)
@@ -182,28 +195,25 @@ Description: =======
* Fix pools not getting replenished when an error occurs during a
request using ``release_conn=False``. (Issue #644)
-
+
* Fix pool-default headers not applying for url-encoded requests
like GET. (Issue #657)
* log.warning in Python 3 when headers are skipped due to parsing
errors. (Issue #642)
-
+
* Close and discard connections if an error occurs during read.
(Issue #660)
-
+
* Fix host parsing for IPv6 proxies. (Issue #668)
* Separate warning type SubjectAltNameWarning, now issued once
per host. (Issue #671)
-
+
* Fix ``httplib.IncompleteRead`` not getting converted to
``ProtocolError`` when using ``HTTPResponse.stream()``
(Issue #674)
- * ... [Short description of non-trivial change.] (Issue #)
-
-
1.10.4 (2015-05-03)
+++++++++++++++++++
diff --git a/urllib3.egg-info/SOURCES.txt b/urllib3.egg-info/SOURCES.txt
index 2f96e50..229925c 100644
--- a/urllib3.egg-info/SOURCES.txt
+++ b/urllib3.egg-info/SOURCES.txt
@@ -39,6 +39,9 @@ dummyserver/certs/server.key
dummyserver/certs/server.key.org
dummyserver/certs/server.no_san.crt
dummyserver/certs/server.no_san.csr
+dummyserver/certs/ca_path_test/98a2772e.0
+dummyserver/certs/ca_path_test/b6b9ccf9.0
+dummyserver/certs/ca_path_test/cacert.pem
test/__init__.py
test/benchmark.py
test/port_helpers.py
@@ -82,6 +85,7 @@ urllib3/response.py
urllib3.egg-info/PKG-INFO
urllib3.egg-info/SOURCES.txt
urllib3.egg-info/dependency_links.txt
+urllib3.egg-info/pbr.json
urllib3.egg-info/requires.txt
urllib3.egg-info/top_level.txt
urllib3/contrib/__init__.py
diff --git a/urllib3.egg-info/pbr.json b/urllib3.egg-info/pbr.json
new file mode 100644
index 0000000..0af0534
--- /dev/null
+++ b/urllib3.egg-info/pbr.json
@@ -0,0 +1 @@
+{"is_release": false, "git_version": "d7d9caa"} \ No newline at end of file