From c6eea58081dca411a3bd260d208ab3fbaaf512f1 Mon Sep 17 00:00:00 2001 From: Cory Benfield Date: Mon, 8 Aug 2016 13:37:09 +0100 Subject: [PATCH] Changelog for 2.11 --- HISTORY.rst | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/HISTORY.rst b/HISTORY.rst index 8913c8c0..2352815a 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,30 @@ Release History --------------- +2.11.0 (2016-08-XX) ++++++++++++++++++++ + +**Improvements** + +- Added support for the ``ALL_PROXY`` environment variable. +- Reject header values that contain leading whitespace or newline characters to + reduce risk of header smuggling. + +**Bugfixes** + +- Fixed occasional ``TypeError`` when attempting to decode a JSON response that + occurred in an error case. Now correctly returns a ``ValueError``. +- Requests would incorrectly ignore a non-CIDR IP address in the ``NO_PROXY`` + environment variables: Requests now treats it as a specific IP. +- Fixed a bug when sending JSON data that could cause us to encounter obscure + OpenSSL errors in certain network conditions (yes, really). +- Added type checks to ensure that ``iter_content`` only accepts integers and + ``None`` for chunk sizes. +- Fixed issue where responses whose body had not been fully consumed would have + the underlying connection closed but not returned to the connection pool, + which could cause Requests to hang in situations where the ``HTTPAdapter`` + had been configured to use a blocking connection pool. + 2.10.0 (2016-04-29) +++++++++++++++++++