14
0

Accepting request 361137 from devel:languages:python

1

OBS-URL: https://build.opensuse.org/request/show/361137
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-requests?expand=0&rev=31
This commit is contained in:
2016-02-25 21:08:19 +00:00
committed by Git OBS Bridge
parent a73990e36e
commit 0c15285eec
5 changed files with 70 additions and 23 deletions

View File

@@ -1,3 +1,43 @@
-------------------------------------------------------------------
Wed Feb 17 14:47:12 UTC 2016 - sor.alexei@meowr.ru
- Update to 2.9.1 (changes since 2.8.1):
* The verify keyword argument now supports being passed a path to
a directory of CA certificates, not just a single-file bundle.
* Warnings are now emitted when sending files opened in text mode.
* Added the 511 Network Authentication Required status code to the
status code registry.
* For file-like objects that are not seeked to the very beginning,
we now send the content length for the number of bytes we will
actually read, rather than the total size of the file, allowing
partial file uploads.
* When uploading file-like objects, if they are empty or have no
obvious content length we set Transfer-Encoding: chunked rather
than Content-Length: 0.
* We correctly receive the response in buffered mode when
uploading chunked bodies.
* We now handle being passed a query string as a bytestring on
Python 3, by decoding it as UTF-8.
* Sessions are now closed in all cases (exceptional and not) when
using the functional API rather than leaking and waiting for
the garbage collector to clean them up.
* Correctly handle digest auth headers with a malformed qop
directive that contains no token, by treating it the same as if
no qop directive was provided at all.
* Minor performance improvements when removing specific cookies
by name.
* Fix errors when calculating cookie expiration dates in certain
locales.
* Update bundled urllib3 to 1.13.1.
- Rebase no-default-cacert.patch.
- Modify no-default-cacert.patch: output /etc/ssl/ca-bundle.pem
instead of neither NULL nor /etc/ssl/certs/ as a path to cacerts
bundle (boo#967128).
- Don't apply no-default-cacert.patch on SLE.
- Require ca-certificates package (but not on SLE).
- Tests are being improperly started and actual ones require
network connection, so fix and comment out.
-------------------------------------------------------------------
Thu Dec 17 13:45:59 UTC 2015 - rjschwei@suse.com