From: Ben Darnell Date: Mon, 20 Feb 2012 05:57:52 +0000 (-0800) Subject: Release note updates for the last wave of merges X-Git-Tag: v2.3.0~81 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0f30e15036554eec0e1a96b22af1cc76785df6cc;p=thirdparty%2Ftornado.git Release note updates for the last wave of merges --- diff --git a/website/sphinx/releases/next.rst b/website/sphinx/releases/next.rst index 1a47759f2..cc29c60b1 100644 --- a/website/sphinx/releases/next.rst +++ b/website/sphinx/releases/next.rst @@ -15,3 +15,16 @@ In progress URLs containing IPv6 literals (This bug affected Python 2.5 and 2.6). * Fixed a bug on python versions before 2.6.5 when `URLSpec` regexes are constructed from unicode strings and keyword arguments are extracted. +* `tornado.curl_httpclient` now supports client SSL certificates (using + the same ``client_cert`` and ``client_key`` arguments as + `tornado.simple_httpclient`) +* `tornado.httpclient.HTTPClient` now supports the same constructor + keyword arguments as `AsyncHTTPClient`. +* `tornado.locale.get_supported_locales` no longer takes a meaningless + ``cls`` argument. +* The ``reverse_url`` function in the template namespace now comes from + the `RequestHandler` rather than the `Application`. (Unless overridden, + `RequestHandler.reverse_url` is just an alias for the `Application` + method). +* The ``Etag`` header is now returned on 304 responses to an ``If-None-Match`` + request, improving compatibility with some caches.