Skip to content

Commit 5c8a9a4

Browse files
committed
Set version to 6.3.3
1 parent 7dfe8b5 commit 5c8a9a4

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

docs/releases.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Release notes
44
.. toctree::
55
:maxdepth: 2
66

7+
releases/v6.3.3
78
releases/v6.3.2
89
releases/v6.3.1
910
releases/v6.3.0

docs/releases/v6.3.3.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
What's new in Tornado 6.3.3
2+
===========================
3+
4+
Aug 11, 2023
5+
------------
6+
7+
Security improvements
8+
~~~~~~~~~~~~~~~~~~~~~
9+
10+
- The ``Content-Length`` header and ``chunked`` ``Transfer-Encoding`` sizes are now parsed
11+
more strictly (according to the relevant RFCs) to avoid potential request-smuggling
12+
vulnerabilities when deployed behind certain proxies.

tornado/__init__.py

Lines changed: 2 additions & 2 deletions
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.3.2"
26-
version_info = (6, 3, 2, 0)
25+
version = "6.3.3"
26+
version_info = (6, 3, 3, 0)
2727

2828
import importlib
2929
import typing

0 commit comments

Comments
 (0)