Skip to content

Commit a5ecfab

Browse files
committed
Bump version to 6.4.2
1 parent bc7df6b commit a5ecfab

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

Diff for: docs/releases.rst

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Release notes
44
.. toctree::
55
:maxdepth: 2
66

7+
releases/v6.4.2
78
releases/v6.4.1
89
releases/v6.4.0
910
releases/v6.3.3

Diff for: docs/releases/v6.4.2.rst

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
What's new in Tornado 6.4.2
2+
===========================
3+
4+
Nov 21, 2024
5+
------------
6+
7+
Security Improvements
8+
~~~~~~~~~~~~~~~~~~~~~
9+
10+
- Parsing of the cookie header is now much more efficient. The older algorithm sometimes had
11+
quadratic performance which allowed for a denial-of-service attack in which the server would spend
12+
excessive CPU time parsing cookies and block the event loop. This change fixes CVE-2024-7592.

Diff for: tornado/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
# is zero for an official release, positive for a development branch,
2323
# or negative for a release candidate or beta (after the base version
2424
# number has been incremented)
25-
version = "6.4.1"
26-
version_info = (6, 4, 0, 1)
25+
version = "6.4.2"
26+
version_info = (6, 4, 2, 0)
2727

2828
import importlib
2929
import typing

0 commit comments

Comments
 (0)