All Versions
147
Latest Version
Avg Release Cycle
81 days
Latest Release
1112 days ago

Changelog History
Page 6

  • v2.7.0 Changes

    May 03, 2015

    ๐Ÿš€ This is the first release that follows our new release process. For ๐Ÿ‘€ more, see our ๐Ÿ“š documentation.

    ๐Ÿ›  Bugfixes

    • โšก๏ธ Updated urllib3 to 1.10.4, resolving several bugs involving chunked transfer encoding and response framing.
  • v2.6.2 Changes

    April 23, 2015

    ๐Ÿ›  Bugfixes

    • Fix regression where compressed data that was sent as chunked data was not properly decompressed. (#2561)
  • v2.6.1 Changes

    April 22, 2015

    ๐Ÿ›  Bugfixes

    • ๐Ÿšš Remove VendorAlias import machinery introduced in v2.5.2.
    • Simplify the PreparedRequest.prepare API: We no longer require the user to pass an empty list to the hooks keyword argument. (c.f. #2552)
    • Resolve redirects now receives and forwards all of the original arguments to the adapter. (#2503)
    • Handle UnicodeDecodeErrors when trying to deal with a unicode URL that cannot be encoded in ASCII. (#2540)
    • ๐Ÿ“œ Populate the parsed path of the URI field when performing Digest Authentication. (#2426)
    • Copy a PreparedRequest's CookieJar more reliably when it is not an instance of RequestsCookieJar. (#2527)
  • v2.6.0 Changes

    March 14, 2015

    ๐Ÿ›  Bugfixes

    • CVE-2015-2296: Fix handling of cookies on redirect. Previously a cookie without a host value set would use the hostname for the redirected URL exposing requests users to session fixation attacks and potentially cookie stealing. This was disclosed privately by Matthew Daley of BugFuzz. This affects all versions of requests from v2.1.0 to v2.5.3 (inclusive on both ends).
    • Fix error when requests is an install_requires dependency and python setup.py test is run. (#2462)
    • Fix error when urllib3 is unbundled and requests continues to use the vendored import location.
    • ๐Ÿ›  Include fixes to urllib3's header handling.
    • Requests' handling of unvendored dependencies is now more restrictive.

    ๐Ÿ”‹ Features and Improvements

    • ๐Ÿ‘ Support bytearrays when passed as parameters in the files argument. (#2468)
    • Avoid data duplication when creating a request with str, bytes, or bytearray input to the files argument.
  • v2.5.3 Changes

    February 24, 2015

    ๐Ÿ›  Bugfixes

  • v2.5.2 Changes

    February 23, 2015

    ๐Ÿ”‹ Features and Improvements

    ๐Ÿ›  Bugfixes

    • ๐Ÿšš Copy pip's import machinery. When downstream redistributors remove requests.packages.urllib3 the import machinery will continue to let those same symbols work. Example usage in requests' documentation and 3rd-party libraries relying on the vendored copies of urllib3 will work without having to fallback to the system urllib3.
    • Attempt to quote parts of the URL on redirect if unquoting and then quoting fails. (#2356)
    • Fix filename type check for multipart form-data uploads. (#2411)
    • Properly handle the case where a server issuing digest authentication challenges provides both auth and auth-int qop-values. (#2408)
    • Fix a socket leak. (shazow/urllib3#549)
    • Fix multiple Set-Cookie headers properly. (shazow/urllib3#534)
    • Disable the built-in hostname verification. (shazow/urllib3#526)
    • Fix the behaviour of decoding an exhausted stream. (shazow/urllib3#535)

    ๐Ÿ”’ Security

    • โšก๏ธ Pulled in an updated cacert.pem.
    • 0๏ธโƒฃ Drop RC4 from the default cipher list. (shazow/urllib3#551)
  • v2.5.1 Changes

    December 23, 2014

    Behavioural Changes

    • Only catch HTTPErrors in raise_for_status (#2382)

    ๐Ÿ›  Bugfixes

    • ๐Ÿ‘€ Handle LocationParseError from urllib3 (#2344)
    • Handle file-like object filenames that are not strings (#2379)
    • Unbreak HTTPDigestAuth handler. Allow new nonces to be negotiated (#2389)
  • v2.5.0 Changes

    December 01, 2014

    ๐Ÿ‘Œ Improvements

    • Allow usage of urllib3's Retry object with HTTPAdapters (#2216)
    • The iter_lines method on a response now accepts a delimiter with which to split the content (#2295)

    Behavioural Changes

    • ๐Ÿ—„ Add deprecation warnings to functions in requests.utils that will be removed in 3.0 (#2309)
    • Sessions used by the functional API are always closed (#2326)
    • Restrict requests to HTTP/1.1 and HTTP/1.0 (stop accepting HTTP/0.9) (#2323)

    ๐Ÿ›  Bugfixes

    • ๐Ÿ“œ Only parse the URL once (#2353)
    • Allow Content-Length header to always be overridden (#2332)
    • Properly handle files in HTTPDigestAuth (#2333)
    • Cap redirect_cache size to prevent memory abuse (#2299)
    • Fix HTTPDigestAuth handling of redirects after authenticating successfully (#2253)
    • Fix crash with custom method parameter to Session.request (#2317)
    • ๐Ÿ“œ Fix how Link headers are parsed using the regular expression library (#2271)

    ๐Ÿ“š Documentation

    • Add more references for interlinking (#2348)
    • โšก๏ธ Update CSS for theme (#2290)
    • โšก๏ธ Update width of buttons and sidebar (#2289)
    • Replace references of Gittip with Gratipay (#2282)
    • Add link to changelog in sidebar (#2273)
  • v2.4.3 Changes

    October 06, 2014

    ๐Ÿ›  Bugfixes

    • Unicode URL improvements for Python 2.
    • Re-order JSON param for backwards compat.
    • Automatically defrag authentication schemes from host/pass URIs. (#2249)
  • v2.4.2 Changes

    October 05, 2014

    ๐Ÿ‘Œ Improvements

    • FINALLY! Add json parameter for uploads! (#2258)
    • โœ… Support for bytestring URLs on Python 3.x (#2238)

    ๐Ÿ›  Bugfixes

    • Avoid getting stuck in a loop (#2244)
    • Multiple calls to iter* fail with unhelpful error. (#2240, #2241)

    ๐Ÿ“š Documentation

    • Correct redirection introduction (#2245)
    • Added example of how to send multiple files in one request. (#2227)
    • Clarify how to pass a custom set of CAs (#2248)