diff options
| author | Ian Cordasco <sigmavirus24@users.noreply.github.com> | 2015-03-14 11:43:32 -0500 |
|---|---|---|
| committer | Ian Cordasco <sigmavirus24@users.noreply.github.com> | 2015-03-14 11:43:32 -0500 |
| commit | fa338da717124188b21d48df55f2fa9aca459d12 (patch) | |
| tree | 1b999840bba386dd39c521a77384e202db04dbdc | |
| parent | bbbd9de6fdc8a99846414cdfc582974e49478c7b (diff) | |
| parent | 80a3e87bf39f05a7b255cd757d84bb46e23c3a86 (diff) | |
| download | python-requests-2.6.0.tar.gz | |
Merge pull request #2492 from sigmavirus24/release/v2.6.0v2.6.0
Bump version and add release notes for 2.6.0
| -rw-r--r-- | HISTORY.rst | 30 | ||||
| -rw-r--r-- | requests/__init__.py | 2 |
2 files changed, 31 insertions, 1 deletions
diff --git a/HISTORY.rst b/HISTORY.rst index 1fc4f3bc..254656c5 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,36 @@ Release History --------------- +2.6.0 (2015-03-14) +++++++++++++++++++ + +**Bugfixes** + +- 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 <https://bugfuzz.com>`_. + An CVE identifier has not yet been assigned for this. 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. + 2.5.3 (2015-02-24) ++++++++++++++++++ diff --git a/requests/__init__.py b/requests/__init__.py index b90d792e..446500bf 100644 --- a/requests/__init__.py +++ b/requests/__init__.py @@ -42,7 +42,7 @@ is at <http://python-requests.org>. """ __title__ = 'requests' -__version__ = '2.5.3' +__version__ = '2.6.0' __build__ = 0x020503 __author__ = 'Kenneth Reitz' __license__ = 'Apache 2.0' |
