~matsubara/ubuntu/trusty/python-urllib3/bug-1412545

« back to all changes in this revision

Viewing changes to urllib3.egg-info/PKG-INFO

  • Committer: Package Import Robot
  • Author(s): Barry Warsaw
  • Date: 2012-11-01 15:31:36 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20121101153136-w2fm02askveqxxkx
Tags: 1.5-0ubuntu1
* New upstream release.  Remaining changes:
  - 01_do-not-use-embedded-python-six.patch: refreshed
  - 02_require-cert-verification.patch: refreshed
  - 03-fix-appenginge.patch: removed

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Metadata-Version: 1.0
 
1
Metadata-Version: 1.1
2
2
Name: urllib3
3
 
Version: 1.3
 
3
Version: 1.5
4
4
Summary: HTTP library with thread-safe connection pooling, file post, and more.
5
5
Home-page: http://urllib3.readthedocs.org/
6
6
Author: Andrey Petrov
17
17
        - Supports gzip and deflate decoding.
18
18
        - Thread-safe and sanity-safe.
19
19
        - Works with AppEngine, gevent, and eventlib.
20
 
        - Tested on Python 2.6+ and Python 3.2+, 99% unit test coverage.
 
20
        - Tested on Python 2.6+ and Python 3.2+, 100% unit test coverage.
21
21
        - Small and easy to understand codebase perfect for extending and building upon.
22
22
          For a more comprehensive solution, have a look at
23
23
          `Requests <http://python-requests.org/>`_ which is also powered by urllib3.
109
109
        Changes
110
110
        =======
111
111
        
 
112
        1.5 (2012-08-02)
 
113
        ++++++++++++++++
 
114
        
 
115
        * Added ``urllib3.add_stderr_logger()`` for quickly enabling STDERR debug
 
116
          logging in urllib3.
 
117
        
 
118
        * Native full URL parsing (including auth, path, query, fragment) available in
 
119
          ``urllib3.util.parse_url(url)``.
 
120
        
 
121
        * Built-in redirect will switch method to 'GET' if status code is 303.
 
122
          (Issue #11)
 
123
        
 
124
        * ``urllib3.PoolManager`` strips the scheme and host before sending the request
 
125
          uri. (Issue #8)
 
126
        
 
127
        * New ``urllib3.exceptions.DecodeError`` exception for when automatic decoding,
 
128
          based on the Content-Type header, fails.
 
129
        
 
130
        * Fixed bug with pool depletion and leaking connections (Issue #76). Added
 
131
          explicit connection closing on pool eviction. Added
 
132
          ``urllib3.PoolManager.clear()``.
 
133
        
 
134
        * 99% -> 100% unit test coverage.
 
135
        
 
136
        
 
137
        1.4 (2012-06-16)
 
138
        ++++++++++++++++
 
139
        
 
140
        * Minor AppEngine-related fixes.
 
141
        
 
142
        * Switched from ``mimetools.choose_boundary`` to ``uuid.uuid4()``.
 
143
        
 
144
        * Improved url parsing. (Issue #73)
 
145
        
 
146
        * IPv6 url support. (Issue #72)
 
147
        
 
148
        
112
149
        1.3 (2012-03-25)
113
150
        ++++++++++++++++
114
151