Changelog
Tomcat 11.0.13 (markt)
Catalina
- Add:
Add CIDR support for the configuration of internal and trusted proxies
for the
RemoteIpFilter
andRemoteIpValve
. Configuration via regular expression has been deprecated and will be removed in Tomcat 12. (markt) - Fix: Log warnings when the SSO configuration does not comply with the documentation. (remm)
- Update:
Deprecate the
RemoteAddrFilter
andRemoteAddValve
in favour of theRemoteCIDRFilter
andRemoteCIDRValve
. (markt) - Fix: 69837: Fix corruption of the class path generated by the Loader when running on Windows. (markt)
- Fix: Reject requests that map to invalid Windows file names earlier. (markt)
- Fix: 69839: Ensure that changes to session IDs (typically after authentication) are promulgated to the SSO Valve to ensure that SSO entries are fully clean-up on session expiration. Patch provided by Kim Johan Andersson. (markt)
- Fix:
Fix a race condition in the creation of the storage location for the
FileStore
. (markt)
Coyote
- Fix: 69836: Incorrect processing of partitioned setting when generating session cookie. Patch submitted by Marc Pynaert. (remm)
- Fix: 69848: Fix copy/paste errors in 11.0.12 that meant DELETE requests received via the AJP connector were processed as OPTIONS requests and PROPFIND requests were processed as TRACE. (markt)
WebSocket
- Fix:
69845: When using
permessage-deflate
with Java 25 onwards, handle the underlyingInflater
and/orDeflater
throwingIllegalStateException
when closed rather thanNullPointerException
as they do in Java 24 and earlier. (markt)
Other
- Fix:
69847: Remove remaining references to the
org.apache.tomcat.util.codec.binary
package which has been deleted. (markt)
2025年10月07日 Tomcat 11.0.12 (markt)
Catalina
- Update: Change the digest used to calculate strong ETags (if enabled) for the default Servlet from SHA-1 to SHA-256 to align with the recommendation in RFC 9110 that hash functions used to generate strong ETags should be collision resistant. (markt)
- Fix: HTTP methods are case-sensitive so always use case sensitive comparisons when comparing HTTP methods. (markt)
- Fix:
69814: Ensure that
HttpSession.isNew()
returnsfalse
once the client has joined the session. (markt) - Fix: Further performance improvements for ParameterMap. (jengebr/markt)
- Code:
Refactor access log time stamps to be based on the
Instant
request processing starts. (markt) - Fix: Fix a case-sensitivity issue in the trailer header allow list. (markt)
- Fix: Be proactive in cleaning up temporary files after a failed multi-part upload rather than waiting for GC to do it. (markt)
Coyote
- Update:
Add specific certificate selection code for TLS 1.3 supporting post
quantum cryptography. Certificates defined with type
MLDSA
will be selected depending on the TLS client hello. (remm) - Update:
Add
groups
attribute onSSLHostConfig
allowing to restrict which groups can be enabled on the SSL engine. (remm) - Add: Optimize the conversion of HTTP method from byte form to String form. (markt)
- Fix: Store HTTP request headers using the original case for the header name rather than forcing it to lower case. (markt)
Cluster
- Fix: Prevent the channel configuration (sender, receiver, membership service) from being changed unless the channel is fully stopped. (markt)
Web applications
- Fix:
Documentation. Clarify the purpose of the
maxPostSize
attribute of theConnector
element. (markt) - Fix: Avoid NPE in manager webapp displaying certificate information. (remm)
Other
- Update: Update Byte Buddy to 1.17.7. (markt)
- Update: Update Checkstyle to 11.1.0. (markt)
- Update: Update SpotBugs to 4.9.6. (markt)
- Update: Update Jsign to 7.2. (markt)
- Add: Improvements to Russian translations provided by usmazat. (markt)
- Add: Improvements to French translations. (remm)
- Add: Improvements to Japanese translations provided by tak7iji. (markt)
- Update: Minor refactoring in JULI loggers. Patch provided by minjund. (schultz)
2025年09月05日 Tomcat 11.0.11 (markt)
Catalina
- Code: Remove a number of unnecessary packages from the catalina-deployer.jar. (markt)
- Fix:
69781: Fix concurrent access issues in the session
FileStore
implementation that were causing lost sessions when the store was used with thePersistentValve
. Based on pull request #882 by Aaron Ogburn. (markt) - Code:
Refactor
WebResource
locking to use the newKeyedReentrantReadWriteLock
. (markt) - Fix:
Fix handling of
QSA
andQSD
flags inRewriteValve
. (markt)
Coyote
- Fix: 69762: Additional overflow fix for HPACK decoding of integers. Pull request #880 by Chenjp. (markt)
- Fix:
Ensure keys are handed out to OpenSSL even if
PEMFile
fails to process it, with appropriate logging. (remm) - Fix:
Add new
ML-DSA
key algorithm toPEMFile
and improve reporting when reading a key fails. (remm) - Fix: Fix possible early timeouts for network operations caused by a spurious wake-up of a waiting thread. Found by Coverity Scan. (markt)
Cluster
- Fix:
Handle spurious wake-ups during leader election for
NonBlockingCoordinator
. (markt) - Fix:
Handle spurious wake-ups during sending of messages by
RpcChannel
. (markt)
Other
- Code: Review logging and include the full stack trace and exception message by default rather then just the exception message when logging an error or warning in response to an exception. (markt)
- Add: Add escaping to log formatters to align with JSON formatter. (markt)
- Update: Update Checkstyle to 11.0.0. (markt)
2025年08月06日 Tomcat 11.0.10 (markt)
Catalina
- Fix: Fix bloom filter population for archive indexing when using a packed WAR containing one or more JAR files. (markt)
Coyote
- Fix: 69748: Add missing call to set keep-alive timeout when using HTTP/1.1 following an async request, which was present for AJP. (remm/markt)
- Fix:
69762: Fix possible overflow during HPACK decoding of
integers. Note that the maximum permitted value of an HPACK decoded
integer is
Integer.MAX_VALUE
. (markt) - Fix:
Update the HTTP/2 overhead documentation - particularly the code
comments - to reflect the deprecation of the
PRIORITY
frame and clarify that a stream reset always triggers an overhead increase. (markt)
Cluster
- Update:
Add
enableStatistics
configuration attribute for theDeltaManager
, defaulting totrue
. (remm)
WebSocket
- Fix: Align the WebSocket extension handling for WebSocket client connections with WebSocket server connections. The WebSocket client now only includes an extension requested by an endpoint in the opening handshake if the WebSocket client supports that extension. (markt)
Web applications
Other
- Update: Update Checkstyle to 10.26.1. (markt)
- Add: Improvements to French translations. (remm)
- Add: Improvements to Japanese translations by tak7iji. (markt)
2025年07月04日 Tomcat 11.0.9 (markt)
Catalina
- Fix: Ensure application configured welcome files override the defaults when configuring an embedded web application programmatically. (markt)
- Update:
Optimize
Request#getCharsetHolder
to avoid repeated parsing when charset is null. Patch provided by morning-gu. (schultz) - Fix:
Allow the default servlet to set the content length when the content
length is known, no content has been written and a
Writer
is being used. (markt) - Fix: 69717: Correct a regression in the fix for CVE-2025-49125 that prevented access to PreResources and PostResources when mounted below the web application root with a path that was terminated with a file separator. (remm/markt)
- Fix:
69731: Fix an issue that meant that the value of
maxParameterCount
applied was smaller than intended for multipart uploads with non-file parts when the parts were processed before query string parameters. (markt) - Fix:
Align size tracking for multipart requests with FileUpload's use of
long
. (schultz)
Coyote
- Fix:
69710: Increase the default for
maxPartCount
from10
to50
. Update the documentation to provide more details on the memory requirements to support multi-part uploads while avoiding a denial of service risk. (markt) - Fix: 69713: Correctly handle an HTTP/2 data frame that includes padding when the headers include a content-length. (remm/markt)
- Fix: Correctly collect statistics for HTTP/2 requests and avoid counting one request multiple times. Based on pull request #868 by qingdaoheze. (markt)
- Fix:
Fix JMX value for
keepAliveCount
on the endpoint. Also add the value ofuseVirtualThreads
in JMX. (remm) - Fix: 69728: Remove incorrect warning when HTTP/2 is used with optional certificate verification and improve the warnings when a web application tries to use CLIENT-CERT with either HTTP/2 or a JSSE implementation of TLS 1.3. (markt)
- Fix: When setting the initial HTTP/2 connection limit, apply those limits earlier. (markt)
Jasper
- Code:
Remove
IMPL_OBJ_START
from EL grammar forIDENTIFIER
. (markt) - Code:
Remove the
INSTANCEOF
andFUNCTIONSUFFIX
definitions from the EL grammar as both are unused. (markt)
Web applications
- Add: Documentation. Provide more explicit guidance regarding the security considerations for enabling write access to the web application via WebDAV, HTTP PUT requests or similar. (markt)
- Add: Documentation. Add a section on reverse proxies to the security considerations page. (markt)
Other
- Update: Update to the Eclipse JDT compiler 4.36. (markt)
- Update: Update UnboundID to 7.0.3. (markt)
- Update: Update Checkstyle to 10.25.1. (markt)
- Update: Improvements to French translations. (remm)
- Update: Improvements to Japanese translations provided by tak7iji. (markt)
2025年06月09日 Tomcat 11.0.8 (markt)
Catalina
- Fix:
Add support for the
java:module
namespace which mirrors thejava:comp
namespace. (markt) - Fix:
69690: Calling
HttpServletRequest.getParameter()
and related methods for a request with content typemultipart/form-data
when the mapped servlet does not have a@MultipartConfig
or equivalent should not trigger an exception. Note that callinggetPart()
orgetParts()
is these circumstances will trigger an exception. (markt) - Fix:
Support parsing of multiple path parameters separated by
;
in a single URL segment. Based on pull request #860 by Chenjp. (markt) - Fix: 69699: Encode redirect URL used by the rewrite valve with the session id if appropriate, and handle cross context with different session configuration when using rewrite. (remm)
- Add: #863: Add support for comments at the end of lines in text rewrite map files to align behaviour with Apache httpd. Pull request provided by Chenjp. (markt)
- Fix: 69706: Fix saved request serialization issue in FORM introduced when allowing infinite session timeouts. (remm)
- Fix: Expand the path checks for Pre-Resources and Post-Resources mounted at a path within the web application. (markt)
Coyote
- Code:
#861: Refactor
TaskQueue
to use the new interfaceRetryableQueue
which enables better integration of customExecutor
s which provide their ownBlockingQueue
implementation. Pull request provided by Paulo Almeida. (markt) - Add:
Provide finer grained control of multi-part request processing via two
new attributes on the
Connector
element.maxPartCount
limits the total number of parts in a multi-part request andmaxPartHeaderSize
limits the size of the headers provided with each part. Add support for these new attributes to theParameterLimitValve
. (markt)
Jasper
- Fix: 69696: Mark the JSP wrapper for reload after a failed compilation. (remm)
Web applications
- Fix: 69694: Improve error reporting of deployment tasks done using the manager webapp when a copy operation fails. (remm)
Other
- Fix: Add thread name to webappClassLoader.stackTraceRequestThread message. Patch provided by Felix Zhang. (schultz)
- Update: Update Tomcat Native to 2.0.9. (markt)
- Update: Update the internal fork of Apache Commons FileUpload to 1.6.0 (2025年06月05日). (markt)
- Update: Update EasyMock to 5.6.0. (markt)
- Update: Update Checkstyle to 10.25.0. (markt)
- Fix:
Use the full path when the installer for Windows sets calls
icacls.exe
to set file permissions. (markt) - Update: Improvements to Japanese translations provided by tak7iji. (markt)
2025年05月13日 Tomcat 11.0.7 (markt)
Catalina
- Fix: Process possible path parameters rewrite production in the rewrite valve. (remm)
- Add:
69588: Enable
allowLinking
to be set onPreResources
,JarResources
andPostResources
. If not set explicitly, the setting will be inherited from theResources
. (markt) - Fix: 69633: Add support for Filters using context root mappings. (markt)
- Fix: 69643: Optimize directory listing for large amount of files. Patch submitted by Loic de l'Eprevier. (remm)
- Fix: #843: Fix off by one validation logic for partial PUT ranges and associated test case. Submitted by Chenjp. (remm)
- Code:
Refactor GCI servlet to access resources via the
WebResource
API. (markt) - Fix: 69662: Report name in exception message when a naming lookup failure occurs. Based on code submitted by Donald Smith. (remm)
- Fix:
Ensure that the FORM authentication attribute
authenticationSessionTimeout
works correctly when sessions have an infinite timeout when authentication starts. (markt) - Add: Provide a content type based on file extension when web application resources are accessed via a URL. (markt)
Jasper
- Fix:
69635: Add support to
jakarta.el.ImportHandler
for resolving inner classes. (markt) - Add: #842Add support for optimized execution of c:set and c:remove tags, when activated via JSP servlet param useNonstandardTagOptimizations. (jengebr)
- Fix: Fix an edge case compilation bug for JSP and tag files on case insensitive file systems that was exposed by the test case for 69635. (markt)
Web applications
- Fix: 68876: Documentation. Update the UML diagrams for server start-up, request processing and authentication using PlantUML and include the source files for each diagram. (markt)
Other
- Update: Update Jacoco to 0.8.13. (remm)
- Add: Explicitly set the locale to be used for Javadoc. For official releases, this locale will be English (US) to support reproducible builds. (schultz)
- Update: Update Byte Buddy to 1.17.5. (markt)
- Update: Update Checkstyle to 10.23.1. (markt)
- Update: Update file extension to media type mappings to align with the current list used by the Apache Web Server (httpd). (markt)
- Update: Improvements to French translations. (remm)
- Update: Improvements to Japanese translations provided by tak7iji. (markt)
2025年04月09日 Tomcat 11.0.6 (markt)
Catalina
- Fix:
69602: Fix regression in releases from 12-2024 that were too
strict and rejected weak etags in the
If-Range
header with a 400 response. Instead will consider it as a failed match since strong etags are required forIf-Range
. (remm) - Fix: Return 400 if the amount of content sent for a partial PUT is inconsistent with the range that was specified. (remm)
- Add:
Add a new
RateLimiter
implementation,org.apache.catalina.util.ExactRateLimiter
, that can be used withorg.apache.catalina.filters.RateLimitFilter
to provide rate limit based on the exact values configured. Based on pull request #794 by Chenjp. (markt) - Fix:
Fix parsing of the
time-taken
token in theExtendedAccessLogValve
. (remm) - Fix: Fix invocation of the FFM OpenSSL code for setting a SSL engine and FIPS mode. (remm)
- Fix: 69600: Add IPv6 local addresses (RFC 4193 and RFC 4291) to the default internal proxies for the RemoteIpFilter and RemoteIpValve. (markt)
- Fix: 69615: Improve integration with the not found class resources cache for users who are using a custom web application class loader and/or using reflection to dynamically add external repositories to the web application class loader. (markt)
- Add:
Add a new initialisation parameter to the Default servlet -
allowPostAsGet
- which controls whether a direct request (i.e. not a forward or an include) for a static resource using the POST method will be processed as if the GET method had been used. If not allowed, the request will be rejected. The default behaviour of processing the request as if the GET method had been used is unchanged. (markt) - Fix:
69623: Correct a long standing regression that meant that
calls to
ClassLoader.getResource().getContent()
failed when made from within a web application with resource caching enabled. (markt) - Fix:
69634: Avoid NPE on
JsonErrorReportValve
. (remm) - Fix:
Add missing
throwable
stack trace toJsonErrorReportValve
equivalent to the one fromErrorReportValve
. (remm) - Fix:
Fix stack trace trimming in
ErrorReportValve
after removal of the security manager support. (remm) - Fix:
Improve the handling of
%nn
URL encoding in the RewriteValve and document how%nn
URL encoding may be used with rewrite rules. (markt) - Fix:
Fix a potential exception when calling
WebappClassLoaderBase.getResource("")
. (markt)
Coyote
- Fix: 69607: Allow failed initialization of MD5. Based on code submitted by Shivam Verma. (remm)
- Fix: 69614: HTTP/2 priority frames with an invalid priority field value should be ignored. (markt)
- Fix: Improve handling of unexpected errors during HTTP/2 processing. (markt)
- Add: Simplify the process of using a custom SSLContext for an HTTPS enabled connector. Based on pull request #805 by Hakky54. (markt)
Jasper
- Code:
Replace custom URL encoding provided by the JSP runtime library with
calls to
java.net.URLEncoder.encode()
. (markt) - Add:
Add compiler using the
Java Compiler
API, supporting exploded web applications. ThecompilerClassName
to use isorg.apache.jasper.compiler.JavaCompiler
. (remm) - Add:
Add support for specifying Java 25 (with the value
25
) as the compiler source and/or compiler target for JSP compilation. If used with an Eclipse JDT compiler version that does not support these values, a warning will be logged and the default will be used. (markt)
Cluster
- Fix:
Fix resetting cross context sessions in the
ReplicationValve
. (remm)
Web applications
- Add: Documentation. Add a link to the Log4j documentation that describes how to use Log4j rather than JULI for Tomcat's internal logging. (markt)
- Add: Documentation. Document the runtime attributes available to web applications via the Request or the ServletContext. Based on pull request #832 by usmazat. (markt)
Other
- Update: Revert JSign to 6.0 to avoid a file locking issue. (markt)
- Update: Update to the Eclipse JDT compiler 4.35. (markt)
- Update: Update to NSIS 3.11. (markt)
- Update: Update to ByteBuddy 1.17.4. (markt)
- Update: Update to Checkstyle 10.21.4. (markt)
- Update: Update to SpotBugs to 4.9.3. (markt)
- Update: Improvements to French translations. (remm)
- Update: Improvements to Japanese translations provided by tak7iji. (markt)
2025年03月05日 Tomcat 11.0.5 (markt)
Catalina
- Fix: When looking up class loader resources by resource name, the resource name should not start with '/'. If the resource name does start with '/', Tomcat is lenient and looks it up as if the '/' was not present. When the web application class loader was configured with external repositories and names starting with '/' were used for lookups, it was possible that cached 'not found' results could effectively hide lookup results using the correct resource name. (markt)
- Fix:
Enable the JNDIRealm to validate credentials provided to
HttpServletRequest.login(String username, String password)
when the realm is configured to use GSSAPI authentication. (markt) - Fix: Improve the checks for exposure to and protection against CVE-2024-56337 so that reflection is not used unless required. The checks for whether the file system is case sensitive or not have been removed. (markt)
- Fix: Fix a bug in the JRE compatibility detection that incorrectly identified Java 19 and Java 20 as supporting Java 21 features. (markt)
- Add:
Add support for logging the connection ID (as returned by
ServletRequest.getServletConnection().getConnectionId()
) with theAccessLogValve
andExtendedAccessLogValve
. Based on pull request #814 by Dmole. (markt) - Fix: Avoid scenarios where temporary files used for partial PUT would not be deleted. (remm)
Coyote
- Fix:
69575: Avoid using compression if a response is already
compressed using
compress
,deflate
orzstd
. (remm) - Update:
Use
Transfer-Encoding
for compression rather thanContent-Encoding
if the client submits aTE
header containinggzip
. (remm) - Fix: Fix a race condition in the handling of HTTP/2 stream reset that could cause unexpected 500 responses. (markt)
Cluster
- Add:
69598: Add detection of service account token changes to the
KubernetesMembershipProvider
implementation and reload the token if it changes. Based on a patch by Miroslav Jezbera. (markt)
Other
- Add:
Add
makensis
as an option for building the Installer for Windows on non-Windows platforms. (rjung/markt) - Update: Update Byte Buddy to 1.17.1. (markt)
- Update: Update Checkstyle to 10.21.3. (markt)
- Update: Update SpotBugs to 4.9.1. (markt)
- Update: Update JSign to 7.1. (markt)
- Add: Improvements to French translations. (remm)
- Add: Improvements to Japanese translations by tak7iji. (markt)
2025年02月17日 Tomcat 11.0.4 (markt)
Catalina
- Fix:
69576: Avoid possible failure initializing
JreCompat
due to uncaught exception introduced for the check for CVE-2024-56337. (remm)
Other
- Add:
Add
org.apache.juli.JsonFormatter
to format log as one line JSON documents. (remm)
2025年02月10日 Tomcat 11.0.3 (markt)
Catalina
- Update:
Add
tableName
configuration on theDataSourcePropertyStore
that may be used by the WebDAV Servlet. (remm) - Update: Improve HTTP If headers processing according to RFC 9110. Based on pull request #796 by Chenjp. (remm/markt)
- Update:
Allow
readOnly
attribute configuration on theResources
element and allow configure thereadOnly
attribute value of the main resources. The attribute value will also be used by the default and WebDAV Servlets. (remm) - Fix: 69285: Optimise the creation of the parameter map for included requests. Based on sample code and test cases provided by John Engebretson. (markt)
- Fix: 69527: Avoid rare cases where a cached resource could be set with 0 content length, or could be evicted immediately. (remm)
- Fix: Fix possible edge cases (such as HTTP/1.0) with trying to detect requests without body for WebDAV LOCK and PROPFIND. (remm)
- Fix:
69528: Add multi-release JAR support for the
bloom
archiveIndexStrategy
of theResources
. (remm) - Fix:
Improve checks for
WEB-INF
andMETA-INF
in the WebDAV servlet. Based on a patch submitted by Chenjp. (remm) - Fix:
Remove unused session to client map from
CrawlerSessionManagerValve
. Submitted by Brian Matzon. (remm) - Add: Add a check to ensure that, if one or more web applications are potentially vulnerable to CVE-2024-56337, the JVM has been configured to protect against the vulnerability and to configure the JVM correctly if not. Where one or more web applications are potentially vulnerable to CVE-2024-56337 and the JVM cannot be correctly configured or it cannot be confirmed that the JVM has been correctly configured, prevent the impacted web applications from starting. (markt)
- Fix:
When using the WebDAV servlet with
serveSubpathOnly
set totrue
, ensure that the destination for any requested WebDAV operation is also restricted to the sub-path. (markt) - Fix:
Generate an appropriate
Allow
HTTP header when the Default servlet returns a 405 (method not allowed) response in response to aDELETE
request because the target resource cannot be deleted. Pull request #802 provided by Chenjp. (markt) - Code:
Refactor creation of
RequestDispatcher
instances so that the processing of the provided path is consistent with normal request processing. (markt) - Add:
Add
encodedReverseSolidusHandling
andencodedSolidusHandling
attributes to Context to provide control over the handling of the path used to created aRequestDispatcher
. (markt) - Fix:
Handle a potential
NullPointerException
after anIOException
occurs on a non-container thread during asynchronous processing. (markt) - Fix: Enhance lifecycle of temporary files used by partial PUT. (remm)
- Add:
Added support for limiting the number of parameters in HTTP requests through
the new
ParameterLimitValve
. The valve allows configurable URL-specific limits on the number of parameters. (dsoumis)
Coyote
- Fix: Don't log warnings for registered HTTP/2 settings that Tomcat does not support. These settings are now silently ignored. (markt)
- Fix:
Avoid a rare
NullPointerException
when recycling theHttp11InputBuffer
. (markt) - Fix: Lower the log level to debug for logging an invalid socket channel when processing poller events for the NIO Connector as this may occur in normal usage. (markt)
- Code:
Refactor the
SavedRequestInputFilter
so the buffered data is used directly rather than copied. (markt) - Code:
Replace the unused buffer in
org.apache.catalina.connector.InputBuffer
with a static, zero length buffer. (markt) - Code: Clean-up references to the HTTP/2 stream once request processing has completed to aid GC and reduce the size of the HTTP/2 recycled request and response cache. (markt)
- Add:
Add a new Connector configuration attribute,
encodedReverseSolidusHandling
, to control how%5c
sequences in URLs are handled. The default behaviour is unchanged (decode) keeping in mind that the allowBackslash attribute determines how the decoded URI is processed. (markt) - Fix:
69545: Improve CRLF skipping for the
available
method of theChunkedInputFilter
. (remm) - Fix:
Improve the performance of repeated calls to
getHeader()
. Pull request #813 provided by Adwait Kumar Singh. (markt) - Fix:
69559: Ensure that the Java 24 warning regarding the use of
sun.misc.Unsafe::invokeCleaner
is only reported by the JRE when the code will be used. (markt)
Jasper
- Fix: 69508: Correct a regression in the fix for 69382 that broke JSP include actions if both the page attribute and the body contained parameters. Pull request #803 provided by Chenjp. (markt)
- Fix:
Update the identifier validation in the Expression Language parser to
reflect that, as of Java 9,
_
is also a Java keyword and may not be used as an identifier. (markt) - Fix: 69521: Update the EL Parser to allow the full range of valid characters in an EL identifier as defined by the Java Language Specification. (markt)
- Fix:
69532: Optimise the creation of
ExpressionFactory
instances. Patch provided by John Engebretson. (markt)
Web applications
- Add:
Documentation. Expand the description of the security implications of
setting
mapperContextRootRedirectEnabled
and/ormapperDirectoryRedirectEnabled
totrue
. (markt) - Fix:
Documentation. Better document the default for the
truststoreProvider
attribute of aSSLHostConfig
element. (markt)
Other
- Update: Update to Commons Daemon 1.4.1. (markt)
- Update: Update the packaged version of the Tomcat Migration Tool for Jakarta EE to 1.0.9. (markt)
- Update: Update the internal fork of Commons Pool to 2.12.1. (markt)
- Update: Update Byte Buddy to 1.16.1. (markt)
- Update: Update UnboundID to 7.0.2. (markt)
- Update: Update Checkstyle to 10.21.2. (markt)
- Update: Update SpotBugs to 4.9.0. (markt)
- Add: Improvements to French translations. (remm)
- Add: Improvements to Japanese translations by tak7iji. (markt)
- Add: Improvements to Chinese translations by leeyazhou. (markt)
2024年12月09日 Tomcat 11.0.2 (markt)
Catalina
- Add: Add option to serve resources from subpath only with WebDAV Servlet like with DefaultServlet. (michaelo)
- Fix:
Add special handling for the
protocols
attribute ofSSLHostConfig
in storeconfig. (remm) - Fix:
69442: Fix case sensitive check on
content-type
when parsing request parameters. (remm) - Code:
Refactor duplicate code for extracting media type and subtype from
content-type
into a single method. (markt) - Fix: Compatibility of generated embedded code with components where constructors or property related methods throw a checked exception. (remm)
- Fix: The previous fix for inconsistent resource metadata during concurrent reads and writes was incomplete. (markt)
- Fix:
#780: Fix
content-range
header length. Submitted by Chenjp. (remm) - Fix:
69444: Ensure that the
jakarta.servlet.error.message
request attribute is set when an application defined error page is called. (markt) - Fix: Avoid quotes for numeric values in the JSON generated by the status servlet. (remm)
- Add:
Add strong ETag support for the WebDAV and default servlet, which can
be enabled by using the
useStrongETags
init parameter with a value set totrue
. The ETag generated will be a SHA-1 checksum of the resource content. (remm) - Fix: Use client locale for directory listings. (remm)
- Fix:
69439: Improve the handling of multiple
Cache-Control
headers in theExpiresFilter
. Based on pull request #777 by Chenjp. (markt) - Fix: 69447: Update the support for caching classes the web application class loader cannot find to take account of classes loaded from external repositories. Prior to this fix, these classes could be incorrectly marked as not found. (markt)
- Fix: 69466: Rework handling of HEAD requests. Headers explicitly set by users will not be removed and any header present in a HEAD request will also be present in the equivalent GET request. There may be some headers, as per RFC 9110, section 9.3.2, that are present in a GET request that are not present in the equivalent HEAD request. (markt)
- Fix:
69471: Log instances of
CloseNowException
caught byApplicationDispatcher.invoke()
at debug level rather than error level as they are very likely to have been caused by a client disconnection or similar I/O issue. (markt) - Add:
Add a test case for the fix for 69442. Also refactor
references to
application/x-www-form-urlencoded
. Based on pull request #779 by Chenjp. (markt) - Fix:
69476: Catch possible ISE when trying to report PUT failure
in the
DefaultServlet
. (remm) - Add:
Add support for RateLimit
header fields for HTTP (draft) in the
RateLimitFilter
. Based on pull request #775 provided by Chenjp. (markt) - Fix:
69478: Correct a regression introduced in 11.0.0-M19 that
meant when calling
setHttpOnly(boolean)
orsetSecure(boolean)
for a cookie, the respective flags were set regardless of the value passed to the method. (markt) - Add: #787: Add regression tests for 69478. Pull request provided by Thomas Krisch. (markt)
- Fix: The default servlet now rejects HTTP range requests when two or more of the requested ranges overlap. Based on pull request #782 provided by Chenjp. (markt)
- Fix: Enhance Content-Range verification for partial PUT requests handled by the default servlet. Provided by Chenjp in pull request #778. (markt)
- Fix:
Harmonize
DataSourceStore
lookup in the global resources to optionally avoid thecomp/env
prefix which is usually not used there. (remm) - Fix:
As required by RFC 9110, the HTTP
Range
header will now only be processed forGET
requests. Based on pull request #790 provided by Chenjp. (markt) - Fix:
Deprecate the
useAcceptRanges
initialisation parameter for the default servlet. It will be removed in Tomcat 12 onwards where it will effectively be hard coded totrue
. (markt) - Add:
Add
DataSource
based property storage for theWebdavServlet
. (remm)
Coyote
- Fix:
Align
encodedSolidusHandling
with the Servlet specification. If the pass-through mode is used, any%25
sequences will now also be passed through to avoid errors and/or corruption when the application decodes the path. (markt)
Jasper
- Fix: Further optimise EL evaluation of method parameters. Patch provided by Paolo B. (markt)
- Fix: Follow-up to the fix for 69381. Apply the optimisation for method lookup performance in expression language to an additional location. (markt)
Web applications
- Fix:
Documentation. Remove references to the
ResourceParams
element. Support forResourceParams
was removed in Tomcat 5.5.x. (markt) - Fix:
Documentation. 69477: Correct name of attribute for
RemoteIPFilter
. The attribute isinternalProxies
rather thanallowedInternalProxies
. Pull request #786 provided by Jorge Díaz. (markt) - Fix: Examples. Fix broken links when Servlet Request Info example is called via a URL that includes a pathInfo component. (markt)
- Fix: Examples. Expand the obfuscation of session cookie values in the request header example to JSON responses. (markt)
- Add: Examples. Add the ability to delete session attributes in the servlet session example. (markt)
- Add: Examples. Add a hard coded limit of 10 attributes per session for the servlet session example. (markt)
- Add: Examples. Add the ability to delete session attributes and add a hard coded limit of 10 attributes per session for the JSP form authentication example. (markt)
- Add: Examples. Limit the shopping cart example to only allow adding the pre-defined items to the cart. (markt)
- Fix: Examples. Remove JSP calendar example. (markt)
Other
- Fix: 69465: Fix warnings during native image compilation using the Tomcat embedded JARs. (markt)
- Update: Update Tomcat's fork of Commons DBCP to 2.13.0. (markt)
- Update: Update EasyMock to 5.5.0. (markt)
- Update: Update Checkstyle to 10.20.2. (markt)
- Update: Update BND to 7.1.0. (markt)
- Update: Update to the Eclipse JDT compiler 4.34. (markt)
- Add: Improvements to French translations. (remm)
- Add: Improvements to Korean translations. (markt)
- Add: Improvements to Chinese translations. (markt)
- Add: Improvements to Japanese translations by tak7iji. (markt)
2024年11月10日 Tomcat 11.0.1 (markt)
Catalina
- Add:
Add support for the new Servlet API method
HttpServletResponse.sendEarlyHints()
. (markt) - Add:
55470 : Add debug logging that reports the class path when aClassNotFoundException
occurs in the digester or the web application class loader. Based on a patch by Ralf Hauser. (markt) - Update:
69374: Properly separate between table header and body
in
DefaultServlet
's listing. (michaelo) - Update:
69373: Make
DefaultServlet
's HTML listing file last modified rendering better (flexible). (michaelo) - Update:
Improve HTML output of
DefaultServlet
. (michaelo) - Code:
Refactor
RateLimitFilter
to useFilterBase
as the base class. The primary advantage for doing this is less code to processinit-param
values. (markt) - Update:
69370:
DefaultServlet
's HTML listing uses incorrect labels. (michaelo) - Fix:
Avoid NPE in
CrawlerSessionManagerValve
for partially mapped requests. (remm) - Fix:
Add missing WebDAV
Lock-Token
header in the response when locking a folder. (remm) - Fix: Invalid WebDAV lock requests should be rejected with 400. (remm)
- Fix: Fix regression in WebDAV when attempting to unlock a collection. (remm)
- Fix: Verify that destination is not locked for a WebDAV copy operation. (remm)
- Fix:
Send 415 response to WebDAV
MKCOL
operations that include a request body since this is optional and unsupported. (remm) - Fix:
Enforce
DAV:
namespace on WebDAV XML elements. (remm) - Fix: Do not allow a new WebDAV lock on a child resource if a parent collection is locked (RFC 4918 section 6.1). (remm)
- Fix:
WebDAV
DELETE
should remove any existing lock on successfully deleted resources. (remm) - Update: Remove WebDAV lock null support in accordance with RFC 4918 section 7.3 and annex D. Instead a lock on a non existing resource will create an empty file locked with a regular lock. (remm)
- Update: Rewrite implementation of WebDAV shared locks to comply with RFC 4918. (remm)
- Update:
Implement WebDAV
If
header using code from the Apache Jackrabbit project. (remm) - Add:
Add
PropertyStore
interface in the WebDAV Servlet, to allow implementation of dead properties storage. The store used can be configured using thepropertyStore
init parameter of the WebDAV servlet by specifying the class name of the store. A simple non persistent implementation is used if no custom store is configured. (remm) - Update:
Implement WebDAV
PROPPATCH
method using the newly addedPropertyStore
, and updatePROPFIND
to support it. (remm) - Fix:
Cache not found results when searching for web application class loader
resources. This addresses performance problems caused by components such
as
java.sql.DriverManager
which, in some circumstances, will search for the same class repeatedly. In a large web application this can cause performance problems. The size of the cache can be controlled via the newnotFoundClassResourceCacheSize
on the StandardContext. (markt) - Fix:
Stop after
INITIALIZED
state should be a noop since it is possible for subcomponents to be inFAILED
after init. (remm) - Fix:
Fix incorrect web resource cache size calculations when there are
concurrent
PUT
andDELETE
requests for the same resource. (markt) - Add: Add debug logging for the web resource cache so the current size can be tracked as resources are added and removed. (markt)
- Update:
Replace legacy WebDAV
opaquelocktoken:
scheme for lock tokens withurn:uuid:
as recommended by RFC 4918, and removesecret
init parameter. (remm) - Fix:
Concurrent reads and writes (e.g.
GET
andPUT
/DELETE
) for the same path caused corruption of theFileResource
where some of the fields were set as if the file exists and some were set as if it does not. This resulted in inconsistent metadata. (markt) - Fix:
69415: Ensure that the
ExpiresFilter
only sets cache headers onGET
andHEAD
requests. Also skip requests where the application has setCache-Control: no-store
. (markt) - Fix:
69419: Improve the performance of
ServletRequest.getAttribute()
when there are multiple levels of nested includes. Based on a patch provided by John Engebretson. (markt) - Fix:
69426: Restore providing a value (rather than null) for
Class.getProtectionDomain().getCodeSource().getLocation()
as a number of libraries and JRE features depend on this being non-null even when a SecurityManager is not is use. (markt) - Add:
All applications to send an early hints informational response by
calling
HttpServletResponse.sendError()
with a status code of 103. (schultz)
Coyote
- Fix: Return null SSL session id on zero length byte array returned from the SSL implementation. (remm)
- Fix: Skip OpenSSLConf with BoringSSL since it is unsupported. (remm)
- Update: Align buffer reuse of the OpenSSLEngine for tomcat-native with the FFM code. (remm)
- Fix:
Create the
HttpParser
inHttp11Processor
if it is not present on theAbstractHttp11Protocol
to provide better lifecycle robustness for regular HTTP/1.1. The new behavior was introduced on a previous refactoring to improve HTTP/2 performance. (remm) - Fix:
OpenSSLContext
will now throw aKeyManagementException
if something is known to have gone wrong in theinit
method, which is the behavior documented byjavax.net.ssl.SSLContext.init
. This makes error handling more consistent. (remm)
Jasper
- Fix:
69399: Fix regression caused by the improvement
69333 which caused the tag
release
to be called when using tag pooling, and to be skipped when not using it. Patch submitted by Michal Sobkiewicz. (remm) - Fix: 69381: Improve method lookup performance in expression language. When the required method has no arguments there is no need to consider casting or coercion and the method lookup process can be simplified. Based on pull request #770 by John Engebretson. (markt)
- Fix: 69382: Improve the performance of the JSP include action by re-using results of relatively expensive method calls in the generated code rather than repeating them. Patch provided by John Engebretson. (markt)
- Fix:
69398: Avoid unnecessary object allocation in
PageContextImpl
. Based on a suggestion by John Engebretson. (markt) - Fix:
69406: When using
StringInterpreterEnum
, do not throw anIllegalArgumentException
when an invalidEnum
is encountered. Instead, resolve the value at runtime. Patch provided by John Engebretson. (markt) - Fix: 69429: Optimise EL evaluation of method parameters for methods that do not accept any parameters. Patch provided by John Engebretson. (markt)
Other
- Update: Switch from DigiCert ONE to ssl.com eSigner for code signing. (markt)
- Update: Update Byte Buddy to 1.15.10. (markt)
- Update: Update CheckStyle to 10.20.0. (markt)
- Add: Improvements to German translations. (remm)
- Add: Improvements to French translations. (remm)
- Add: Improvements to Japanese translations by tak7iji. (markt)
2024年10月09日 Tomcat 11.0.0 (markt)
Catalina
- Fix:
Ensure that
ServerAuthModule.initialize()
is called when a Jakarta Authentication module is configured viaregisterServerAuthModule()
. (markt) - Fix:
Ensure that the Jakarta Authentication
CallbackHandler
only creates oneGenericPrincipal
in theSubject
. (markt) - Fix:
If the Jakarta Authentication process fails with an Exception,
explicitly set the HTTP response status to 500 as the
ServerAuthContext
may not have set it. (markt) - Fix: When persisting the Jakarta Authentication provider configuration, create any necessary parent directories that don't already exist. (markt)
- Fix: Correct the logic used to detect errors when deleting temporary files associated with persisting the Jakarta Authentication provider configuration. (markt)
- Fix:
When processing Jakarta Authentication callbacks, don't overwrite a
Principal obtained from the
PasswordValidationCallback
withnull
if theCallerPrincipalCallback
does not provide a Principal. (markt) - Fix: Avoid store config backup loss when storing one configuration more than once per second. (remm)
- Fix:
69359:
WebdavServlet
duplicatesgetRelativePath()
method from super class with incorrect Javadoc. (michaelo) - Fix:
69360: Inconsistent
DELETE
behavior betweenWebdavServlet
andDefaultServlet
. (michaelo) - Fix:
Make
WebdavServlet
properly return theAllow
header when deletion of a resource is not allowed. (michaelo) - Fix:
Add log warning if non wildcard mappings are used with the
WebdavServlet
. (remm) - Fix: 69361: Ensure that the order of entires in a multi-status response to a WebDAV is consistent with the order in which resources were processed. (markt)
- Fix: 69362: Provide a better multi-status response when deleting a collection via WebDAV fails. Empty directories that cannot be deleted will now be included in the response. (markt)
- Fix:
69363: Use
getPathPrefix()
consistently in the WebDAV servlet to ensure that the correct path is used when the WebDAV servlet is mounted at a sub-path within the web application. (markt)
Coyote
- Fix:
69316: Ensure that
FastHttpDateFormat#getCurrentDate()
(used to generate Date headers for HTTP responses) generates the correct string for the given input. Prior to this change, the output may have wrong by one second in some cases. Pull request #751 provided by Chenjp. (markt) - Fix: Request start time may not have been accurately recorded for HTTP/1.1 requests preceded by a large number of blank lines. (markt)
- Add:
Add
server
andserverRemoveAppProvidedValues
to the list of attributes the HTTP/2 protocol will inherit from the HTTP/1.1 connector it is nested within. (markt) - Fix: Avoid possible crashes when using Apache Tomcat Native, caused by destroying SSLContext objects through GC after APR has been terminated. (remm)
- Fix: Improve HTTP/2 handling of trailer fields for requests. Trailer fields no longer need to be recieved before the headers of the subsequent stream nor are trailer fields for an in progress stream swallowed if the Connector is paused before the trailer fields are received. (markt)
- Fix: Ensure the request and response are not recycled too soon for an HTTP/2 stream when a stream level error is detected during the processing of incoming HTTP/2 frames. This could lead to incorrect processing times appearing in the access log. (markt)
Jasper
- Fix: 69333: Remove unnecessary code from generated JSPs. (markt)
- Fix:
69338: Improve the performance of processing expressions that
include AND or OR operations with more than two operands and expressions
that use
not empty
. (markt) - Fix:
69348: Reduce memory consumption in
ELContext
by using lazy initialization for the data structure used to track lambda arguments. (markt)
Web applications
- Fix: The manager webapp will now be able to access certificates again when OpenSSL is used. (remm)
Other
- Update: Update to the Eclipse JDT compiler 4.33. (markt)
- Update: Update Byte Buddy to 1.15.3. (markt)
- Update: Update CheckStyle to 10.18.2. (markt)
- Add: Improvements to French translations. (remm)
- Add: Improvements to Japanese translations by tak7iji. (markt)
- Add: Improvements to Chinese translations by Ch_jp. (markt)
2024年09月16日 Tomcat 11.0.0-M26 (markt)
2024年09月10日 Tomcat 11.0.0-M25 (markt)
Catalina
- Add:
Implement the recent clarification from the Jakarta Servlet project that
if a content length is declared then once that many bytes have been
written to the response, further writes should trigger an
IOException
. (markt) - Fix:
Improve performance of
ApplicationHttpRequest.parseParameters()
. Based on sample code and test cases provided by John Engebretson. (markt)
Coyote
- Fix:
Correct a regression in the fix for non-blocking reads of chunked
request bodies that caused
InputStream.available()
to return a non-zero value when there was no data to read. In some circumstances this could cause a blocking read to block waiting for more data rather than return the data it had already received. (markt) - Add:
Add a new attribute
cookiesWithoutEquals
to theRfc6265CookieProcessor
. The default behaviour is unchanged. (markt) - Fix:
Ensure that Tomcat sends a TLS close_notify message after receiving one
from the client when using the
OpenSSLImplementation
. (markt) - Fix: 69301: Fix trailer headers replacing non-trailer headers when writing response headers to the access log. Based on a patch and test case provided by hypnoce. (markt)
- Fix:
69302: If an HTTP/2 client resets a stream before the request
body is fully written, ensure that any
ReadListener
is notified via a call toReadListener.onErrror()
. (markt)
Jasper
- Fix:
Switch the
TldScanner
back to logging detailed scan results at debug level rather than trace level. (markt) - Fix:
Simplify the implementation of
OptionalELResolver
. (markt)
WebSocket
- Fix: If a blocking message write exceeds the timeout, don't attempt the write again before throwing the exception. (markt)
- Fix:
An Exception being thrown during message processing (e.g. in a method
annotated with
@onMessage
) should not automatically cause the connection to close. The application should handle the exception and make the decision whether or not to close the connection. (markt)
Web applications
- Fix: Documentation. Align the logging configuration documentation with the current defaults. (markt)
jdbc-pool
- Fix:
69255: Correct a regression in the fix for 69206
that meant exceptions executing statements were wrapped in an
java.lang.reflect.UndeclaredThrowableException
rather than the application seeing the originalSQLException
. Fixed by pull request #744 provided by Michael Clarke. (markt) - Fix:
69279: Correct a regression in the fix for 69206
that meant that methods that previously returned a
null
ResultSet
were returning a proxy with a null delegate. Fixed by pull request #745 provided by Huub de Beer. (markt)
Other
- Add:
Exclude the
tomcat-coyote-ffm.jar
from JAR scanning by default. (markt) - Fix:
Change the default log handler level to
ALL
so log messages are not dropped by default if a logger is configured to use trace (FINEST
) level logging. (markt) - Update: Update Hamcrest to 3.0. (markt)
- Update: Update EasyMock to 5.4.0. (markt)
- Update: Update Byte Buddy to 1.15.0. (markt)
- Update: Update CheckStyle to 10.18.0. (markt)
- Update: Update the internal fork of Apache Commons BCEL to 6.10.0. (markt)
- Add: Improvements to Spanish translations by Fernando. (markt)
- Add: Improvements to French translations. (remm)
- Add: Improvements to Japanese translations by tak7iji. (markt)
2024年08月06日 Tomcat 11.0.0-M24 (markt)
Catalina
- Fix:
69234: Fix a regression caused by the refactoring to use
java.net.URI
rather thanjava.net.URL
that broke support for parallel deployment with WAR files. (markt)
Coyote
- Fix: Correct regressions in the refactoring that added recycling of the coyote request and response to the HTTP/2 processing. (markt)
not released Tomcat 11.0.0-M23 (markt)
Catalina
- Add:
Add support for RFC 8297 (Early Hints). Applications can use this
feature by casting the
HttpServletResponse
toorg.apache.catalina.connector.Reponse
and then calling the methodvoid sendEarlyHints()
. This method will be added to the Servlet API (removing the need for the cast) in Servlet 6.2 onwards. (markt) - Fix:
69214: Do not reject a CORS request that uses POST but does
not include a
content-type
header. Tomcat now correctly processes this as a simple CORS request. Based on a patch suggested by thebluemountain. (markt) - Fix:
Refactor
SpnegoAuthenticator
so it usesSubject.callAs()
rather thanSubject.doAs()
when the available. (markt)
Coyote
- Update: Add FFM compatibility methods for LibreSSL support. Renegotiation is not supported at the moment. (remm)
- Update:
Add
org.apache.tomcat.util.openssl.LIBRARY_NAME
(specifies the name of the library to load) andorg.apache.tomcat.util.openssl.USE_SYSTEM_LOAD_LIBRARY
(set totrue
to useSystem.loadLibrary
rather than the FFM library loading code) to configure the OpenSSL library loading using FFM. (remm) - Update: Add FFM compatibility methods for BoringSSL support. Renegotiation is not supported in many cases. (remm)
- Fix: Ensure that HTTP/2 stream input buffers are only created when there is a request body to be read. (markt)
- Code: Refactor creation of HttpParser instances from the Processor level to the Protocol level since the parser configuration depends on the protocol and the parser is, otherwise, stateless. (markt)
- Add:
Align HTTP/2 with HTTP/1.1 and recycle the container internal request
and response processing objects by default. This behaviour can be
controlled via the new
discardRequestsAndResponses
attribute on the HTTP/2 upgrade protocol. (markt)
jdbc-pool
Other
- Fix:
Fix packaging regression with missing osgi information following
addition of the
test-only
build target. (remm) - Update: Update Tomcat Native to 2.0.8. (markt)
- Update: Update Byte Buddy to 1.14.18. (markt)
- Add: Improvements to French translations. (remm)
- Add: Improvements to Japanese translations by tak7iji. (markt)
2024年07月05日 Tomcat 11.0.0-M22 (markt)
Catalina
- Fix:
Allow
JAASRealm
to use the configuration source to load a configuredconfigFile
, for easier use with testing. (remm) - Fix:
Fix a potential
NullPointerException
in classes that extendServletResponse
whensetCharacterEncoding(Charset)
is called withnull
. (markt) - Fix:
Add missing algorithm callback to the
JAASCallbackHandler
. (remm) - Fix: Add the OpenSSL version number on the APR and OpenSSL status classes. (remm)
- Fix:
69131: Expand the implementation of the
filter
value of the Authenticator attributeallowCorsPreflight
, so that it applies to all requests that match the configured URL patterns for the CORS filter, rather than only applying if the CORS filter is mapped to/*
. (markt)
Coyote
- Fix: Improve the algorithm used to identify the IP address to use to unlock the acceptor thread when a Connector is listening on all local addresses. Interfaces that are configured for point to point connections or are not currently up are now skipped. (markt)
- Fix: Clean and log OpenSSL errors before processing of OpenSSL conf commands in the FFM code. (remm)
- Fix:
69121: Ensure that the
onComplete()
event is triggered ifAsyncListener.onError()
dispatches to a target that throws an exception. (markt) - Fix:
Following the trailer header field refactoring,
-1
is no longer an allowed value formaxTrailerSize
. Adjust documentation accordingly. (remm) - Update:
Move OpenSSL support using FFM to a separate JAR named
tomcat-coyote-ffm.jar
that advertises Java 22 in its manifest. (remm) - Fix:
Fix search for OpenSSL library for FFM on Mac OS so that
java.library.path
is searched. (markt)
Jasper
- Fix:
Update the optimisation in
jakarta.el.ImportHandler
so it is aware of new classes added to thejava.lang
package in Java 23. (markt) - Fix:
Ensure that an exception in
toString()
still results in anELException
when an object is coerced to a String usingExpressionFactory.coerceToType()
. (markt) - Add:
Add support for specifying Java 24 (with the value
24
) as the compiler source and/or compiler target for JSP compilation. If used with an Eclipse JDT compiler version that does not support these values, a warning will be logged and the default will used. (markt) - Fix: 69135: When using include directives in a tag file packaged in a JAR file, ensure that context relative includes are processed correctly. (markt)
- Fix: 69135: When using include directives in a tag file packaged in a JAR file, ensure that file relative includes are processed correctly. (markt)
- Fix:
69135: When using include directives in a tag file packaged
in a JAR file, ensure that file relative includes are are not permitted
to access files outside of the
/META_INF/tags/
directory nor outside of the JAR file. (markt)
Web applications
- Fix: Fix status servlet detailed view of the connectors when using automatic port. (remm)
Other
- Update:
Add
test-only
build target to allow running only the testsuite, supporting Java versions down to the minimum supported to run Tomcat. (rjung) - Update: Update to the Eclipse JDT compiler 4.32. (markt)
- Update: Update UnboundID to 7.0.1. (markt)
- Update: Update to SpotBugs 4.8.6. (markt)
- Update: Remove cglib dependency as it is not required by the version of EasyMock used by the unit tests. (markt)
- Update: Update EasyMock to 5.3.0. This adds a test dependency on Byte-Buddy 1.14.17. (markt)
- Add: Improvements to Czech translations by Vladimír Chlup. (markt)
- Add: Improvements to French translations. (remm)
- Add: Improvements to Japanese translations by tak7iji. (markt)
- Add: Improvements to Chinese translations by fangzheng. (markt)
2024年06月18日 Tomcat 11.0.0-M21 (markt)
Catalina
- Add: Add support for shallow copies when using WebDAV. (markt)
- Code:
Remove the
WebdavFixFilter
as it is no longer required. (markt) - Fix: 69066: Fix regression in SPNEGO authenticator when processing Base64. Submitted by Daniel Lyko. (remm)
- Add:
Add
RealmBase.getPrincipal(GSSName, GSSCredential, GSSContext)
for retrieving extended/additional information from an established GSS context. (michaelo) - Fix:
Correct a regression in the fix for 68721 that caused some
instances of
LinkageError
to be reported asClassNotFoundException
. (markt) - Fix: Ensure that static resources deployed via a JAR file remain accessible when the context is configured to use a bloom filter. Based on pull request #730 provided by bergander. (markt)
- Add:
Introduce reference counting so the
AprLifecycleListener
is more robust. This particularly targets more complex embedded configurations with multiple server instances with independent lifecycles where more than one server instance requires theAprLifecycleListener
. (markt)
Coyote
- Fix: Fix OpenSSL FFM use of ERR_error_string with a 128 byte buffer, and use ERR_error_string_n instead. (remm)
- Fix: Fix a crash on Windows setting CA certificate on null path. (remm)
- Fix: 69068: Ensure read timouts are triggered for asynchronous, non-blocking reads when using HTTP/2. (markt)
- Update:
69133: Add task queue size configuration on the
Connector
element, similar to theExecutor
element, for consistency. (remm) - Fix: Make counting of active HTTP/2 streams per connection more robust. (markt)
- Add: Add support for TLS 1.3 client initiated re-keying. (markt)
Jasper
- Fix: 68546: Small additional optimisation for initial loading of Servlet code generated for JSPs. Based on a suggestion by Dan Armstrong. (markt)
Web applications
- Add: Add the ability to set a sub-title for the Manager web application main page. This is intended to allow users with lots of instances to easily distinguish them. Based on pull request #724 by Simon Arame. (markt)
Other
- Update: Revert Derby to 10.16.1.1 as that is the latest version of Derby that runs on Java 17. (markt)
- Update: Update to Commons Daemon 1.4.0. (markt)
- Update: Update to Jakarta Annotations API 3.0. (markt)
- Update: Update to Jakarta Authentication API 3.1. (markt)
- Update: Update to Objenesis 3.4. (markt)
- Update: Update to Checkstyle 10.17.0. (markt)
- Update: Update to SpotBugs 4.8.5. (markt)
- Add: Improvements to French translations. (remm)
- Add: Improvements to Japanese translations by tak7iji. (markt)
2024年05月08日 Tomcat 11.0.0-M20 (markt)
Catalina
- Update:
Deprecate and remove
sessionCounter
(replaced by the addition of the active session count and the expired session count, as a reasonable approximation) andduplicates
(which does not represent a possible event in current implementations) statistics from the session manager. (remm) - Fix: 68890 Align output encoding of JSPs in the Manager webapp with the XML declarations in those same files. (schultz)
- Fix:
Update Basic authentication to implement the requirements of RFC 7617
including the removal of the
trimCredentials
setting which is now hard-coded tofalse
. (markt) - Add: Small performance optimization when logging cookies with no values. (schultz)
- Fix:
Correct error handling for asynchronous requests. If the application
performs an dispatch during
AsyncListener.onError()
the dispatch is now performed rather than completing the request using the error page mechanism. (markt) - Add: Re-factor ElapsedTimeElement in AbstractAccessLogValve to use a customizable style. (schultz)
- Add: Add more timescale options to AccessLogValve and ExtendedAccessLogValve. Allow timescales to apply to "time-taken" token in ExtendedAccessLogValve. (schultz)
- Fix: Fix WebDAV lock null (locks for non existing resources) thread safety and removal. (remm)
- Fix: Add periodic checking for WebDAV locks expiration. (remm)
- Fix:
Extend
Asn1Parser
to parseUTF8String
s. (michaelo) - Fix: Remove MBean metadata for attibutes that have been removed. Based on pull request #719 by Shawn Q. (markt)
- Code:
Remove duplicate ID check from
Manager.rotateSessionId()
. (markt)
Coyote
- Fix:
Add OpenSSL FFM classes to
tomcat-embed-core.jar
. (remm) - Fix: Align non-secure and secure writes with NIO and skip the write attempt when there are no bytes to be written. (markt)
- Fix:
Allow any positive value for
socket.unlockTimeout
. If a negative or zero value is configured, the default of250ms
will be used. (mark) - Fix:
Reduce the time spent waiting for the connector to unlock. The previous
default of 10s was noticeably too long for cases where the unlock has
failed. The wait time is now 100ms plus twice
socket.unlockTimeout
. (markt) - Fix:
Ensure that the
onAllDataRead()
event is triggered when the request body uses chunked encoding and is read using non-blocking IO. (markt) - Fix:
68934: Add debug logging in the latch object when exceeding
maxConnections
. (remm) - Fix:
Refactor trailer field handling to use a
MimeHeaders
instance to store trailer fields. (markt) - Fix: Ensure that multiple instances of the same trailer field are handled correctly. (markt)
- Fix: Fix non-blocking reads of chunked request bodies. (markt)
- Code: Refactor HTTP header parsing to use common parsing code. (markt)
- Fix: When an invalid HTTP response header was dropped, an off-by-one error meant that the first header in the response was also dropped. Fix based on pull request #710 by foremans. (markt)
Jasper
- Add:
Add support for specifying Java 23 (with the value
23
) as the compiler source and/or compiler target for JSP compilation. If used with an Eclipse JDT compiler version that does not support these values, a warning will be logged and the default will used. (markt)
WebSocket
- Fix: 69844: Close the connection with a protocol error if the server sends masked frames. (markt)
- Fix:
68884: Reduce the write timeout when writing WebSocket close
messages for abnormal closes. The timeout defaults to 50 milliseconds
and may be controlled using the
org.apache.tomcat.websocket.ABNORMAL_SESSION_CLOSE_SEND_TIMEOUT
property in the user properties collection associated with the WebSocket session. (markt)
Web applications
- Fix: Examples: Improve performance of WebSocket chat application when multiple clients disconnect at the same time. (markt)
- Update: Examples: Increase the number of previous messages displayed when using the WebSocket chat application. (markt)
- Fix: Examples: Improve performance of WebSocket snake application when multiple clients disconnect at the same time. (markt)
Other
- Update: Switch to using the Base64 encoder and decoder provided by the JRE rather than the version provided by Commons Codec. This removes the internal fork of Commons Codec. (markt)
- Update: Update to the Eclipse JDT compiler 4.31. (markt)
- Update: Update NSIS to 3.10. (mark0t)
- Update: Update UnboundID to 7.0.0. (markt)
- Update: Update Checkstyle to 10.16.0. (markt)
- Update: Update JaCoCo to 0.8.12. (markt)
- Update: Update SpotBugs to 4.8.4. (markt)
- Update: Update the internal fork of Apache Commons BCEL to 6.9.0. (markt)
- Update: Update the internal fork of Apache Commons DBCP to 2.12.0. (markt)
- Add: Improvements to Japanese translations by tak7iji. (remm)
2024年04月16日 Tomcat 11.0.0-M19 (remm)
Catalina
- Update:
Add
highConcurrencyStatus
attribute to theSemaphoreValve
to optionally allow the valve to return an error status code to the client when a permit cannot be acquired from the semaphore. (remm) - Add: Add checking of the "age" of the running Tomcat instance since its build-date to the SecurityListener, and log a warning if the server is old. (schultz)
- Fix:
When using the
AsyncContext
, throw anIllegalStateException
, rather than allowing anNullPointerException
, if an attempt is made to use theAsyncContext
after it has been recycled. (markt) - Add:
Add a default implementation for
HttpSession.getAccessor()
to align with the Servlet 6.1 API. (markt) - Add: Add the Jakarta EE 11 XML schemas and update Tomcat and included web applications to use them. (markt)
- Fix: Change the thread-safety mechanism for protecting StandardServer.services from a simple synchronized lock to a ReentrantReadWriteLock to allow multiple readers to operate simultaneously. Based upon a suggestion by Markus Wolfe. (schultz)
- Fix: Improve Service connectors, Container children and Service executors access sync using a ReentrantReadWriteLock. (remm)
- Fix:
Improve handling of integer overflow if an attempt is made to upload a
file via the Servlet API and the file is larger than
Integer.MAX_VALUE
. (markt) - Fix: 68862: Handle possible response commit when processing read errors. (remm)
Coyote
- Fix:
Add
threadsMaxIdleTime
attribute to the endpoint, to allow configuring the amount of time before an internal executor will scale back to the configuredminSpareThreads
size. (remm) - Update:
Adjust the
Set-Cookie
header generated by theRfc6265CookieProcessor
so that attributes with a value of the empty string will be output as bare attribute names without an equals sign or value. This will simplify future support for similar new attributes by removing the need for special handling. (markt) - Code:
Refactor the internal representation of the
HttpOnly
andSecure
attributes to use the empty string as the value for consistency with the recent changes toSet-Cookie
header generation. (markt) - Fix:
Do not generate the
Max-Age
attribute forSet-Cookie
headers associated with cookies that have been configured with aMax-Age
value of zero as RFC 6265 does not permit a value of zero in this case. (markt) - Fix:
Correct a regression in the support for user provided
SSLContext
instances that broke theorg.apache.catalina.security.TLSCertificateReloadListener
. (markt)
Jasper
- Fix:
Handle the case where the JSP engine forwards a request/response to a
Servlet that uses an
OutputStream
rather than aWriter
. This was triggering anIllegalStateException
on code paths where there was a subsequent attempt to obtain aWriter
. (markt) - Fix: Correctly handle the case where a tag library is packaged in a JAR file and the web application is deployed as a WAR file rather than an unpacked directory. (markt)
- Fix: Prevent the web application's ClassLoader from being pinned by the JSP compiler if an application uses a custom XMLInputFactory. Based upon a suggestion from Simon Niederberger. (schultz)
Other
- Update: Update Checkstyle to 10.14.1. (markt)
- Update: Update the internal fork of Apache Commons BCEL to 6.8.2. (markt)
- Update: Update the internal fork of Apache Commons Codec to 1.16.1. (markt)
- Add: Improvements to French translations. (remm)
- Add: Improvements to Japanese translations by tak7iji. (remm)
- Add: Improvements to Chinese translations by leeyazhou. (remm)
2024年03月14日 Tomcat 11.0.0-M18 (markt)
General
- Update: Reduce the minimum supported Java version to Java 17. (markt)
Catalina
- Fix: Minor performance improvement for building filter chains. Based on ideas from pull request #702 by Luke Miao. (remm)
- Fix:
Align error handling for
Writer
andOutputStream
. Ensure use of either once the response has been recycled triggers aNullPointerException
provided thatdiscardFacades
is configured with the default value oftrue
. (markt) - Fix:
68692: The standard thread pool implementations that are
configured using the
Executor
element now implementExecutorService
for better support NIO2. Theorg.apache.catalina.Executor
interface now extendsExecutorService
. (remm) - Fix: 68495: When restoring a saved POST request after a successful FORM authentication, ensure that neither the URI, the query string nor the protocol are corrupted when restoring the request body. (markt)
- Fix:
After forwarding a request, attempt to unwrap the response in order to
suspend it, instead of simply closing it if it was wrapped. Add a new
suspendWrappedResponseAfterForward
boolean attribute onContext
to control the bahavior, defaulting totrue
. (remm) - Fix:
68721: Workaround a possible cause of duplicate class
definitions when using
ClassFileTransformer
s and the transformation of a class also triggers the loading of the same class. (markt) - Fix: The rewrite valve should not do a rewrite if the output is identical to the input. (remm)
- Update:
Add a new
valveSkip
(orVS
) rule flag to the rewrite valve to allow skipping over the next valve in the Catalina pipeline. (remm)
Coyote
- Fix: Fix bad symbol lookup use in the OpenSSL FFM code. (remm)
- Fix: Improve the HTTP/2 stream prioritisation process. If a stream uses all of the connection windows and still has content to write, it will now be added to the backlog immediately rather than waiting until the write attempt for the remaining content. (markt)
Jasper
- Add:
Add method invocation support for
java.util.Optional
via thejakarta.el.OptionalELResolver
to Tomcat's implementation of the Jakarta EL API to align with the latest proposals for the Jakarta EL 6.0 API. The property support has also been refined for greater consistency. (markt) - Update:
The defaults for
compilerSourceVM
andcompilerTargetVM
have been updated to 17 to align with Java 17 being the minimum Java version required for Tomcat 11. (markt)
Cluster
- Fix: Avoid updating request count stats on async. (remm)
Other
- Add: Improvements to French translations. (remm)
- Add: Improvements to Japanese translations by tak7iji. (markt)
- Fix: 57130: Allow digest.(sh|bat) to accept password from a file or stdin. (csutherl/schultz)
2024年02月19日 Tomcat 11.0.0-M17 (markt)
Catalina
- Add:
Implement
HttpSession.getAccessor()
which provides a mechanism for applications to interact with anHttpSession
outside the standard Servlet processing of an HTTP request. This is expected to be especially useful with applications using the Jakarta WebSocket API. (markt) - Fix:
Correct JPMS and OSGi meta-data for
tomcat-embed-core.jar
by removing reference toorg.apache.catalina.ssi
package that is no longer included in the JAR. Based on pull request #684 by Jendrik Johannes. (markt) - Fix:
Fix ServiceBindingPropertySource so that trailing
\r\n
sequences are correctly removed from files containing property values when configured to do so. Bug identified by Coverity Scan. (markt) - Add: Add improvements to the CSRF prevention filter including the ability to skip adding nonces for resource name and subtree URL patterns. (schultz)
- Fix: Review usage of debug logging and downgrade trace or data dumping operations from debug level to trace. (remm)
- Fix:
68089: Further improve the performance of request attribute
access for
ApplicationHttpRequest
andApplicationRequest
. (markt) - Fix: 68559: Allow asynchronous error handling to write to the response after an error during asynchronous processing. (markt)
Coyote
- Fix:
Setting a
null
value for a cookie attribute should remove the attribute. (markt) - Fix: Optimize state handling for OpenSSL context callbacks with the FFM API. (remm)
- Fix: Make asynchronous error handling more robust. Ensure that once a connection is marked to be closed, further asynchronous processing cannot change that. (markt)
- Fix:
Make asynchronous error handling more robust. Ensure that once the call
to
AsyncListener.onError()
has returned to the container, only container threads can access theAsyncContext
. This protects against various race conditions that would otherwise occur if application threads continued to access theAsyncContext
. - Fix: Review usage of debug logging and downgrade trace or data dumping operations from debug level to trace. In particular, most of the HTTP/2 debug logging has been changed to trace level. (remm)
- Fix:
Add support for user provided
SSLContext
instances configured onSSLHostConfigCertificate
instances. Based on pull request #673 provided by Hakan Altındağ. (markt) - Fix:
Partial fix for 68558: Cache the result of converting to
String
for request URI, HTTP header names and the requestContent-Type
value to improve performance by reducing repeatedbyte[]
toString
conversions. (markt) - Fix: Improve error reporting to HTTP/2 clients for header processing errors by reporting problems at the end of the frame where the error was detected rather than at the end of the headers. (markt)
- Fix: Remove the remaining reference to a stream once the stream has been recycled. This makes the stream eligible for garbage collection earlier and thereby improves scalability. (markt)
Jasper
- Fix:
Additional fixes to correctly support
length
as a read-only property of an array via theArrayELResolver
. (markt) - Fix: 68546: Generate optimal size and types for JSP imports maps, as suggested by John Engebretson. (remm)
- Fix: Review usage of debug logging and downgrade trace or data dumping operations from debug level to trace. (remm)
WebSocket
- Fix:
Correct a regression in the fix for 66508 that could cause an
UpgradeProcessor
leak in some circumstances. (markt) - Fix: Review usage of debug logging and downgrade trace or data dumping operations from debug level to trace. (remm)
- Fix: Ensure that WebSocket connection closure completes if the connection is closed when the server side has used the proprietary suspend/resume feature to suspend the connection. (markt)
Web applications
- Add: Add support for responses in JSON format from the examples application RequestHeaderExample. (schultz)
Other
- Fix: Correct the remaining OSGi contract references in the manifest files to refer to the Jakarta EE contract names rather than the Java EE contract names. Based on pull request #685 provided by Paul A. Nicolucci. (markt)
- Update: Update Checkstyle to 10.13.0. (markt)
- Update: Update JSign to 6.0. (markt)
- Update: Update the packaged version of the Tomcat Migration Tool for Jakarta EE to 1.0.7. (markt)
- Update: Update Tomcat Native to 2.0.7. (markt)
- Update: Add strings for debug level messages. (remm)
- Add: Improvements to French translations. (remm)
- Add: Improvements to Japanese translations by tak7iji. (markt)
2024年01月09日 Tomcat 11.0.0-M16 (markt)
Catalina
- Add:
Allow alternate redirect status code for directory redirects issued by
the default servlet via the init param
directoryRedirectStatusCode
. (funkman/markt) - Update:
68378: Align extension to MIME type mappings in the global
web.xml with those in httpd by adding
application/vnd.geogebra.slides
forggs
,text/javascript
formjs
andaudio/ogg
for opus. (markt)
Coyote
- Fix:
Refactor the
VirtualThreadExecutor
so that it can be used by the NIO2 connector which was using platform threads even when configured to use virtual threads. (markt) - Fix: Correct a regression in the fix for 67675 that broke TLS key file parsing for PKCS#8 format keys that do not specify an explicit pseudo-random function and rely on the default. This typically affects keys generated by OpenSSL 1.0.2. (markt)
- Fix:
Allow multiple operations with the same name on introspected mbeans,
fixing a regression caused by the introduction of a second
addSslHostConfig
method. (remm) - Fix: Relax the check that the HTTP Host header is consistent with the host used in the request line, if any, to make the check case insensitive since host names are case insensitive. (markt)
- Add: 68348: Add support for the partitioned attribute for cookies including session cookies. (markt)
Jasper
- Update:
The defaults for
compilerSourceVM
andcompilerTargetVM
have been updated to 21 to align with Java 21 being the minimum Java version required for Tomcat 11. (markt)
Web Applications
- Fix:
68035: Additional fix to the Manager application to enable
the deployment of a web application located in a Host's
appBase
where the web application is specified by a bare (no path) WAR or directory name as shown in the documentation. (markt)
Other
- Update: Update to the Eclipse JDT compiler 4.30. (markt)
- Update: Update Checkstyle to 10.12.7. (markt)
- Update: Update SpotBugs to 4.8.3. (markt)
- Add: Improvements to French translations. (remm)
- Add: Improvements to Japanese translations by tak7iji. (markt)
2023年12月12日 Tomcat 11.0.0-M15 (markt)
Catalina
- Fix: Background processes should not be run concurrently with lifecycle operations of a container. (remm)
- Add:
Add support for the
jakarta.servlet.request.secure_protocol
request attribute that has been added in Jakarta Servlet 6.1. This replaces the now deprecated Tomcat specific request attributeorg.apache.tomcat.util.net.secure_protocol_version
. (markt) - Add: Align behaviour with the latest addition to the Servlet 6.1 specification that requires that all HTTP error dispatches use the GET method. (markt)
- Fix: Correct unintended escaping of XML in some WebDAV responses. The XML list of support locks when provided in response to a PROPFIND request was incorrectly XML escaped. (markt)
- Fix:
68227: Ensure that
AsyncListener.onComplete()
is called ifAsyncListener.onError()
callsAsyncContext.dispatch()
. (markt) - Fix: 68228: Use a 408 status code if a read timeout occurs during HTTP request processing. Includes a test case based on code provided by adwsingh. (markt)
Coyote
- Fix: Use Java code to load certificate chain when using OpenSSL through the FFM API. (remm)
Jasper
- Code:
68119: Refactor the
CompositeELResolver
to improve performance during type conversion operations. (markt)
Web Applications
- Fix: Examples. Improve the error handling so snakes associated with a user that drops from the network are removed from the game. (markt)
Other
- Update: Update the OWB module to Apache OpenWebBeans 4.0.1. (remm)
- Fix: 68124: Migrate sample.war from javax to jakarta. (lihan)
- Update: Update UnboundID to 6.0.11. (markt)
- Update: Update Checkstyle to 10.12.5. (markt)
- Update: Update SpotBugs to 4.8.2. (markt)
- Update: Update Derby to 10.17.1. (markt)
- Add: Improvements to French translations. (remm)
- Add: Improvements to Japanese translations by tak7iji. (markt)
- Add: Improvements to Brazilian Portuguese translations by John William Vicente. (markt)
- Add: Improvements to Russian translations by usmazat and remm. (markt)
2023年11月15日 Tomcat 11.0.0-M14 (markt)
Catalina
- Fix:
67667:
TLSCertificateReloadListener
prints unreadable rendering ofX509Certificate#getNotAfter()
. (michaelo) - Update:
The status servlet included in the manager webapp can now output
statistics as JSON, using the
JSON=true
URL parameter. (remm) - Update: Optionally allow ServiceBindingPropertySource to trim a trailing newline from a file containing a property-value. (schultz)
- Update: Use Files.move instead of File.renameTo in the FarmWebDeployer to support a broader range of environments, and to give better information in the event of a failure. (schultz)
- Fix: 67793: Ensure the original session timeout is restored after FORM authentication if the user refreshes a page during the FORM authentication process. Based on a suggestion by Mircea Butmalai. (markt)
- Update:
67926:
PEMFile
prints unidentifiable string representation of ASN.1 OIDs. (michaelo) - Fix:
66875: Ensure that setting the request attribute
jakarta.servlet.error.exception
is not sufficient to trigger error handling for the current request and response. (markt) - Fix: 68054: Avoid some file canonicalization calls introduced by the fix for 65433. (remm)
- Fix:
68089: Improve performance of request attribute access for
ApplicationHttpRequest
andApplicationRequest
. (markt) - Fix: Use a 400 status code to report an error due to a bad request (e.g. an invalid trailer header) rather than a 500 status code. (markt)
- Fix:
Ensure that an
IOException
during the reading of the request triggers always error handling, regardless of whether the application swallows the exception. (markt)
Coyote
- Add:
66670: Add
SSLHostConfig#certificateKeyPasswordFile
andSSLHostConfig#certificateKeystorePasswordFile
. (michaelo) - Add:
When calling
SSLHostConfigCertificate.setCertificateKeystore(ks)
, automatically callsetCertificateKeystoreType(ks.getType())
. (markt) - Add:
Add OpenSSL integration using the FFM API rather than Tomcat Native.
OpenSSL support may be enabled by adding the
org.apache.catalina.core.OpenSSLLifecycleListener
listener on theServer
element when using Java 22 (starting with preview build 20) or later. (remm) - Fix:
67628: Clarify how the
ciphers
attribute of theSSLHostConfig
is used. (markt) - Fix:
67666: Ensure TLS connectors using PEM files either work with
the
TLSCertificateReloadListener
or, in the rare case that they do not, log a warning on Connector start. (markt) - Fix: 67675: Support a wider range of KDF and ciphers for PEM files than the combinations supported by the JVM by default. Specifically, support the OpenSSL default of HmacSHA256 and DES-EDE3-CBC. (markt)
- Fix: 67927: Reloading TLS configuration can cause the Connector to refuse new connections or the JVM to crash. (markt)
- Fix: 67938: Correct handling of large TLS client hello messages that were causing the TLS handshake to fail. (markt)
- Fix:
68026: Convert selected
MessageByte
values to String when first accessed to speed up subsequent accesses and reduce garbage collection. (markt)
Jasper
- Add: Add support for Records to expression language. (markt)
- Fix: 68068: Performance improvement for EL. Based on a suggestion by John Engebretson. (markt)
WebSocket
- Fix: Correct missing metadata in the MANIFEST of the for WebSocket client API JAR file. (markt)
Web applications
Other
- Add:
67538: Make use of Ant's
<javaversion />
task to enfore the mininum Java build version. (michaelo) - Update: Update Checkstyle to 10.12.4. (markt)
- Update: Update JaCoCo to 0.8.11. (markt)
- Update: Update SpotBugs to 4.8.0. (markt)
- Update: Update BND to 7.0.0. (markt)
2023年10月14日 Tomcat 11.0.0-M13 (markt)
Coyote
- Fix: 67670: Fix regression with HTTP compression after code refactoring. (remm)
jdbc-pool
- Fix: 67664: Correct a regression in the clean-up of unnecessary use of fully qualified class names in 11.0.0-M12 that broke the jdbc-pool. (markt)
2023年10月10日 Tomcat 11.0.0-M12 (markt)
Catalina
- Add: 65770: Provide a lifecycle listener that will automatically reload TLS configurations a set time before the certificate is due to expire. This is intended to be used with third-party tools that regularly renew TLS certificates. (markt)
- Fix: Fix handling of an error reading a context descriptor on deployment. (remm)
- Fix: Fix rewrite rule qsd (query string discard) being ignored if qsa was also use, while it should instead take precedence. (remm)
- Fix: 67472: Send fewer CORS-related headers when CORS is not actually being engaged. (schultz)
- Add:
Improve handling of failures within
recycle()
methods. (markt)
Coyote
- Fix:
67198: Ensure that the AJP connector attribute
tomcatAuthorization
takes precedence over thetomcatAuthentication
attribute when processing anauth_type
attribute received from a proxy server. (markt) - Fix:
67235: Fix a
NullPointerException
when anAsyncListener
handles an error with a dispatch rather than a complete. (markt) - Fix: When an error occurs during asynchronous processing, ensure that the error handling process is only triggered once per asynchronous cycle. (markt)
- Fix: Fix logic issue trying to match no argument method in IntropectionUtil. (remm)
- Fix: Improve thread safety around readNotify and writeNotify in the NIO2 endpoint. (remm)
- Fix: Avoid rare thread safety issue accessing message digest map. (remm)
- Fix: Improve statistics collection for upgraded connections under load. (remm)
- Update:
PushBuilder
has been deprecated in line with the changes for the Servlet 6.1 specification. It will be replaced in a future Tomcat 11 milestone with support for 103 early hints. (markt) - Update:
Remove support for HTTP/2 server push. Calls to
newPushBuilder()
will always returnnull
. (markt) - Fix: Align validation of HTTP trailer fields with standard fields. (markt)
- Fix: Improvements to HTTP/2 overhead protection. (markt)
Jasper
- Fix: 67080: Improve performance of EL expressions in JSPs that use implicit objects. Based on suggestions by John Engebretson, Anurag Dubey and Christopher Schultz. (markt)
Other
- Update: Update the internal fork of Apache Commons FileUpload to 7a8c324 (2023年09月16日, 1.x-SNAPSHOT). Due to significant refactoring in the 2.x branch requiring additional Commons IO dependencies, Tomcat has switched to tracking the 1.x branch. (markt)
- Add:
Add the
Bundle-License
header to the JAR manifest for all Tomcat JARs. (markt) - Update: Update to the Eclipse JDT compiler 4.29. (markt)
- Update: Update UnboundID to 6.0.10. (markt)
- Update: Update Checkstyle to 10.12.3. (markt)
- Update: Update Tomcat Native to 2.0.6. (markt)
- Update: Update Commons Pool to 2.12.0. (markt)
- Fix: 67611: Correct the download link in BUILDING.txt. (lihan)
- Add: Improvements to French translations. (remm)
- Add: Improvements to Japanese translations by tak7iji. (markt)
- Add: Improvements to Russian translations by usmazat. (markt)
2023年08月25日 Tomcat 11.0.0-M11 (markt)
Catalina
- Fix:
If an application or library sets both a non-500 error code and the
jakarta.servlet.error.exception
request attribute, use the provided error code during error page processing rather than assuming an error code of 500. (markt) - Fix: Update code comments and Tomcat output to use MiB for 1024 * 1024 bytes and KiB for 1024 bytes rather than MB and kB. (martk)
- Add:
Update the HTTP parameter handling to align with the changes in the
Jakarta Servlet 6.1 API Javadoc for the
ServletRequest
methods used to obtain request parameters. Invalid parameters and/or exceeding parameter size and/or quantity limits now trigger exceptions. As a consequence, theFailedRequestFilter
has been removed. (markt) - Fix: Avoid protocol relative redirects in FORM authentication. (markt)
Web applications
- Fix: Documentation. Update documentation to use MiB for 1024 * 1024 bytes and KiB for 1024 bytes rather than MB and kB. (martk)
Other
- Add: Improvements to Chinese translations. (lihan)
- Add: Improvements to French translations. (remm)
- Add: Improvements to Japanese translations by tak7iji. (markt)
2023年08月14日 Tomcat 11.0.0-M10 (markt)
Catalina
- Fix:
Fix potential database connection leaks in
DataSourceUserDatabase
identified by Coverity Scan. (markt) - Fix:
Make parsing of
ExtendedAccessLogValve
patterns more robust. (markt) - Fix: Fix failure trying to persist configuration for an internal credential handler. (remm)
- Fix: 66680: When serializing a session during the session presistence process, do not log a warning that null Principals are not serializable. Pull request #638 provided by tsryo. (markt)
- Fix: 66822: Use the same naming format in log messages for Connector instances as the associated ProtocolHandler instance. (markt)
- Fix:
The parts count should also lower the actual
maxParameterCount
used for parsing parameters if parts are parsed first. (remm)
Coyote
- Fix: Refactor blocking reads and writes for the NIO connector to remove code paths that could allow a notification from the Poller to be missed resuting in a timeout rather than the expected read or write. (markt)
- Fix: Refactor waiting for an HTTP/2 stream or connection window update to handle spurious wake-ups during the wait. (markt)
- Update: Improve extensibility of endpoints for socket channel creation and TLS. Pull request #639 provided by Marco Fargetta. (remm)
- Fix:
Correct a regression introduced in 11.0.0-M9 and use the correct
constant when constructing the default value for the
certificateKeystoreFile
attribute of anSSLHostConfigCertificate
instance. (markt) - Code: Refactor HTTP/2 implementation to reduce pinning when using virtual threads. (markt)
- Fix:
Pass through ciphers referring to an OpenSSL profile, such as
PROFILE=SYSTEM
instead of producing an error trying to parse it. (remm) - Fix:
66841: Ensure that
AsyncListener.onError()
is called after an error during asynchronous processing with HTTP/2. (markt) - Fix: 66842: When using asynchronous I/O (the default), include DATA frames when calculating the HTTP/2 overhead count to ensure that connections are not prematurely terminated. (markt)
- Fix: Correct a race condition that could cause spurious RST messages to be sent after the response had been written to an HTTP/2 stream. (markt)
WebSocket
- Fix:
66681: Fix a
NullPointerException
when flushing batched messages with compression enabled usingpermessage-deflate
. (markt)
jdbc-pool
- Fix:
Fix the
releaseIdleCounter
does not increment when testAllIdle releases them. Pull request #241 provided by Arun Chaitanya Miriappalli (lihan) - Fix:
Fix the
ConnectionState
state will be inconsistent with actual state on the connection when an exception occurs while writing. Pull request #643 provided by Wenjun Xiao. (lihan)
Other
- Update: Update NSIS to 3.09. (markt)
- Update: Update Checkstyle to 10.12.2. (markt)
- Add: Improvements to French translations. (remm)
- Add: Improvements to Japanese translations. Contributed by tak7iji and Shirayuking. (markt)
- Fix:
66829: Fix quoting so users can use the
_RUNJAVA
environment variable as intended on Windows when the path to the Java executable contains spaces. (markt) - Fix: 66834: Correct the OSGi contract references in the manifest files to refer to the Jakarta EE contract names rather than the Java EE contract names. (markt)
- Update: Update Tomcat Native to 2.0.5. (markt)
2023年07月10日 Tomcat 11.0.0-M9 (markt)
Other
- Fix: Correct properties for JSign dependency. (rjung)
not released Tomcat 11.0.0-M8 (markt)
Catalina
- Add:
59232: Add
org.apache.catalina.core.ContextNamingInfoListener
, a listener which creates context naming information environment entries. (michaelo) - Add:
66665: Add
org.apache.catalina.core.PropertiesRoleMappingListener
, a listener which populates the context's role mapping from a properties file. (michaelo) - Fix:
Fix an edge case where intra-web application symlinks would be followed
if the web applications were deliberately crafted to allow it even when
allowLinking
was set tofalse
. (markt) - Update:
Add utlity config file resource lookup on
Context
to allow looking up resources from the webapp (prefixed withwebapp:
) and make the resource lookup API more visible. (remm)
Coyote
- Fix:
66627: Restore the documented behaviour of
MessageBytes.getType()
that it returns the type of the original content rather than reflecting the most recent conversion. (markt) - Fix: 66635: Correct certificate logging on start-up so it differentiates between keystore based keys/certificates and PEM file based keys/certificates and logs the relevant information for each. (markt)
Jasper
- Add:
Add
java.util.Optional
support via thejakarta.el.OptionalELResolver
to Tomcat's implementation of the Jakarta EL API to align with the latest proposals for the Jakarta EL 6.0 API. (markt) - Add:
Add support for specifying Java 22 (with the value
22
) as the compiler source and/or compiler target for JSP compilation. If used with an Eclipse JDT compiler version that does not support these values, a warning will be logged and the default will used. (markt)
WebSocket
- Fix: Improve handling of error conditions for the WebSocket server, particularly during Tomcat shutdown. (markt)
- Fix:
Correct a regression in the fix for 66574 that meant the
WebSocket session could return false for
onOpen()
before theonClose()
event had been completed. (markt) - Add:
Update the WebSocket API provided by Tomcat to align with the latest
proposals from the Jakarta WebSocket project and make the WebSocket
Session
instance available viaSendResult
. (markt)
Web applications
- Add:
Documentation. Expand the security guidance to cover the embedded use
case and add notes on the uses made of the
java.io.tmpdir
system property. (markt) - Fix: 66662: Documentation. Fix a typo in the name of the algorithms attribute in the configuration section for the Digest authentication valve. Pull request #629 provided by gohilmca. (markt)
Other
- Add: Improvements to French translations. (remm)
- Add: Include the Windows specific binary distributions in the files uploaded to Maven Central. (markt)
- Update: Remove support for running Tomcat on 32-bit Windows operating systems as Java 21 is not available for that platform. (markt)
- Add: Improvements to Japanese translations. Contributed by tak7iji. (markt)
- Update: Update to the Eclipse JDT compiler 4.28. (markt)
- Update: Update UnboundID to 6.0.9. (markt)
- Update: Update Checkstyle to 10.12.1. (markt)
- Update: Update BND to 6.4.1. (markt)
- Update: Update JSign to 5.0. (markt)
2023年06月08日 Tomcat 11.0.0-M7 (markt)
General
- Update: Increase the minimum supported Java version to Java 21. (markt)
Catalina
- Code:
Move the management of the utility executor from the
init()
/destroy()
methods of components to thestart()
/stop()
methods. (markt) - Add: Add RateLimitFilter which can be used to mitigate DoS and Brute Force attacks. (isapir)
- Code:
Remove support for using the
^
character to separate the WAR file and WAR contents in Tomcat's custom WAR URL handler. The current default separator character of*
remains unchanged. (markt) - Add:
Add
org.apache.catalina.core.StandardVirtualThreadExecutor
, a virtual thread based executor that may be used with one or more Connectors to process requests received by those Connectors using virtual threads. (markt) - Fix:
66513: Add a per session Semaphore to the
PersistentValve
that ensures that, within a single Tomcat instance, there is no more than one concurrent request per session. Also expand the debug logging to include whether a request bypasses the Valve and the reason if a request fails to obtain the per session Semaphore. (markt) - Fix: 66609: Ensure that the default servlet correctly escapes file names in directory listings when using XML output. Based on pull request #621 by Alex Kachanov. (markt)
- Add: 66618: Add a numeric last modified field to the XML directory listings produced by the default servlet to enable sorting in the XSLT. Pull request #622 by Alex Kachanov. (markt)
- Fix: 66621: Attempts to lock a collection with WebDAV may incorrectly fail if a child collection has an expired lock. (markt)
- Fix:
66622: Remove the
xssProtectionEnabled
setting from theHttpHeaderSecurityFilter
as support for the associated HTTP header has been removed from all major browsers. (markt)
Coyote
- Fix: 66602: not sending WINDOW_UPDATE when dataLength is ZERO on call SwallowedDataFramePayload. Pull request #619 by ledefe. (lihan)
Other
- Update: Update to Commons Daemon 1.3.4. (markt)
- Add: Improvements to French translations. (remm)
- Update: Update Checkstyle to 10.12.0. (markt)
- Update: Update the packaged version of the Apache Tomcat Native Library to 2.0.4 to pick up the Windows binaries built with with OpenSSL 3.0.9. (markt)
2023年05月09日 Tomcat 11.0.0-M6 (markt)
Catalina
- Fix:
66567: Fix missing
IllegalArgumentException
after the Tomcat code was converted to using URI instead of URL. (remm) - Fix:
Escape timestamp output in
AccessLogValve
if aSimpleDateFormat
is used which contains verbatim characters that need escaping. (rjung) - Update:
Change output of vertical tab in
AccessLogValve
from\v
to\u000b
. (rjung) - Update:
Improve performance of escaping in
AccessLogValve
roughly by a factor of two. (rjung) - Update:
Improve
JsonAccessLogValve
: support more patterns like for headers and attributes. Those will be logged as sub objects. (rjung) - Fix: #613: Fix possible partial corrupted file copies when using file locking protection or the manager servlet. Submitted by Jack Shirazi. (remm)
Coyote
- Add:
Add support for a new character set,
gb18030-2022
- introduced in Java 21, to the character set caching mechanism. (markt) - Fix: Fix an edge case in HTTP header parsing and ensure that HTTP headers without names are treated as invalid. (markt)
- Update:
Remove support for the HTTP Connector settings
rejectIllegalHeader
andallowHostHeaderMismatch
. These are now hard-coded to the previous defaults. (markt) - Fix: 66591: Fix a regression introduced in the fix for 66512 that meant that an AJP Send Headers was not sent for responses where no HTTP headers were set. (markt)
Jasper
- Fix: 66582: Account for EL having stricter requirements for static imports than JSPs when adding JSP static imports to the EL context. (markt)
WebSocket
- Fix:
66574: Refactor WebSocket session close to remove the lock on
the
SocketWrapper
which was a potential cause of deadlocks if the application code used simulated blocking. (markt) - Fix: 66575: Avoid unchecked use of the backing array of a buffer provided by the user in the compression transformation. (remm)
- Fix: Improve exception handling when flushing batched messages during WebSocket session close. (markt)
- Fix:
66581: Update
AsyncChannelGroupUtil
to align it with the current defaults for AsynchronousChannelGroup. Pull request #612 by Matthew Painter. (markt)
Other
- Add: Improvements to French translations. (remm)
- Add: Improvements to Chinese translations. (lihan)
- Update: Update Checkstyle to 10.10.0. (markt)
- Update: Update Jacoco to 0.8.10. (markt)
- Update: Update the packaged version of the Tomcat Migration Tool for Jakarta EE to 1.0.7. (markt)
2023年04月19日 Tomcat 11.0.0-M5 (markt)
Catalina
- Add:
Add a
doPatch
method toHttpServlet
to provide support for the HTTPPATCH
method as defined in RFC 5789. This is one of the changes in the Servlet 6.1 API. (markt) - Fix:
65995: Implement RFC 9239 and use
text/javascript
as the media type for JavaScript rather thanapplication/javascript
. (markt) - Code:
Tomcat no longer sets the
java.protocol.handler.pkgs
system property when starting. Users are now free to configure this property if they wish. (markt) - Add: Add an access log valve that uses a json format. Based on pull request #539 provided by Thomas Meyer. (remm)
- Add:
Harden the FORM authentication process against DoS attacks by using a
reduced session timeout if the FORM authentication process creates a
session. The duration of this timeout is configured by the
authenticationSessionTimeout
attribute of the FORM authenticator. (markt) - Add: Implement the new Servlet API methods that provide additional control when sending a redirect to the client. (markt)
- Add:
Update Digest authentication support to align with RFC 7616. This adds a
new configuration attribute,
algorithms
, to theDigestAuthenticator
with a default ofSHA-256,MD5
. (markt) - Update:
Reduce the default value of
maxParameterCount
from 10,000 to 1,000. (markt) - Fix:
66527: Correct the Javadoc for the
Tomcat.addWebapp()
methods that incorrectly stated that thedocBase
parameter could be a relative path. (markt) - Fix: 66524 Correct eviction ordering in WebResource cache to be LRU as intended. (schultz)
- Update:
Add support code for custom user attributes in
RealmBase
. Based on code from #473 by Carsten Klein. (remm) - Fix:
Expand the set of HTTP request headers considered sensitive that should
be skipped when generating a response to a
TRACE
request. This aligns with the current draft of the Servlet 6.1 specification. (markt) - Fix:
66541: Improve handling for cached resources for resources
that use custom URL schemes. The scheme specific
equals()
andhashCode()
algorithms, if present, will now be used for URLs for these resources. This addresses a potential performance issue with some OSGi custom URL schemes that can trigger potentially slow DNS lookups in some configurations. Based on a patch provided by Tom Whitmore. (markt) - Fix:
When using a custom session manager deployed as part of the web
application, avoid
ClassNotFoundException
s when validating session IDs extracted from requests. (markt) - Fix:
66543: Give
StandardContext#fireRequestDestroyEvent
its own log message. (fschumacher) - Fix: 66554: Initialize Random during server initialization to avoid possible JVM thread creation in the webapp context on some platforms. (remm)
- Update:
Make the server utility executor available to webapps using a Servlet
context attribute named
org.apache.tomcat.util.threads.ScheduledThreadPoolExecutor
. (remm)
Coyote
- Fix: JSON filter should support specific escaping for common special characters as defined in RFC 8259. Based on code submitted by Thomas Meyer. (remm)
- Fix:
66511: Fix
GzipOutputFilter
(used for compressed HTTP responses) when used with direct buffers. Patch suggested by Arjen Poutsma. (markt) - Fix: 66512: Align AJP handling of invalid HTTP response headers (they are now removed from the response) with HTTP. (markt)
- Fix:
66530: Correct a regression in the fix for bug
66442 that meant that streams without a response body did not
decrement the active stream count when completing leading to
ERR_HTTP2_SERVER_REFUSED_STREAM
for some connections. (markt) - Fix:
Remove use of deprecated classes in the
javax.security.cert
package. Pull request #608 provided by Eirik Bjorsnos. (markt)
Jasper
- Fix:
Fix bug that meant some instances of coercing a
LambdaExpression
to a functional interface invocation failed. (markt) - Fix: 66536: Fix parsing of tag files that meant that tag directives could be ignored for some tag files. (markt)
- Add:
Align the EL implementation with the latest changes to the Jakarta EL
specification and add support for the length attribute to the
ArrayELResolver
. (markt)
Cluster
- Fix:
66535: Redefine the
maxValidTime
attribute ofFarmWarDeployer
to be the maximum time allowed between receiving parts of a transferred file before the transfer is cancelled and the associated resources cleaned-up. A new warning message will be logged if the file transfer is cancelled. (markt)
WebSocket
- Fix: 66508: When using WebSocket with NIO2, avoid waiting for a timeout before sending the close frame if an I/O error occurs during a write. (markt)
- Fix:
66548: Expand the validation of the value of the
Sec-Websocket-Key
header in the HTTP upgrade request that initiates a WebSocket connection. The value is not decoded but it is checked for the correct length and that only valid characters from the base64 alphabet are used. (markt)
Web applications
- Fix: 66542: Documentation. Update the JNDI documentation to replace references to JavaMail with references to Jakarta Mail. (markt)
Other
- Add: Improvements to French translations. (remm)
- Add: Improvements to Japanese translations. Contributed by Shirayuking and tak7iji. (markt)
- Add: Improvements to Chinese translations. Contributed by totoo. (markt)
- Code:
Refactor code using
MD5Encoder
to useHexUtils.toHexString()
. (markt) - Fix:
66507: Fix a bug that
$JAVA_OPTS
is not passed to the jvm incatalina.sh
when callingversion
. Patch suggested by Eric Hamilton. (lihan) - Update: Update the internal fork of Commons DBCP to f131286 (2023年03月08日, 2.10.0-SNAPSHOT). This corrects a regression introduced in 11.0.0-M2. (markt)
- Fix:
Improve the error messages if
JRE_HOME
orJAVA_HOME
are not set correctly. On windows, align the handling ofJRE_HOME
andJAVA_HOME
for the start-up scripts and the service install script. (markt) - Update: Update to the Eclipse JDT compiler 4.27. (markt)
- Update: Update UnboundID to 6.0.8. (markt)
- Update: Update Checkstyle to 10.9.3. (markt)
- Update: Update Jacoco to 0.8.9. (markt)
- Fix: Enhance PEMFile to load from an InputStream. Patch provided by Romain Manni-Bucau. (schultz)
2023年03月06日 Tomcat 11.0.0-M4 (markt)
General
- Fix:
Fix a bug that memory allocation is larger than limit in
SynchronizedStack
to reduce memory footprint. (lihan)
Catalina
- Add:
Add support for
txt:
andrnd:
rewrite map types from mod_rewrite. Based on a pull request #591 provided by Dimitrios Soumis. (remm) - Update: Provide a more appropriate response (501 rather than 400) when rejecting an HTTP request using the CONNECT method. (markt)
- Fix: 66491: Revert the switch to using the ServiceLoader mechanism to load the custom URL protocol handlers that Tomcat uses. The original system property based approach has been restored. (markt)
Coyote
- Add: Add a check for the validity of the scheme pseudo-header in HTTP/2. (markt)
- Fix: 66482: Restore inline state after async operation in NIO2, to account the fact that unexpected exceptions are sometimes thrown by the implementation. Patch submitted by zhougang. (remm)
Jasper
- Add:
Provide an implementation of the sub-set of JavaBeans support that does
not depend on the
java.beans
package. This for use by Expression Language when thejava.desktop
module (which is where thejava.beans
package resides) is not available. (markt)
2023年02月23日 Tomcat 11.0.0-M3 (markt)
General
- Update: Increase the minimum supported Java version to Java 17. Note that Jakarta EE 11 permits a minimum Java version of 21. The minimum Java version for Tomcat 11 may be increased to Java 21 before the first stable release. (markt)
Catalina
- Fix: Allow a Valve to access cookies from a request that cannot be mapped to a Context. (markt)
- Add:
Implement the new Servlet API methods for setting character encodings
that accept
Charset
objects. (markt) - Update: The default HEAD response no longer includes some HTTP header fields where the value is determined only while generating the content as per section 9.3.2 of RFC 9110. (markt)
- Fix: 66438: Correct names of Jakarta modules in JPMS metadata. (markt)
- Update: Switch to using the ServiceLoader mechanism to load the custom URL protocol handlers that Tomcat uses. (markt)
- Fix:
Switch to using
LongAdder
rather thanAtomicInteger
to track request count and error count for servlets. (markt) - Fix:
Implement the clarification from the Jakarta Servlet project that
Servlets mapped to the context root should be mapped for requests to the
context root with or without the trailing
/
. (markt) - Fix:
Implement the clarification from the Jakarta Servlet project that
calling
ServletOutputStream.close()
on a stream in non-blocking mode returns immediately with the stream effectively closed and any data remaining to be written is written in the background by the container. (markt) - Fix: Avoid possible ISE when scanning from bad JAR URLs, to restore the previous behavior following the removal of Java 9+ reflection code which caught the ISE. (remm)
- Fix:
Refactor uses of
String.replaceAll()
to useString.replace()
where regular expressions where not being used. Pull request #581 provided by Andrei Briukhov. (markt) - Add: Add error report valve that allows redirecting to of proxying from an external web server. Based on code and ideas from pull request #506 provided by Max Fortun. (remm)
- Add:
66470: Add the Shared Address Space defined by RFC 6598
(100.64.0.0/10) to the regular expression used to identify internal
proxies for the
RemoteIpFilter
andRemoteIpValve
. (markt) - Fix:
66471: Fix JSessionId secure attribute missing When
RemoteIpFilter
determines that this request was submitted via a secure channel. (lihan) - Add:
Add the additional HTTP status code constants to
HttpServletResponse
defined by the Jakarta Servlet project for the Servlet 6.1 API. (markt) - Fix:
Implement the clarification from the Jakarta Servlet project that
calling one of the
HttpServletResponse
methods for setting HTTP header values withnull
as the new header value removes any existing header of that name. (markt)
Coyote
- Add: Log basic information for each configured TLS certificate when Tomcat starts. (markt)
- Fix: 66442: When an HTTP/2 response must not include a body, ensure that the end of stream flag is set on the headers frame and that no data frame is sent. (markt)
- Fix:
Fix a bug that prevented HTTP/2 connections from timing out when using
a Connector configured with
useAsyncIO=true
(the default). (markt) - Add:
Provided dedicated loggers
(
org.apache.tomcat.util.net.NioEndpoint.certificate
/org.apache.tomcat.util.net.Nio2Endpoint.certificate
) for logging of configured TLS certificates. (markt)
Jasper
Web applications
Other
- Update: Update BND to 6.4.0. (markt)
- Update: Remove support for starting Tomcat under a SecurityManager. (markt)
- Add: Improvements to Chinese translations. (lihan)
- Add: Improvements to French translations. (remm)
- Add: Improvements to Japanese translations. Contributed by tak7iji. (markt)
- Add: Improvements to Korean translations. (woonsan)
- Update: Update the packaged version of the Apache Tomcat Native Library to 2.0.3 to pick up the Windows binaries built with with OpenSSL 3.0.8. (markt)
not released Tomcat 11.0.0-M2 (markt)
Catalina
- Add:
Update the
ServletInputStream
andServletOuputStream
classes in the Servlet API to align with the recent updates in the Jakarta Servlet specification to support reading and writing withByteBuffer
s. The changes also clarified various aspects of the Servlet non-blocking API. (markt) - Fix:
66388: Correct a regression in the refactoring that replaced
the use of the
URL
constructors. The regression broke lookups for resources that contained one or more characters in their name that required escaping when used in a URI path. (markt) - Fix:
66392: Change the default value of
AccessLogValve
's file encoding to UTF-8 and update documentation. (lihan) - Fix:
66393: Align
ExtendedAccessLogValve
's x-P(XXX) with the documentation. (lihan) - Fix: Remove JAX-RPC support which was removed from the Jakarta EE platform for Jakarta EE 9. (markt)
Coyote
- Fix: Update Cookie parsing and handling to treat the quotes in a quoted cookie value as part of the value as required by RFC 6265 and explicitly clarified in RFC 6265bis. (markt)
- Add: Add an RFC 8941 structured field parser. (markt)
- Add:
Add a parser for the
priority
HTTP header field defined in RFC 9218. (markt) - Fix:
When resetting an HTTP/2 stream because the final response has been
generated before the request has been fully read, use the HTTP/2 error
code
NO_ERROR
so that client does not discard the response. Based on a suggestion by Lorenzo Dalla Vecchia. (markt) - Fix: 66385: Correct a bug in HTTP/2 where a non-blocking read for a new frame with the NIO2 connector was incorrectly made using the read timeout leading to unexpected stream closure. (markt)
Jasper
- Fix:
66370: Change the default of the
org.apache.el.GET_CLASSLOADER_USE_PRIVILEGED
system property totrue
unless the EL library is running on Tomcat in which case the default remainsfalse
as the EL library is already called from within a privileged block and skipping the unnecessary privileged block improves performance. (markt) - Add:
Add support for specifying Java 21 (with the value
21
) as the compiler source and/or compiler target for JSP compilation. If used with an Eclipse JDT compiler version that does not support these values, a warning will be logged and the default will used. (markt)
Other
- Update: Update the packaged version of the Apache Tomcat Migration Tool for Jakarta EE to 1.0.6. (markt)
- Update: Update the internal fork of Apache Commons BCEL to 2ee2bff (2023年01月03日, 6.7.1-SNAPSHOT). (markt)
- Update: Update the internal fork of Apache Commons Codec to 3eafd6c (2023年01月03日, 1.16-SNAPSHOT). (markt)
- Update: Update the internal fork of Apache Commons FileUpload to 34eb241 (2023年01月03日, 2.0-SNAPSHOT). (markt)
- Update: Update the internal fork of Apache Commons DBCP to f131286 (2023年01月03日, 2.10.0-SNAPSHOT). (markt)
- Add: Improvements to Japanese translations. Contributed by Shirayuking. (markt)
- Add: Improvements to Portuguese translations. Contributed by Guilherme Custódio. (markt)
- Update: Update to the Eclipse JDT compiler 4.26. (markt)
- Update: Update Checkstyle to 10.6.0. (markt)
- Update: Update Unboundid to 6.0.7. (markt)
- Update: Update SpotBugs to 4.7.3. (markt)
2022年12月05日 Tomcat 11.0.0-M1 (markt)
General
- Code: This release contains all of the changes up to and including those in Apache Tomcat 10.1.1 plus the additional changes listed below. (markt)
Catalina
- Fix:
66175: Change the default character set used by the
BasicAuthenticator
from ISO-8859-1 to UTF-8. (markt) - Add:
66209: Add a configuration option to allow bloom filters used
to index JAR files to be retained for the lifetime of the web
application. Prior to this addition, the indexes were always flushed by
the periodic calls to
WebResourceRoot.gc()
. As part of this addition, configuration of archive indexing moves fromContext
toWebResourceRoot
. Based on a patch provided by Rahul Jaisimha. (markt) - Fix:
66330: Correct a regression introduced when fixing
62897 that meant any value configured for
skipMemoryLeakChecksOnJvmShutdown
on theContext
was ignored and the default was always used. (markt) - Fix:
66331: Fix a regression in refactoring for
Stack
on theSystemLogHandler
which caught incorrect exception. (lihan) - Fix:
66338: Fix a regression that caused a nuance in refactoring
for
ErrorReportValve
. (lihan) - Fix:
Escape values used to construct output for the
JsonErrorReportValve
to ensure that it always outputs valid JSON. (markt) - Fix:
Correct the default implementation of
HttpServletRequest.isTrailerFieldsReady()
to returntrue
so it is consistent with the default implementation ofHttpServletRequest.getTrailerFields()
and with the Servlet API provided by the Jakarta EE project. (markt) - Fix:
Refactor
WebappLoader
so it only has a runtime dependency on the migration tool for Jakarta EE if configured to use the converter as classes are loaded. (markt) - Fix: Improve the behavior of the credential handler attribute that is set in the Servlet context so that it actually reflects what is used during authentication. (remm)
- Fix:
66359: Update javadoc for RemoteIpValve and RemoteIpFilter with
correct
protocolHeader
default value of "X-Forwarded-Proto". (lihan) - Add:
Add support for the new attribute for error dispatches
jakarta.servlet.error.query_string
. (markt) - Update:
Update
ignoreAnnotation
attribute onContext
to dissociate it frommetadata-complete
. (remm)
Coyote
- Fix: Correct the date format used with the expires attribute of HTTP cookies. A single space rather than a single dash should be used to separate the day, month and year components to be compliant with RFC 6265. (markt)
- Add: Include the name of the current stream state in the error message when a stream is cancelled due to an attempt to write to the stream when it is in a state that does not permit writes. (markt)
- Code:
NIO writes never return -1 so refactor
CLOSED_NIO_CHANNEL
not to do so and remove checks for this return value. Based on #562 by tianshuang. (markt) - Code:
Remove unnecessary code that exposed the
asyncTimeout
to components that never used it. (markt) - Fix:
Ensure that all
MessageBytes
conversions to byte arrays are valid for the configured character set and throw an exception if not. (markt) - Fix: When an HTTP/2 stream was reset, the current active stream count was not reduced. If enough resets occurred on a connection, the current active stream count limit was reached and no new streams could be created on that connection. (markt)
Jasper
- Fix:
66294: Make the use of a privileged block to obtain the
thread context class loader added to address 62080 optional
and disabled by default. This is now controlled by the
org.apache.el.GET_CLASSLOADER_USE_PRIVILEGED
system property. (markt) - Fix: 66317: Fix for Lambda coercion security manager missing privileges. Based on pull request #557 by Isaac Rivera Rivas (lihan)
- Fix: 66325: Fix concurrency issue in evaluation of expression language containing lambda expressions. (markt)
- Add:
Update the
ErrorData
class in the JSP API to align with the recent changes in the Jakarta Pages specification to support the new error dispatch attributejakarta.servlet.error.query_string
.
Web applications
- Fix: 66348: Update the JARs listed in the class loader documentation and note which ones are optional. (markt)
- Fix: Documentation. Replace references in the application developer's guide to CVS with more general references to a source code control system. (markt)
jdbc-pool
Other
- Update: Update to Commons Daemon 1.3.3. (markt)
- Fix:
66323: Move module start up parameters from
JDK_JAVA_OPTIONS
toJAVA_OPTS
now that the minimum Java version is 11 and these options are always required. (markt) - Add: Improvements to Chinese translations. Contributed by DigitalCat and lihan. (markt)
- Add: Improvements to French translations. Contributed by Mathieu Bouchard. (markt)
- Add: Improvements to Japanese translations. Contributed by Shirayuking and tak7iji. (markt)
- Add: Improvements to Korean translations. (markt)
- Add: Improvements to Spanish translations. (markt)
- Fix: Correct a regression in the removal of the APR connector that broke Graal native image support. Pull request #564 provided by Sébastien Deleuze. (markt)
- Update: Update the packaged version of the Apache Tomcat Native Library to 2.0.2 to pick up the Windows binaries built with with OpenSSL 3.0.7. (markt)
- Update: Update the packaged version of the Apache Tomcat Migration Tool for Jakarta EE to 1.0.5. (markt)
- Code: Refactor code base to replace use of URL constructors. While they are deprecated in Java 20 onwards, the reasons for deprecation are valid for all versions so move away from them now. (markt)
- Code: Refine the Tomcat native image metadata to avoid including unintended non-Tomcat resources. Pull request #569 provided by Sébastien Deleuze. (markt)
- Update: Update the internal fork of Apache Commons BCEL to b015e90 (2022年11月28日, 6.7.0-RC1). (markt)
- Update: Update the internal fork of Apache Commons Codec to ae32a3f (2022年11月29日, 1.16-SNAPSHOT). (markt)
- Update: Update the internal fork of Apache Commons FileUpload to aa8eff6 (2022年11月29日, 2.0-SNAPSHOT). (markt)