14
0

Accepting request 447958 from home:tbechtold:branches:devel:languages:python

update to version v2.12.4
  * Python 2 compatibility
  * adding tests for super_len conditional flow
  * Check in updated idna.
  * Test case for requests getting stuck on post redirect with seekable stream
  * v2.12.2
  * added new test, original test restored
  * Make Response.content return None if raw is None
  * adding unicode_is_ascii utility function
  * Update sidebarlogo.html
  * Fixed another scheme proxy over "all" priority
  * Add changelog for 1.19.1
  * changed behavior of basic-http-auth test
  * correct backtick formatting
  * Note @jeremycline is now our contact.
  * Order of type check
  * Add prepared request pickling tests
  * adding comment
  * Add deprecation warnings for 3.0
  * clarify that the `chunk_size` is optional when streaming to a file
  * adding ISO-8859-1 fallback for reason decoding
  * fixed some error
  * pysocks 1.5.7 blacklisting, due to IPv6 problems
  * Fix tests for new urllib3 exception text.
  * make add_dict_to_cookiejar cookielib.CookieJar compatible
  * correct module for cookiejar_from_dict in docs
  * converting update call to merge_cookies call for cookielib compatibility
  * streaming doc clarification
  * removing redundant logic from prepare_content_length
  * Update certifi certs to 2016.09.26

OBS-URL: https://build.opensuse.org/request/show/447958
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-requests?expand=0&rev=94
This commit is contained in:
2017-01-02 08:52:00 +00:00
committed by Git OBS Bridge
parent f4c0eb72dd
commit 154c4f7af4
6 changed files with 154 additions and 20 deletions

View File

@@ -1,3 +1,128 @@
-------------------------------------------------------------------
Wed Dec 28 08:46:15 UTC 2016 - tbechtold@suse.com
update to version v2.12.4
* Python 2 compatibility
* adding tests for super_len conditional flow
* Check in updated idna.
* Test case for requests getting stuck on post redirect with seekable stream
* v2.12.2
* added new test, original test restored
* Make Response.content return None if raw is None
* adding unicode_is_ascii utility function
* Update sidebarlogo.html
* Fixed another scheme proxy over "all" priority
* Add changelog for 1.19.1
* changed behavior of basic-http-auth test
* correct backtick formatting
* Note @jeremycline is now our contact.
* Order of type check
* Add prepared request pickling tests
* adding comment
* Add deprecation warnings for 3.0
* clarify that the `chunk_size` is optional when streaming to a file
* adding ISO-8859-1 fallback for reason decoding
* fixed some error
* pysocks 1.5.7 blacklisting, due to IPv6 problems
* Fix tests for new urllib3 exception text.
* make add_dict_to_cookiejar cookielib.CookieJar compatible
* correct module for cookiejar_from_dict in docs
* converting update call to merge_cookies call for cookielib compatibility
* streaming doc clarification
* removing redundant logic from prepare_content_length
* Update certifi certs to 2016.09.26
* Specify self.cert is used for SSL client certificates
* Fix how we test fallback to latin-1 reason encoding
* adding method to url tests
* Enable UTS46 mode.
* Adding 'import requests' to readme code snippet. (#3700)
* Add Documentation for custom methods
* adding passthrough in close() for non-urllib3-like Responses
* remove extra import
* Test chunked upload doesn't set content length
* Change setuptools extra for new secure extra.
* fix issue when the file-like object raises an IOError with tell
* Added myself to AUTHORS
* Changelog entry for better IDNA.
* updated tests with IDNA encoded and IPv6 urls
* documentation line added for consistency with the post method
* Fall back to streaming
* added unicode auth test
* updates authors
* spelling fix for release-process
* Revert "Adding 'import requests' to readme code snippet."
* Document that Response.json() may raise ValueError
* Amplifies the timeout warning in the docs.
* Revert "Restrict URL preparation to HTTP/HTTPS"
* Update README.rst
* Further complicate the makefile to rewrite imports
* Unable unicode in basic http auth
* Various packaging requirements for idna
* Fixed: httpbin doesn't support bytes
* reverting 3357 and comparing properly encoded strings
* Fixed issue #3696. Added a test for it as well.
* fixed: httpbin with unicode auth
* Remove error swallowing exception catching of AttributeError
* Update sidebarintro.html
* removing use of seek to set total_length
* Update urllib3 to 1.19
* Use IDNA2008 to encode hosts.
* Formatted the example to fix the color highlighting
* Add tests to verify that correct 'Content-Length' or 'Transfer-Encoding' headers are being set in PreparedRequest.
* [httpAdapter] allow empty password in proxy credentials
* Fixed bug to give scheme proxy priority over "all"
* adding decoding requirement for Python 3
* fixes broken link on documentation page
* Basic tests for internationalized domain names.
* Update Comments & Magic Strings
* Change module of internal references to to_native_str()
* Add pickle test with hooks
* update 307 tests to check body content
* requests.post checked data parameters for type like dict.
* test different CookieJar types for add_dict_to_cookiejar
* Restrict URL preparation to HTTP/HTTPS
* Indicate shell command in README is code-like.
* documentation on encoding fallback for streaming
* Fixed readme typo - 'site' should be 'domain'
* Rework Bytestring Host Test to use PyTest Httpbin
* Add makefile to get latest idna release.
* Tests for our URL handling.
* Add test for request when Host header is bytestring
* Move to_native_string to _internal_utils.py to avoid circular dependency
* Add workaround to avoid implicit import of encodings.idna.
* minor doc string cleanup
* little modification in consume_socket_content
* links
* Update bundled urllib3 to 1.19.1
* Changes to documentation based on comments and correction of list of authors.
* Add license for idna package.
* Add line to AUTHORS
* Adjust patch to utilize requests utility functions
* test _body_position and rewind_body
* Seems like we're missing a backport here.
* new logo :D
* add socket tests for 401 redirect and 401 failure
* Adding notes about Request's timeout behavior.
* fixed usage unicode string
* unicode test for _basic_auth_str
* Let's use capitals.
* adding string casting for non-bytes values
* Add patch to avoid bytestring/str hodgepodge
* Vendor idna v2.1
* Clarify allow_redirects
* v2.12.3
* v2.12.0
* v2.12.1
* v2.12.4
* modifying IDNA encoding check to allow fallback
* Use seek from end rather than getvalue
* updating pickling tests for PreparedRequest
* We only ship tagged releases now.
* Make Response.content() return None if status_code is None
* Just lstrip instead of strip because trailing whitespace already works.
* adding rewind for re-POST bodies
* Add persistent examples
-------------------------------------------------------------------
Thu Sep 1 07:53:20 UTC 2016 - tbechtold@suse.com