From: Ben Darnell Date: Mon, 28 May 2012 03:16:42 +0000 (-0700) Subject: Release note updates X-Git-Tag: v2.3.0~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c11efb48c47c8294d9f33d7088283872460d88e2;p=thirdparty%2Ftornado.git Release note updates --- diff --git a/website/sphinx/releases/next.rst b/website/sphinx/releases/next.rst index f070efe04..4b8e8314e 100644 --- a/website/sphinx/releases/next.rst +++ b/website/sphinx/releases/next.rst @@ -67,3 +67,16 @@ In progress to have been used outside Tornado itself. * `tornado.web` will no longer produce responses with status code 304 that also have entity headers such as ``Content-Length``. +* `StackContext` instances now have a deactivation callback that can be + used to prevent further propagation. +* `tornado.gen` no longer leaks `StackContexts` when a ``@gen.engine`` wrapped + function is called repeatedly. +* Extra data at the end of multipart form bodies is now ignored, which fixes + a compatibility problem with an iOS HTTP client library. +* `IOStream.write` performs better when given very large strings. +* `HTTPHeaders.copy` (inherited from `dict.copy`) now works correctly. +* `HTTPConnection.address` is now always the socket address, even for non-IP + sockets. `HTTPRequest.remote_ip` is still always an IP-style address + (fake data is used for non-IP sockets) +* `IOStream` now has an ``error`` attribute that can be used to determine + why a socket was closed.