14
0

Accepting request 236416 from home:rjschwei:branches:devel:languages:python

- Update to version 2.3.0
  + 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.
  + 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.- Fixes incorrect parsing of proxy
    credentials that contain a literal or encoded '#' character.
  + Assorted urllib3 fixes.
  + New exception: ``ContentDecodingError``. Raised instead of ``urllib3``
    ``DecodeError`` exceptions.
  + Avoid many many exceptions from the buggy implementation of
    ``proxy_bypass`` on OS X in Python 2.6.
  + Avoid crashing when attempting to get authentication credentials
    from ~/.netrc when running as a user without a home directory.
  + Use the correct pool size for pools of connections to proxies.

OBS-URL: https://build.opensuse.org/request/show/236416
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-requests?expand=0&rev=46
This commit is contained in:
Tomáš Chvátal
2014-06-12 08:02:19 +00:00
committed by Git OBS Bridge
parent c2a2f1bd4b
commit ad236f30e7
6 changed files with 66 additions and 41 deletions

View File

@@ -1,3 +1,64 @@
-------------------------------------------------------------------
Thu Jun 5 19:40:21 UTC 2014 - rschweikert@suse.com
- Update to version 2.3.0
+ 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.
+ 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.- Fixes incorrect parsing of proxy
credentials that contain a literal or encoded '#' character.
+ Assorted urllib3 fixes.
+ New exception: ``ContentDecodingError``. Raised instead of ``urllib3``
``DecodeError`` exceptions.
+ Avoid many many exceptions from the buggy implementation of
``proxy_bypass`` on OS X in Python 2.6.
+ Avoid crashing when attempting to get authentication credentials
from ~/.netrc when running as a user without a home directory.
+ Use the correct pool size for pools of connections to proxies.
+ Fix iteration of ``CookieJar`` objects.
+ Ensure that cookies are persisted over redirect.
+ Switch back to using chardet, since it has merged with charade.
+ Cookies set on individual Requests through a ``Session``
(e.g. via ``Session.get()``) are no longer persisted to the ``Session``.
+ Clean up connections when we hit problems during chunked upload,
rather than leaking them.
+ Return connections to the pool when a chunked upload is successful,
rather than leaking it.
+ Match the HTTPbis recommendation for HTTP 301 redirects.
+ Prevent hanging when using streaming uploads and Digest Auth when a
401 is received.
+ Values of headers set by Requests are now always the native string type.
+ Fix previously broken SNI support.
+ Fix accessing HTTP proxies using proxy authentication.
+ Unencode HTTP Basic usernames and passwords extracted from URLs.
+ Support for IP address ranges for no_proxy environment variable
+ Parse headers correctly when users override the default ``Host:`` header.
+ Avoid munging the URL in case of case-sensitive servers.
+ Looser URL handling for non-HTTP/HTTPS urls.
+ Accept unicode methods in Python 2.6 and 2.7.
+ More resilient cookie handling.
+ Make ``Response`` objects pickleable.
+ Actually added MD5-sess to Digest Auth instead of pretending to like
last time.
+ Updated internal urllib3.
+ Fixed @Lukasa's lack of taste.
-------------------------------------------------------------------
Mon Dec 9 15:27:58 UTC 2013 - vuntz@suse.com