14
0

Accepting request 339109 from devel:languages:python

1

OBS-URL: https://build.opensuse.org/request/show/339109
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-requests?expand=0&rev=28
This commit is contained in:
2015-10-19 20:51:36 +00:00
committed by Git OBS Bridge
parent 7ea6aee370
commit 04b18d7493
7 changed files with 215 additions and 98 deletions

View File

@@ -1,3 +1,55 @@
-------------------------------------------------------------------
Wed Oct 14 19:24:43 UTC 2015 - sor.alexei@meowr.ru
- Add python3-chardet to build requirements for tests.
- Remove no-default-cacert-sles.patch as no-default-cacert.patch
does basically the same.
-------------------------------------------------------------------
Fri Oct 9 19:11:09 UTC 2015 - sor.alexei@meowr.ru
- Update to 2.8.0:
* Requests now supports per-host proxies. This allows the proxies
dictionary to have entries of the form {'<scheme>://<hostname>':
'<proxy>'}. Host-specific proxies will be used in preference to
the previously-supported scheme-specific ones, but the previous
syntax will continue to work.
* Response.raise_for_status now prints the URL that failed as
part of the exception message.
* requests.utils.get_netrc_auth now takes an raise_errors kwarg,
defaulting to False. When True, errors parsing .netrc files
cause exceptions to be thrown.
* Change to bundled projects import logic to make it easier to
unbundle requests downstream.
* Change the default User-Agent string to avoid leaking data on
Linux: now contains only the requests version.
* The json parameter to post() and friends will now only be used
if neither data nor files are present, consistent with the
documentation.
* We now ignore empty fields in the NO_PROXY enviroment variable.
* Fix problem where httplib.BadStatusLine would get raised if
combining stream=True with contextlib.closing.
* Prevent bugs where we would attempt to return the same connection
back to the connection pool twice when sending a Chunked body.
* Miscellaneous minor internal changes.
* Digest Auth support is now thread safe.
- Apply no-default-cacert-sles.patch on SLE 12.
- Apply Arun Persaud's changes to requests-do-not-use-bundle.patch
(update to 2.8.0).
- Enable tests.
- Small spec cleanup.
-------------------------------------------------------------------
Tue Oct 6 17:48:20 UTC 2015 - aloisio@gmx.com
- Fixed requests-do-not-use-bundle.patch
-------------------------------------------------------------------
Mon Oct 5 17:18:43 UTC 2015 - p.drouand@gmail.com
- Unbundle python-chardet and python-urllib3 (boo#947357)
requests-do-not-use-bundle.patch
-------------------------------------------------------------------
Mon Sep 14 07:48:30 UTC 2015 - tbechtold@suse.com