]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Update release notes
authorBen Darnell <ben@bendarnell.com>
Sat, 25 May 2013 22:48:30 +0000 (18:48 -0400)
committerBen Darnell <ben@bendarnell.com>
Sat, 25 May 2013 22:48:30 +0000 (18:48 -0400)
docs/releases/next.rst

index ccf1fab4fd2fbfa2a73d7042bc897b83da4d55db..1eb11440fb73b7eeacf38dec0c2e9db8dd7fd7bf 100644 (file)
@@ -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.