diff options
Diffstat (limited to 'requests.egg-info')
-rw-r--r-- | requests.egg-info/PKG-INFO | 56 | ||||
-rw-r--r-- | requests.egg-info/SOURCES.txt | 10 |
2 files changed, 41 insertions, 25 deletions
diff --git a/requests.egg-info/PKG-INFO b/requests.egg-info/PKG-INFO index d32a426..fb219aa 100644 --- a/requests.egg-info/PKG-INFO +++ b/requests.egg-info/PKG-INFO @@ -1,24 +1,11 @@ Metadata-Version: 1.1 Name: requests -Version: 2.2.1 +Version: 2.3.0 Summary: Python HTTP for Humans. Home-page: http://python-requests.org Author: Kenneth Reitz Author-email: me@kennethreitz.com -License: Copyright 2014 Kenneth Reitz - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - +License: Apache 2.0 Description: Requests: HTTP for Humans ========================= @@ -85,14 +72,6 @@ Description: Requests: HTTP for Humans $ pip install requests - Or, if you absolutely must: - - .. code-block:: bash - - $ easy_install requests - - But, you really shouldn't do that. - Documentation ------------- @@ -119,6 +98,35 @@ Description: Requests: HTTP for Humans Release History --------------- + 2.3.0 (2014-05-16) + ++++++++++++++++++ + + **API Changes** + + - New ``Response`` property ``is_redirect``, which is true when the + library could have processed this response as a redirection (whether + or not it actually did). + - The ``timeout`` parameter now affects requests with both ``stream=True`` and + ``stream=False`` equally. + - The change in v2.0.0 to mandate explicit proxy schemes has been reverted. + Proxy schemes now default to ``http://``. + - The ``CaseInsensitiveDict`` used for HTTP headers now behaves like a normal + dictionary when references as string or viewd in the interpreter. + + **Bugfixes** + + - No longer expose Authorization or Proxy-Authorization headers on redirect. + Fix CVE-2014-1829 and CVE-2014-1830 respectively. + - Authorization is re-evaluated each redirect. + - On redirect, pass url as native strings. + - Fall-back to autodetected encoding for JSON when Unicode detection fails. + - Headers set to ``None`` on the ``Session`` are now correctly not sent. + - Correctly honor ``decode_unicode`` even if it wasn't used earlier in the same + response. + - Stop advertising ``compress`` as a supported Content-Encoding. + - The ``Response.history`` parameter is now always a list. + - Many, many ``urllib3`` bugfixes. + 2.2.1 (2014-01-23) ++++++++++++++++++ @@ -244,6 +252,8 @@ Description: Requests: HTTP for Humans 1.2.1 (2013-05-20) ++++++++++++++++++ + - 301 and 302 redirects now change the verb to GET for all verbs, not just + POST, improving browser compatibility. - Python 3.3.2 compatibility - Always percent-encode location headers - Fix connection adapter matching to be most-specific first diff --git a/requests.egg-info/SOURCES.txt b/requests.egg-info/SOURCES.txt index 0f9826f..7824b58 100644 --- a/requests.egg-info/SOURCES.txt +++ b/requests.egg-info/SOURCES.txt @@ -76,7 +76,6 @@ requests/packages/urllib3/filepost.py requests/packages/urllib3/poolmanager.py requests/packages/urllib3/request.py requests/packages/urllib3/response.py -requests/packages/urllib3/util.py requests/packages/urllib3/contrib/__init__.py requests/packages/urllib3/contrib/ntlmpool.py requests/packages/urllib3/contrib/pyopenssl.py @@ -84,4 +83,11 @@ requests/packages/urllib3/packages/__init__.py requests/packages/urllib3/packages/ordered_dict.py requests/packages/urllib3/packages/six.py requests/packages/urllib3/packages/ssl_match_hostname/__init__.py -requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py
\ No newline at end of file +requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py +requests/packages/urllib3/util/__init__.py +requests/packages/urllib3/util/connection.py +requests/packages/urllib3/util/request.py +requests/packages/urllib3/util/response.py +requests/packages/urllib3/util/ssl_.py +requests/packages/urllib3/util/timeout.py +requests/packages/urllib3/util/url.py
\ No newline at end of file |