Skip to content

Commit eadbf9a

Browse files
committed
Release notes and version bump for 6.5.4
1 parent bbc2b14 commit eadbf9a

3 files changed

Lines changed: 16 additions & 2 deletions

File tree

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.5.4
78
releases/v6.5.3
89
releases/v6.5.2
910
releases/v6.5.1

docs/releases/v6.5.4.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
What's new in Tornado 6.5.4
2+
===========================
3+
4+
Dec 15, 2025
5+
------------
6+
7+
Bug fixes
8+
~~~~~~~~~
9+
10+
- The ``in`` operator for ``HTTPHeaders`` was incorrectly case-sensitive, causing
11+
lookups to fail for headers with different casing than the original header name.
12+
This was a regression in version 6.5.3 and has been fixed to restore the intended
13+
case-insensitive behavior from version 6.5.2 and earlier.

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.5.3"
26-
version_info = (6, 5, 3, 0)
25+
version = "6.5.4"
26+
version_info = (6, 5, 4, 0)
2727

2828
import importlib
2929
import typing

0 commit comments

Comments
 (0)