]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Add release notes for 4.0.2.
authorBen Darnell <ben@bendarnell.com>
Mon, 1 Sep 2014 15:12:27 +0000 (11:12 -0400)
committerBen Darnell <ben@bendarnell.com>
Mon, 1 Sep 2014 15:12:27 +0000 (11:12 -0400)
docs/releases.rst
docs/releases/v4.0.2.rst [new file with mode: 0644]

index d239c3ecc7ea9780844acd9f236c85710fcae882..e2ca2147fd24b6c946f8c51bda54dd17d90c50ad 100644 (file)
@@ -4,6 +4,7 @@ Release notes
 .. toctree::
    :maxdepth: 2
 
+   releases/v4.0.2
    releases/v4.0.1
    releases/v4.0.0
    releases/v3.2.2
diff --git a/docs/releases/v4.0.2.rst b/docs/releases/v4.0.2.rst
new file mode 100644 (file)
index 0000000..9f92e2e
--- /dev/null
@@ -0,0 +1,22 @@
+What's new in Tornado 4.0.2
+===========================
+
+In progress
+-----------
+
+Bug fixes
+~~~~~~~~~
+
+* Fixed a bug that could sometimes cause a timeout to fire after being
+  cancelled.
+* `.AsyncTestCase` once again passes along arguments to test methods,
+  making it compatible with extensions such as Nose's test generators.
+* `.StaticFileHandler` can again compress its responses when gzip is enabled.
+* ``simple_httpclient`` passes its ``max_buffer_size`` argument to the
+  underlying stream.
+* Fixed a reference cycle that can lead to increased memory consumption.
+* `.add_accept_handler` will now limit the number of times it will call
+  `~socket.socket.accept` per `.IOLoop` iteration, addressing a potential
+  starvation issue.
+* Improved error handling in `.IOStream.connect` (primarily for FreeBSD
+  systems)