What’s new in Tornado 6.5.0¶
May 15, 2025¶
Security Improvements¶
Previously, malformed
multipart-form-datarequests could log multiple warnings and constitute a denial-of-service attack. Now an exception is raised at the first error, so there is only one log message per request. This fixes CVE-2025-47287.
General Changes¶
Python 3.14 is now supported. Older versions of Tornado will work on Python 3.14 but may log deprecation warnings.
The free-threading mode of Python 3.13 is now supported on an experimental basis. Prebuilt wheels are not yet available for this configuration, but it can be built from source.
The minimum supported Python version is 3.9.
Deprecation Notices¶
Support for
obs-foldcontinuation lines in HTTP headers is deprecated and will be removed in Tornado 7.0, as is the use of carriage returns without line feeds as header separators.The
callbackargument towebsocket_connectis deprecated and will be removed in Tornado 7.0. Note thaton_message_callbackis not deprecated.The
log_messageandargsattributes oftornado.web.HTTPErrorare deprecated. Use the newget_messagemethod instead.
Type Annotation Changes¶
tornado.concurrent.chain_futureis now typed as accepting both asyncio and concurrent Futures.tornado.gen.multiandmulti_futurenow takeSequencesandMappingsinstead ofListandDict.tornado.httputil.RequestStartLineandResponseStartLinenow have type annotations for their attributes.HTTPHeadersnow has type annotations for its elements.The
autoescapeargument totornado.template.BaseLoaderis now marked as optional.tornado.routing._RuleListis now aSequencefor more flexibility..RequestHandler.SUPPPORTED_METHODSis now typed to support overriding in a subclass.Types for
RequestHandler.get_body_argumentandget_query_argumentare improved and now match theget_argumentmethod.RequestHandler.get_cookienow has more accurate types.The return type of
UIModule.rendermay now be eitherstrorbytes.
tornado.httputil¶
Support for
obs-foldcontinuation lines in HTTP headers is deprecated and will be removed in Tornado 7.0, as is the use of carriage returns without line feeds as header separators.Request start lines may no longer include control characters.
Method names containing invalid characters now return error code 400 instead of 405.
Header names are now restricted to the set of characters permitted by the RFCs.
Control characters are no longer allowed in (incoming) header values.
Handling of trailing whitespace in headers has been improved, especially with
obs-foldcontinuation lines.The
Hostheader is now restricted to the set of characters permitted by the RFCs. It is now an error to send more than oneHostheader, or to omit aHostheader for a request that is not using HTTP/1.0.
tornado.ioloop¶
Fixed a bug in which
contextvarsthat were set when the event loop was created were not available inside the event loop on Windows.
tornado.netutil¶
bind_unix_socketnow supports the Linux abstract namespace.
tornado.platform.twisted¶
TwistedResolverhas been deleted. It was already deprecated and scheduled for removal in Tornado 7.0, but due to the adoption of RFC 8482 it no longer works for most domain names. This class was primarily intended to provide thread-free non-blocking DNS resolution. If that is still required,tornado.platform.caresresolveris the next best option, although it has its own limitations which differ from TwistedResolver, and it is also deprecated. Most users should switch to the default resolver, which uses threads.
tornado.web¶
The set of characters allowed in (outgoing) HTTP headers now matches the RFCs. Specifically, tab characters are now allowed and DEL is not.
Invalid
If-Modified-Sinceheaders are now ignored instead of causing a 500 error.%characters in the log message oftornado.web.HTTPErrorare no longer doubled when no additional arguments are passed. This matches the behavior oflogging.LogRecord. A new methodget_messagehas been added toHTTPErrorto allow access to the fully-substituted message; directly accessinglog_messageandargsis deprecated.
tornado.websocket¶
Some bugs involving
ping_intervalandping_timeouthave been fixed. Setting theping_timeoutgreater than theping_intervalis no longer supported. The defaultping_timeoutis now equal to theping_interval.The
callbackargument towebsocket_connectis deprecated and will be removed in Tornado 7.0. Note thaton_message_callbackis not deprecated.