From 1be0cc4c2ce96907e2d0af9b2ce31edb89496f75 Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Sun, 20 May 2012 17:06:03 -0700 Subject: [PATCH] Release note updates --- website/sphinx/releases/next.rst | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/website/sphinx/releases/next.rst b/website/sphinx/releases/next.rst index 968838b9..f070efe0 100644 --- a/website/sphinx/releases/next.rst +++ b/website/sphinx/releases/next.rst @@ -55,4 +55,15 @@ In progress * `IOLoop.instance()` is now thread-safe. * `tornado.options.options` now supports attribute assignment. * The ``max_clients`` keyword argument to `AsyncHTTPClient.configure` now works. - +* The ``extra_params`` argument to `tornado.escape.linkify` may now be + a callable, to allow parameters to be chosen separately for each link. +* `HTTPServer` now works correctly with paths starting with ``//`` +* Exception handling on Python 3 has been improved; previously some exceptions + such as `UnicodeDecodeError` would generate `TypeErrors` +* `tornado.web.OutputTransform.transform_first_chunk` now takes and returns + a status code in addition to the headers and chunk. This is a + backwards-incompatible change to an interface that was never technically + private, but was not included in the documentation and does not appear + 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``.