]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Release notes for 6.0.3 2688/head
authorBen Darnell <ben@bendarnell.com>
Sat, 22 Jun 2019 17:06:50 +0000 (13:06 -0400)
committerBen Darnell <ben@bendarnell.com>
Sun, 23 Jun 2019 22:43:09 +0000 (18:43 -0400)
docs/releases.rst
docs/releases/v6.0.3.rst [new file with mode: 0644]

index 1addf8c645181989c4fa800393473220a1ab1672..bb8a6f999e8de52ae7eab97f36ca36936edb6f9c 100644 (file)
@@ -4,6 +4,7 @@ Release notes
 .. toctree::
    :maxdepth: 2
 
+   releases/v6.0.3
    releases/v6.0.2
    releases/v6.0.1
    releases/v6.0.0
diff --git a/docs/releases/v6.0.3.rst b/docs/releases/v6.0.3.rst
new file mode 100644 (file)
index 0000000..c112a02
--- /dev/null
@@ -0,0 +1,14 @@
+What's new in Tornado 6.0.3
+===========================
+
+Jun 22, 2019
+------------
+
+Bug fixes
+~~~~~~~~~
+
+- `.gen.with_timeout` always treats ``asyncio.CancelledError`` as a
+  ``quiet_exception`` (this improves compatibility with Python 3.8,
+  which changed ``CancelledError`` to a ``BaseException``).
+- ``IOStream`` now checks for closed streams earlier, avoiding
+  spurious logged errors in some situations (mainly with websockets).