]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Release notes for 5.0.2
authorBen Darnell <ben@bendarnell.com>
Sat, 7 Apr 2018 23:07:35 +0000 (19:07 -0400)
committerBen Darnell <ben@bendarnell.com>
Sun, 8 Apr 2018 00:34:55 +0000 (20:34 -0400)
docs/releases.rst
docs/releases/v5.0.2.rst [new file with mode: 0644]

index 74afb4552d09023d060c29f38f1f0c4ce2e33d1e..6f87edc30ba41d216bc364130b10b2d618de921f 100644 (file)
@@ -4,6 +4,7 @@ Release notes
 .. toctree::
    :maxdepth: 2
 
+   releases/v5.0.2
    releases/v5.0.1
    releases/v5.0.0
    releases/v4.5.3
diff --git a/docs/releases/v5.0.2.rst b/docs/releases/v5.0.2.rst
new file mode 100644 (file)
index 0000000..d16b3a8
--- /dev/null
@@ -0,0 +1,18 @@
+What's new in Tornado 5.0.1
+===========================
+
+Apr 7, 2018
+-----------
+
+Bug fixes
+~~~~~~~~~
+
+- Fixed a memory leak when `.IOLoop` objects are created and destroyed.
+- If `.AsyncTestCase.get_new_ioloop` returns a reference to a
+  preexisting event loop (typically when it has been overridden to
+  return `.IOLoop.current()`), the test's ``tearDown`` method will not
+  close this loop.
+- Fixed a confusing error message when the synchronous `.HTTPClient`
+  fails to initialize because an event loop is already running.
+- `.PeriodicCallback` no longer executes twice in a row due to
+  backwards clock adjustments.