From f351c1b6873eb1d53f8d4b1e65f9e118502ef4e2 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Sun, 21 Jun 2015 09:20:42 -0500 Subject: [PATCH] Add release notes for PR 2631 --- 3.0-HISTORY.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/3.0-HISTORY.rst b/3.0-HISTORY.rst index 178f0001..794ee34e 100644 --- a/3.0-HISTORY.rst +++ b/3.0-HISTORY.rst @@ -8,4 +8,9 @@ to most people and breaks most of the assumptions that people have about Response objects. This resolves issue `#2002`_ +- Skip over empty chunks in iterators. Empty chunks could prematurely signal + the end of a request body's transmission, skipping them allows all of the + data through. See `#2631`_ for more details. + .. _#2002: https://github.com/kennethreitz/requests/issues/2002 +.. _#2631: https://github.com/kennethreitz/requests/issues/2631