14
0

- Update to 0.14.1:

* Python 3.3 Compatibility
  * Simply default accept-encoding
  * Bugfixes
- 0.14.0 (2012-09-02)
  * No more iter_content errors if already downloaded.
- 0.13.9 (2012-08-25)
  * Fix for OAuth + POSTs
  * Remove exception eating from dispatch_hook
  * General bugfixes
- 0.13.8 (2012-08-21)
  * Incredible Link header support :)
- 0.13.7 (2012-08-19)
  * Support for (key, value) lists everywhere.
  * Digest Authentication improvements.
  * Ensure proxy exclusions work properly.
  * Clearer UnicodeError exceptions.
  * Automatic casting of URLs to tsrings (fURL and such)
  * Bugfixes.
- 0.13.6 (2012-08-06)
  * Long awaited fix for hanging connections!
- 0.13.5 (2012-07-27)
  * Packaging fix
- 0.13.4 (2012-07-27)
  * GSSAPI/Kerberos authentication!
  * App Engine 2.7 Fixes!
  * Fix leaking connections (from urllib3 update)
  * OAuthlib path hack fix
  * OAuthlib URL parameters fix.
- 0.13.3 (2012-07-12)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-requests?expand=0&rev=25
This commit is contained in:
2012-10-16 19:07:13 +00:00
committed by Git OBS Bridge
parent 5919c81afb
commit ec9d2022ef
5 changed files with 51 additions and 65 deletions

View File

@@ -1,3 +1,50 @@
-------------------------------------------------------------------
Tue Oct 16 18:55:20 UTC 2012 - jfunk@funktronics.ca
- Update to 0.14.1:
* Python 3.3 Compatibility
* Simply default accept-encoding
* Bugfixes
- 0.14.0 (2012-09-02)
* No more iter_content errors if already downloaded.
- 0.13.9 (2012-08-25)
* Fix for OAuth + POSTs
* Remove exception eating from dispatch_hook
* General bugfixes
- 0.13.8 (2012-08-21)
* Incredible Link header support :)
- 0.13.7 (2012-08-19)
* Support for (key, value) lists everywhere.
* Digest Authentication improvements.
* Ensure proxy exclusions work properly.
* Clearer UnicodeError exceptions.
* Automatic casting of URLs to tsrings (fURL and such)
* Bugfixes.
- 0.13.6 (2012-08-06)
* Long awaited fix for hanging connections!
- 0.13.5 (2012-07-27)
* Packaging fix
- 0.13.4 (2012-07-27)
* GSSAPI/Kerberos authentication!
* App Engine 2.7 Fixes!
* Fix leaking connections (from urllib3 update)
* OAuthlib path hack fix
* OAuthlib URL parameters fix.
- 0.13.3 (2012-07-12)
* Use simplejson if available.
* Do not hide SSLErrors behind Timeouts.
* Fixed param handling with urls containing fragments.
* Significantly improved information in User Agent.
* client certificates are ignored when verify=False
- 0.13.2 (2012-06-28)
* Zero dependencies (once again)!
* New: Response.reason
* Sign querystring parameters in OAuth 1.0
* Client certificates no longer ignored when verify=False
* Add openSUSE certificate support
- Removed certificate patch since it's now upstream
- Removed dependencies that are no longer needed
-------------------------------------------------------------------
Wed May 30 09:11:50 UTC 2012 - saschpe@suse.de