Skip to content

Commit

Permalink
Set version to 6.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bdarnell committed Aug 11, 2023
1 parent 7dfe8b5 commit 5c8a9a4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Release notes
.. toctree::
:maxdepth: 2

releases/v6.3.3
releases/v6.3.2
releases/v6.3.1
releases/v6.3.0
Expand Down
12 changes: 12 additions & 0 deletions docs/releases/v6.3.3.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
What's new in Tornado 6.3.3
===========================

Aug 11, 2023
------------

Security improvements
~~~~~~~~~~~~~~~~~~~~~

- The ``Content-Length`` header and ``chunked`` ``Transfer-Encoding`` sizes are now parsed
more strictly (according to the relevant RFCs) to avoid potential request-smuggling
vulnerabilities when deployed behind certain proxies.
4 changes: 2 additions & 2 deletions tornado/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
# is zero for an official release, positive for a development branch,
# or negative for a release candidate or beta (after the base version
# number has been incremented)
version = "6.3.2"
version_info = (6, 3, 2, 0)
version = "6.3.3"
version_info = (6, 3, 3, 0)

import importlib
import typing
Expand Down

0 comments on commit 5c8a9a4

Please sign in to comment.