File python3-requests.changes of Package python3-requests
-------------------------------------------------------------------
Thu Sep 11 12:34:42 UTC 2014 - toddrme2178@gmail.com
- Update to 2.4.1 (2014-09-09)
- Now has a "security" package extras set,
``$ pip install requests[security]``
- Requests will now use Certifi if it is available.
- Capture and re-raise urllib3 ProtocolError
- Bugfix for responses that attempt to redirect to themselves
forever (wtf?).
- Update to 2.4.0 (2014-08-29)
* Behavioral Changes
- ``Connection: keep-alive`` header is now sent automatically.
* Improvements
- Support for connect timeouts! Timeout now accepts a tuple
(connect, read) which is used to set individual connect and
read timeouts.
- Allow copying of PreparedRequests without headers/cookies.
- Updated bundled urllib3 version.
- Refactored settings loading from environment
new `Session.merge_environment_settings`.
- Handle socket errors in iter_content.
-------------------------------------------------------------------
Wed Jul 16 11:29:27 UTC 2014 - p.drouand@gmail.com
- Replace python3-distribute with python3-setuptools requirement
- Use tarball from pypi
-------------------------------------------------------------------
Thu Jun 12 14:16: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.
- Add no-default-cacert-sles.patch: use this patch when building
for SLES, since python in SLES and openSUSE behave differently
when it comes to SSL, and no-default-cacert.patch is wrong for
SLES.
- Update no-default-cacert.patch
-------------------------------------------------------------------
Fri Oct 11 10:38:09 UTC 2013 - p.drouand@gmail.com
- Don't remove python-setuptools metadata directory; only unwanted file
-------------------------------------------------------------------
Wed Sep 25 20:03:36 UTC 2013 - p.drouand@gmail.com
- Update to version 2.0.0
API Changes:
+ Keys in the Headers dictionary are now native strings on all Python
versions, i.e. bytestrings on Python 2, unicode on Python 3.
+ Proxy URLs now must have an explicit scheme. A MissingSchema exception
will be raised if they don't.
+ Timeouts now apply to read time if Stream=False.
+ RequestException is now a subclass of IOError, not RuntimeError.
+ Added new method to PreparedRequest objects: PreparedRequest.copy().
+ Added new method to Session objects: Session.update_request(). This
method updates a Request object with the data (e.g. cookies) stored on the Session.
+ Added new method to Session objects: Session.prepare_request(). This method
updates and prepares a Request object, and returns the corresponding PreparedRequest
object.
+ Added new method to HTTPAdapter objects: HTTPAdapter.proxy_headers().
This should not be called directly, but improves the subclass interface.
+ httplib.IncompleteRead exceptions caused by incorrect chunked encoding will
now raise a Requests ChunkedEncodingError instead.
+ Invalid percent-escape sequences now cause a Requests InvalidURL
exception to be raised.
+ HTTP 208 no longer uses reason phrase "im_used". Correctly uses "already_reported".
+ HTTP 226 reason added ("im_used").
Bugfixes:
+ Vastly improved proxy support, including the CONNECT verb.
+ Cookies are now properly managed when 401 authentication responses are received.
+ Chunked encoding fixes.
+ Support for mixed case schemes.
+ Better handling of streaming downloads.
+ Retrieve environment proxies from more locations.
+ Minor cookies fixes.
+ Imroved redirect behaviour.
+ Improved streaming behaviour, particularly for compressed data.
+ Miscellaneous small Python 3 text encoding bugs.
+ .netrc no longer overrides explicit auth.
+ Cookies set by hooks are now correctly persisted on Sessions.
+ Fix problem with cookies that specify port numbers in their host field.
+ BytesIO can be used to perform streaming uploads.
+ More generous parsing of the no_proxy environment variable.
+ Non-string objects can be passed in data values alongside files.
-------------------------------------------------------------------
Thu Jul 25 11:40:02 UTC 2013 - vuntz@suse.com
- Add no-default-cacert.patch: completely ignore the internal CA
bundle and point to /etc/ssl/certs/. This works because we
patched python to do the right thing when a directory is used
there instead of a file.
- Manually remove requests/cacert.pem (better than doing that in
the patch, since it's big) too.
-------------------------------------------------------------------
Mon May 13 08:57:09 UTC 2013 - dmueller@suse.com
- update to 1.2.0:
* Fixed cookies on sessions and on requests
* Significantly change how hooks are dispatched - hooks now receive all the
arguments specified by the user when making a request so hooks can make a
secondary request with the same parameters. This is especially necessary for
authentication handler authors
* certifi support was removed
* Fixed bug where using OAuth 1 with body ``signature_type`` sent no data
* Major proxy work thanks to @Lukasa including parsing of proxy authentication
from the proxy url
* Fix DigestAuth handling too many 401s
* Update vendored urllib3 to include SSL bug fixes
* Allow keyword arguments to be passed to ``json.loads()`` via the
``Response.json()`` method
* Don't send ``Content-Length`` header by default on ``GET`` or ``HEAD``
requests
* Add ``elapsed`` attribute to ``Response`` objects to time how long a request
took.
* Fix ``RequestsCookieJar``
* Sessions and Adapters are now picklable, i.e., can be used with the
mutiprocessing library
Update charade to version 1.0.3
-------------------------------------------------------------------
Fri Jan 18 08:33:19 UTC 2013 - saschpe@suse.de
- Set license to "Apache-2.0 and LGPL-2.1+ and MIT", according to
https://github.com/kennethreitz/requests/issues/1111, the base
license is Apache-2.0 but requests ships two libraries (bnc#799119):
+ charade: LGPL-2.1+
+ urllib3: MIT
-------------------------------------------------------------------
Tue Jan 15 19:37:31 UTC 2013 - p.drouand@gmail.com
- Initial python3 support