]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Release note updates
authorBen Darnell <ben@bendarnell.com>
Mon, 28 May 2012 03:16:42 +0000 (20:16 -0700)
committerBen Darnell <ben@bendarnell.com>
Mon, 28 May 2012 03:16:42 +0000 (20:16 -0700)
website/sphinx/releases/next.rst

index f070efe044dc0b870253d22feed2dc743bf74d80..4b8e8314e9f72c6bb2dae9123619e7c31b240d62 100644 (file)
@@ -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.