From: Ben Darnell Date: Sat, 25 May 2013 22:48:30 +0000 (-0400) Subject: Update release notes X-Git-Tag: v3.1.0~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dedc6f61e08ee07bf91572bf640054a5b088c66a;p=thirdparty%2Ftornado.git Update release notes --- diff --git a/docs/releases/next.rst b/docs/releases/next.rst index ccf1fab4f..1eb11440f 100644 --- a/docs/releases/next.rst +++ b/docs/releases/next.rst @@ -122,3 +122,15 @@ In progress * Fixed a potential memory leak with long chains of `tornado.gen` coroutines. * ``curl_httpclient`` now supports the ``PATCH`` and ``OPTIONS`` methods without the use of ``allow_nonstandard_methods=True``. +* `tornado.options.options` and other `.OptionParser` instances support some + new dict-like methods: `~.OptionParser.items()`, iteration over keys, + and (read-only) access to options with square braket syntax. + `.OptionParser.group_dict` returns all options with a given group + name, and `.OptionParser.as_dict` returns all options. +* Fixed a potential CPU DoS when ``tornado.netutil.ssl_match_hostname`` + is used on certificates with an abusive wildcard pattern. +* Fixed a problem with the ``Date`` header and cookie expiration dates + when the system locale is set to a non-english configuration. +* Worked around a class of bugs in libcurl that would result in + errors from `.IOLoop.update_handler` in various scenarios including + digest authentication and socks proxies.