Changelog

Tomcat 9.0.0.M8

Coyote

Remove accidentally committed debug code. (markt)

not released Tomcat 9.0.0.M7

Catalina

  • Fix: RMI Target related memory leaks are avoidable which makes them an application bug that needs to be fixed rather than a JRE bug to work around. Therefore, start logging RMI Target related memory leaks on web application stop. Add an option that controls if the check for these leaks is made. Log a warning if running on Java 9 with this check enabled but without the command line option it requires. (markt)
  • Fix: Ensure NPE will not be thrown during deployment when scanning jar files without MANIFEST.MF file. (violetagg)
  • Code: Remove the clearReferencesStatic option from StandardContext. It was known to cause problems with some libraries (such as log4j) and was only linked to suspected memory leaks rather than known memory leaks. It had been disabled by default with no increase in the reports of memory leaks for some time. (markt)
  • Fix: 59604: Correct the assumption made in the URL decoding that the default platform encoding is always compatible with ISO-8859-1. This assumption is not always valid, e.g. on z/OS. (markt)
  • Fix: 59608: Skip over any invalid Class-Path attribute from JAR manifests. Log errors at debug level due to many bad libraries. (remm)
  • Fix: Fix error message when failed to register MBean. (kfujino)
  • Fix: 59655: Configure the cookie name validation to use RFC6265 rules by default to align it with the default cookie parser. Document the impact system properties have on cookie name validation. (mark)

Coyote

  • Fix: Ensure that requests with HTTP method names that are not tokens (as required by RFC 7231) are rejected with a 400 response. (markt)
  • Fix: When an asynchronous request is processed by the AJP connector, ensure that request processing has fully completed before starting the next request. (markt)
  • Fix: Improve handling of HTTP/2 stream resets. (markt)
  • Add: 58750: The HTTP Server header is no longer set by default. A Server header may be configured by setting the server attribute on the Connector. A new Connector attribute, serverRemoveAppProvidedValues may be used to remove any Server header set by a web application. (markt)
  • Fix: 59564: Correct offset when reading into HTTP/2 input buffer that could cause problems reading request bodies. (violetagg/markt)
  • Fix: Modify the handling of read/write timeouts so that the appropriate error handling (ReadListener.onError(), WriteListener.onError() or AsycnListener.onError()) is called. (markt)
  • Fix: If an async dispatch results in the completion of request processing, ensure that any remaining request body is swallowed before starting the processing of the next request else the remaining body may be read as the start of the next request leading to a 400 response. (markt)

Jasper

  • Fix: 59567: Fix NPE scanning webapps for TLDs when an exploded JAR has an empty WEB-INF/classes/META-INF folder. (remm)
  • Fix: Fix a memory leak in the expression language implementation that caused the class loader of the first web application to use expressions to be pinned in memory. (markt)
  • Fix: 59654: Improve error message when attempting to use a TLD file from an invalid location. Patch provided by Huxing Zhang. (markt)

WebSocket

  • Fix: 59659: Fix possible memory leak in WebSocket handling of unexpected client disconnects. (markt)

Web applications

  • Fix: 58891: Update the SSL how-to. Based on a suggestion by Alexander Kjäll. (markt)

Extras

  • Code: 58588: Remove the JULI extras package from the distribution. It was onyl useful for switching Tomcat's internal logging to log4j 1.2.x and that version of log4j is no longer supported. No additional Tomcat code is required if switching Tomcat's internal logging to log via log4j 2.x. (markt)

jdbc-pool

  • Fix: Fix a memory leak with the pool cleaner thread that retained a reference to the web application class loader for the first web application to use a connection pool. (markt)

Other

  • Update: Update the internal fork of Commons DBCP 2 to r1743696 (2.1.1 plus additional fixes). (markt)
  • Update: Update the internal fork of Commons Pool 2 to r1743697 (2.4.2 plus additional fixes). (markt)
  • Update: Update the internal fork of Commons File Upload to r1743698 (1.3.1 plus additional fixes). (markt)
  • Code: Use UTF-8 with a standard prolog for all XML files. (markt)
  • Fix: 58626: Add support for a new environment variable (USE_NOHUP) that causes nohup to be used when starting Tomcat. It is disabled by default except on HP-UX where it is enabled by default since it is required when starting Tomcat at boot on HP-UX. (markt)

2016-05-16 Tomcat 9.0.0.M6

Catalina

  • Fix: Ensure that annotated web components packed in web fragments will be processed when unpackWARs is enabled. (violetagg)

not released Tomcat 9.0.0.M5

Catalina

  • Fix: 48922: Apply a very small performance improvement to the date formatting in Tomcat's internal request object. Based on a patch provided by Ondrej Medek. (markt)
  • Fix: 59206: Ensure NPE will not be thrown by o.a.tomcat.util.file.ConfigFileLoader when catalina.base is not specified. (violetagg)
  • Fix: 59217: Remove duplication in the recycling of the path in o.a.tomcat.util.http.ServerCookie. Patch is provided by Kyohei Nakamura. (violetagg)
  • Fix: Fixed possible NPE in o.a.catalina.loader.WebappClassLoaderBase.getResourceAsStream (violetagg)
  • Fix: 59213: Async dispatches should be based off a wrapped request. (remm)
  • Fix: Ensure that javax.servlet.ServletRequest and javax.servlet.ServletResponse provided during javax.servlet.AsyncListener registration are made available via javax.servlet.AsyncEvent.getSuppliedRequest and javax.servlet.AsyncEvent.getSuppliedResponse (violetagg)
  • Fix: 59219: Ensure AsyncListener.onError() is called if an Exception is thrown during async processing. (markt)
  • Fix: 59220: Ensure that AsyncListener.onComplete() is called if the async request times out and the response is already committed. (markt)
  • Fix: 59226: Process the Class-Path attribute from JAR manifests for JARs on the class path excluding JARs packaged in WEB-INF/lib. (markt)
  • Fix: 59255: Fix possible NPE in mapper. (kkolinko/remm)
  • Fix: 59256: slf4j-taglib*.jar should not be excluded from the standard JAR scanning by default. (violetagg)
  • Fix: Clarify the log message that specifying both urlPatterns and value attributes in @WebServlet and @WebFilter annotations is not allowed. (violetagg)
  • Fix: Ensure the exceptions caused by Valves will be available in the log files so that they can be evaluated when o.a.catalina.valves.ErrorReportValve.showReport is disabled. Patch is provided by Svetlin Zarev. (violetagg)
  • Fix: Remove unused distributable attribute that is defined as TransientAttribute of Manager in StoreConfig. (kfujino)
  • Fix: Fix handling of Cluster Receiver in StoreConfig. The bind and host attributes define as TransientAttribute. (kfujino)
  • Fix: 59261: ServletRequest.getAsyncContext() now throws an IllegalStateException as required by the Servlet specification if the request is not in asynchronous mode when called. (markt)
  • Fix: 59269: Correct the implementation of PersistentManagerBase so that minIdleSwap functions as designed and sessions are swapped out to keep the active session count below maxActiveSessions. (markt)
  • Update: Update the implementation of the the proposed Servlet 4.0 API to provide mapping type information for the current request to reflect discussions within the EG. (markt)
  • Fix: Correctly configure the base path for a resources directory provided by an expanded JAR file. Patch provided by hengyunabc. (markt)
  • Add: When multiple compressed formats are available and the client does not express a preference, use the server order to determine the preferred format. Based on a patch by gmokki. (markt)
  • Fix: 59284: Allow the Tomcat provided JASPIC SimpleServerAuthConfig to pick up module configuration properties from either the property set passed to its constructor or from the properties passed in the call to getAuthContext. Based on a patch by Thomas Maslen. (markt)
  • Fix: 59310: Do not add a Content-Length: 0 header for custom responses to HEAD requests that do not set a Content-Length value. (markt)
  • Fix: When normalizing paths, improve the handling when paths end with /. or /.. and ensure that input and output are consistent with respect to whether or not they end with /. (markt)
  • Fix: 59317: Ensure that HttpServletRequest.getRequestURI() returns an encoded URI rather than a decoded URI after a dispatch. (markt)
  • Fix: Use the correct URL for the fragment when reporting errors processing a web-fragment.xml file from a JAR located in an unpacked WAR. (markt)
  • Fix: Ensure that JarScanner only uses the explicit call-back to process WEB-INF/classes and only when configured to treat the contents of WEB-INF/classes as a possible exploded JAR. (markt)
  • Code: Remove the java2DDisposerProtection option from the JreMemoryLeakPreventionListener. The leak is fixed in Java 7 onwards and Tomcat 9 requires Java 8 so the option is unnecessary. (markt)
  • Code: Remove the securityPolicyProtection option from the JreMemoryLeakPreventionListener. The leak is fixed in Java 8 onwards and Tomcat 9 requires Java 8 so the option is unnecessary. (markt)
  • Code: Remove the securityLoginConfigurationProtection option from the JreMemoryLeakPreventionListener. The leak is fixed in Java 8 onwards and Tomcat 9 requires Java 8 so the option is unnecessary. (markt)
  • Fix: Ensure that the value for the header X-Frame-Options is constructed correctly according to the specification when ALLOW-FROM option is used. (violetagg)
  • Fix: Fix an IllegalArgumentException if the first use of an internal Response object requires JASPIC authentication. (markt)
  • Fix: Do not trigger unnecessary session ID changes when using JASPIC and the user is authenticated using cached credentials. (markt)
  • Fix: 59437: Ensure that the JASPIC CallbackHandler is thread-safe. (markt)
  • Fix: 59449: In ContainerBase, ensure that the process to remove a child container is the reverse of the process to add one. Patch provided by Huxing Zhang. (markt)

Coyote

  • Fix: Improves OpenSSL engine robustness when SSL allocation fails for some reason. (remm)
  • Fix: OpenSSL engine code cleanups. (remm)
  • Fix: Align cipher configuration parsing with current OpenSSL master. (markt)
  • Update: Change the default for honorCipherOrder to false. With the current default TLS configuration, it is no longer necessary for this to be true for a reasonably secure configuration. (markt)
  • Add: Add a new environment variable JSSE_OPTS that is intended to be used to pass JVM wide configuration to the JSSE implementation. The default value is -Djdk.tls.ephemeralDHKeySize=2048 which protects against weak Diffie-Hellman keys. (markt)
  • Fix: 58970: Fix a connection counting bug in the NIO connector that meant some dropped connections were not removed from the current connection count. (markt)
  • Fix: 59289: Do not recycle upgrade processors in unexpected close situations. (remm)
  • Fix: 59295: Use Locale.toLanguageTag() to construct the Content-Language HTTP header to ensure the locale is correctly represented. Patch provided by zikfat. (markt)
  • Update: 59295: Add support for using pem encoded certificates with JSSE SSL. Submitted by Emmanuel Bourg with additional tweaks. (remm)
  • Fix: Make the TLS certificate chain available to clients when using JSSE+OpenSSL with the certificate chain stored in a Java KeyStore. (markt)
  • Fix: Work around a known issue in OpenSSL that does not permit the TLS handshake to be failed if the ALPN negotiation fails. (markt)
  • Update: 59421: Add direct HTTP/2 connection support. (remm)
  • Fix: Correctly handle a call to AsyncContext.complete() from a non-container thread when non-blocking I/O is being used. (markt)
  • Fix: 59451: Correct Javadoc for MessageBytes. Patch provided by Kyohei Nakamura. (markt)
  • Fix: 59450: Correctly handle the case where the LegacyCookieProcessor is configured with allowHttpSepsInV0 set to false and forwardSlashIsSeparator set to true. Patch provided by Kyohei Nakamura. (markt)

Jasper

  • Fix: When scanning JARs for TLDs, correctly handle the (rare) case where a JAR has been exploded into WEB-INF/classes and the web application is deployed as a packed WAR. (markt)
  • Fix: 59640: NPEs with not found TLDs. (remm)

WebSocket

  • Fix: 59189: Explicitly release the native memory held by the Inflater and Deflater when using PerMessageDeflate and the WebSocket session ends. Based on a patch by Henrik Olsson. (markt)
  • Fix: Restore the WsServerContainer.doUpgrade() method which was accidentally removed since it is not used by Tomcat. (markt)
  • Fix: Fix a regression caused by the connector refactoring and ensure that the thread context class loader is set to the to the web application classloader when processing WebSocket messages on the server. (markt)
  • Fix: Ensure that a client disconnection triggers the error handling for the associated WebSocket end point. (markt)
  • Add: Make WebSocket client more robust when handling errors during the close of a WebSocket session. (markt)

Web applications

  • Fix: 59218: Correct the path to jaspic-providers.xml in Jaspic How-To. Patch is provided by Tatsuya Bessho. (violetagg)
  • Fix: Remove button that has accidentally been added to the host manager. Submitted by Coty Sutherland. (remm)
  • Fix: Update in the documentation the link to the maven repository where Tomcat snapshot artifacts are deployed. (markt/violetagg)
  • Fix: Clarify in the documentation that calls to ServletContext.log(String, Throwable) or GenericServlet.log(String, Throwable) are logged at the SEVERE level. (violetagg)
  • Fix: Correct a typo in SSL/TLS Configuration How-To. Issue reported via comments.apache.org. (violetagg)

Tribes

  • Fix: Avoid NPE when a proxy node failed to retrieve a backup entry. (kfujino)
  • Add: Add the flag indicating that member is a localMember. (kfujino)
  • Fix: Fix potential NPE that depends on the setting order of attributes of static member when using the static cluster. (kfujino)
  • Add: Add get/set method for the channel that is related to ChannelInterceptor. (kfujino)
  • Fix: As with the multicast cluster environment, in the static cluster environment, the local member inherits properties from the cluster receiver. (kfujino)
  • Add: Add get/set method for the channel that is related to each Channel services. (kfujino)
  • Add: Add name to channel in order to identify channels. In tomcat cluster environment, it is set the cluster name + "-Channel" as default value. (kfujino)
  • Add: Add the channel name to the thread which is invoked by channel services in order to identify the associated channel. (kfujino)
  • Fix: Ensure that clear the channel instance from channel services when stopping channel. (kfujino)
  • Add: Implement map state in the replication map. (kfujino)
  • Fix: Ensure that the ping is not executed during the start/stop of the replication map. (kfujino)
  • Fix: In ping processing in the replication map, send not the INIT message but the newly introduced PING message. (kfujino)

Other

  • Fix: 59211: Add hamcrest to Eclipse classpath. Patch is provided by Huxing Zhang. (violetagg)
  • Update: 59276: Update optional Checkstyle library to 6.17. (kkolinko)
  • Update: 59280: Update the NSIS Installer used to build the Windows Installers to version 2.51. (kkolinko)
  • Update: Update the packaged version of the Tomcat Native Library to 1.2.7 to pick up the Windows binaries that are based on OpenSSL 1.0.2h and APR 1.5.2. (markt)

2016-03-16 Tomcat 9.0.0.M4

Catalina

  • Fix: Ensure that /WEB-INF/classes is never processed as a web fragment. (markt)
  • Update: Switch default connector when native is installed. Unless configured otherwise, the NIO endpoint will be used by default. If SSL is configured, OpenSSL will be used rather than JSSE. (remm)
  • Fix: Correct a regression in the fix for 58867. When configuring a Context to use an external directory for the docBase, and that directory happens to be located along side the original WAR, use the directory as the docBase rather than expanding the WAR into the appBase and using the newly created expanded directory as the docBase. (markt)
  • Add: 58351: Make the server build date and server version number accessible via JMX. Patch provided by Huxing Zhang. (markt)
  • Add: 58988: Special characters in the substitutions for the RewriteValve can now be quoted with a backslash. (fschumacher)
  • Fix: 58999: Fix class and resource name filtering in WebappClassLoader. It throws a StringIndexOutOfBoundsException if the name is exactly "org" or "javax". (rjung)
  • Add: Add JASPIC (JSR-196) support. (markt)
  • Add: Make checking for var and map replacement in RewriteValve a bit stricter and correct detection of colon in var replacement. (fschumacher)
  • Fix: Refactor the web application class loader to reduce the impact of JAR scanning on the memory footprint of the web application. (markt)
  • Fix: Fix some resource leaks in the error handling for accessing files from JARs and WARs. (markt)
  • Fix: Refactor the JAR and JAR-in-WAR resource handling to reduce the memory footprint of the web application. (markt)
  • Fix: Refactor the web.xml parsing so a new parser is created every time the web application starts rather than creating and caching the parser when the Context is created. This enables the parser to take account of modified Context configuration parameters and reduces (slightly) the memory footprint of a running Tomcat instance. (markt)
  • Update: Switch the web application class loader to the ParallelWebappClassLoader by default. (markt)
  • Fix: 57809: Remove the custom context attribute that held the effective web.xml. Components needing access to configuration information may access it via the Servlet API. (markt)
  • Fix: Refactor JAR scanning to reduce memory footprint. (markt)
  • Fix: 59001: Correctly handle the case when Tomcat is installed on a path where one of the segments ends in an exclamation mark. (markt)
  • Fix: Expand the fix for 59001 to cover the special sequences used in Tomcat's custom jar:war: URLs. (markt)
  • Fix: 59043: Avoid warning while expiring sessions associated with a single sign on if HttpServletRequest.logout() is used. (markt)
  • Fix: 59054: Ensure that using the CrawlerSessionManagerValve in a distributed environment does not trigger an error when the Valve registers itself in the session. (markt)
  • Fix: Add socket properties support to storeconfig. (remm)
  • Fix: Fix incorrect parsing of the NE and NC flags in rewrite rules. (remm)
  • Fix: 59065: Correct the timing of the check for colons in paths on non-Windows systems implemented in catalina.sh so it works correctly with Cygwin. Patch provided by Ed Randall. (markt)
  • Fix: When a Host is configured with an appBase that does not exist, create the appBase before trying to expand an external WAR file into it. (markt)
  • Fix: 59115: When using the Servlet 3.0 file upload, the submitted file name may be provided as a token or a quoted-string. If a quoted-string, unquote the string before returning it to the user. (markt)
  • Fix: 59123: Close NamingEnumeration objects used by the JNDIRealm once they are no longer required. (fschumacher/markt)
  • Add: Implement the proposed Servlet 4.0 API to provide mapping type information for the current request. (markt)
  • Fix: 59138: Correct a false positive warning for ThreadLocal related memory leaks when the key class but not the value class has been loaded by the web application class loader. (markt)
  • Add: 59017: Make the pre-compressed file support in the Default Servlet generic so any compression may be used rather than just gzip. Patch provided by Mikko Tiihonen. (markt)
  • Fix: 59145: Don't log an invalid warning when a user logs out of a session associated with SSO. (markt)
  • Fix: 59150: Add an additional flag on APR listener to allow disabling automatic use of OpenSSL. (remm)
  • Fix: 59151: Fix a regression in the fix for 56917 that added additional (and arguably unnecessary) validation to the provided redirect location. (markt)
  • Fix: 59154: Fix a NullPointerException in the JAASMemoryLoginModule resulting from the introduction of the CredentialHandler to Realms. (schultz/markt)

Coyote

  • Fix: Handle the case in the NIO2 connector where the required TLS buffer sizes increase after the connection has been initiated. (markt/remm)
  • Fix: Bad processing of handshake errors in NIO2. (remm)
  • Fix: Use JSSE session configuration options with OpenSSL. (remm)
  • Fix: 59015: Fix potential cause of endless APR Poller loop during shutdown if the Poller experiences an error during the shutdown process. (markt)
  • Fix: Align cipher aliases for kECDHE and ECDHE with the current OpenSSL implementation. (markt)
  • Fix: 59081: Retain the user defined cipher order when defining ciphers. (markt)
  • Fix: 59089: Correctly ignore HTTP headers that include non-token characters in the header name. (markt)

Jasper

  • Update: Update to the Eclipse JDT Compiler 4.5.1. (markt)
  • Fix: 57583: Improve the performance of javax.servlet.jsp.el.ScopedAttributeELResolver when resolving attributes that do not exist. This improvement only works when Jasper is used with with Tomcat's EL implementation. (markt)

WebSocket

  • Fix: Fix a timing issue on session close that could result in an exception being thrown for an incomplete message even through the message was completed. (markt)
  • Fix: Correctly handle compression of partial messages when the final message fragment has a zero length payload. (markt)
  • Fix: 59119: Correct read logic for WebSocket client when using secure connections. (markt)
  • Fix: 59134: Correct client connect logic for secure connections made through a proxy. (markt)

Web applications

  • Fix: Correct an error in the documentation of the expected behaviour for automatic deployment. If a WAR is updated and an expanded directory is present, the directory will always be deleted and recreated by expanding the WAR if unpackWARs is true. (markt)
  • Fix: 48674: Implement an option within the Host Manager web application to persist the current configuration. Based on a patch by Coty Sutherland. (markt)
  • Fix: 58935: Remove incorrect references in the documentation to using jar:file: URLs with the Manager application. (markt)
  • Fix: Correct the description of the ServletRequest.getServerPort() in Proxy How-To. Issue reported via comments.apache.org. (violetagg)
  • Add: The Manager and Host Manager applications are now only accessible via localhost by default. (markt)

Tribes

  • Fix: If promoting a proxy node to a primary node when getting a session, notify the change of the new primary node to the original backup node. (kfujino)

Other

  • Fix: 58283: Change the default download location for libraries during the build process from /usr/share/java to ${user.home}/temp. Patch provided by Ahmed Hosni. (markt)
  • Fix: 59031: When using the Windows uninstaller, do not remove the contents of any directories that have been symlinked into the Tomcat directory structure. (markt)
  • Update: Update the packaged version of the Tomcat Native Library to 1.2.5 to pick up the Windows binaries that are based on OpenSSL 1.0.2g and APR 1.5.1. (markt)
  • Update: Modify the default tomcat-users.xml file to make it harder for users to configure the entries intended for use with the examples web application for the Manager application. (markt)

2016-02-05 Tomcat 9.0.0.M3

General

  • Add: Allow to configure multiple JUnit test class patterns with the build property test.name and document the property in BUILDING.txt. (rjung)

Catalina

  • Fix: Protect initialization of ResourceLinkFactory when running with a SecurityManager. (kkolinko)
  • Fix: Correct a thread safety issue in the filtering of session attributes based on the implementing class name of the value object. (markt)
  • Fix: Fix class loader decision on the delegation for class loading and resource lookup and make it faster too. (rjung)
  • Fix: 58768: Log a warning if a redirect fails because of an invalid location. (markt)
  • Code: 58827: Remove remains of JSR-77 implementation. (markt)
  • Fix: 58946: Ensure that the request parameter map remains immutable when processing via a RequestDispatcher. (markt)
  • Fix: 58905: Ensure that Tomcat.silence() silences the correct logger and respects the current setting. (markt)

Coyote

  • Fix: Correct a regression in the connector refactoring in 9.0.0.M2 that broke TLS support for the APR/native connector. (remm)
  • Fix: Correct an NPE when listing the enabled ciphers (e.g. via the Manager web application) for a TLS enabled APR/native connector. (markt)
  • Add: New configuration option ajpFlush for the AJP connectors to disable the sending of AJP flush packets. (rjung)
  • Fix: Handle the case in the NIO connector where the required TLS buffer sizes increase after the connection has been initiated. (markt)

not released Tomcat 9.0.0.M2

Catalina

  • Code: Refactor creation of MapperListener to ensure that the Mapper used is the Mapper associated with the Service for which the listener was created. (markt)
  • Add: Move the functionality that provides redirects for context roots and directories where a trailing / is added from the Mapper to the DefaultServlet. This enables such requests to be processed by any configured Valves and Filters before the redirect is made. This behaviour is configurable via the mapperContextRootRedirectEnabled and mapperDirectoryRedirectEnabled attributes of the Context which may be used to restore the previous behaviour. (markt)
  • Code: Refactor Service.getContainer() to return an Engine rather than a Container. (markt)
  • Fix: 34319: Only load those keys in StoreBase.processExpire from JDBCStore, that are old enough, to be expired. Based on a patch by Tom Anderson. (fschumacher)
  • Add: 56917: As per RFC7231 (HTTP/1.1), allow HTTP/1.1 and later redirects to use relative URIs. This is controlled by a new attribute useRelativeRedirects on the Context and defaults to true. (markt)
  • Fix: 58629: Allow an embedded Tomcat instance to start when the Service has no Engine configured. (markt)
  • Fix: Correctly notify the MapperListener associated with a Service if the Engine for that Service is changed. (markt)
  • Add: Make a web application's CredentialHandler available through a context attribute. This allows a web application to use the same algorithm for validating or generating new stored credentials from cleartext ones. (schultz)
  • Fix: 58635: Enable break points to be set within agent code when running Tomcat with a Java agent. Based on a patch by Huxing Zhang. (markt)
  • Fix: Fixed potential NPE in HostConfig while deploying an application. Issue reported by coverity scan. (violetagg)
  • Fix: 58655: Fix an IllegalStateException when calling HttpServletResponse.sendRedirect() with the RemoteIpFilter. This was caused by trying to correctly generate the absolute URI for the redirect. With the fix for 56917, redirects may now be relative making the sendRedirect() implementation for the RemoteIpFilter much simpler. This also addresses issues where the redirect may not have behaved as expected when redirecting from http to https to from https to http. (markt)
  • Fix: 58657: Exceptions in a Servlet 3.1 ReadListener or WriteListener do not need to be immediately fatal to the connection. Allow an error response to be written. (markt)
  • Fix: Correct implementation of validateClientProvidedNewSessionId so client provided session IDs may be rejected if validation is enabled. (markt)
  • Fix: 58701: Reset the instanceInitialized field in StandardWrapper when unloading a Servlet so that a new instance may be correctly initialized. (markt)
  • Update: Add a new flag aprPreferred to the Apr listener. if set to false, when using the connector defaults, it will use NIO + OpenSSL if tomcat-native is available, rather than the APR connector. (remm)
  • Fix: Add path parameter handling to HttpServletRequest.getContextPath(). This is a follow-up to the fix for 57215. (markt)
  • Fix: 58692: Make StandardJarScanner more robust. Log a warning if a class path entry cannot be scanned rather than triggering the failure of the web application. Includes a test case written by Derek Abdine. (markt)
  • Fix: 58702: Ensure an access log entry is generated if the client aborts the connection. (markt)
  • Fix: Fixed various issues reported by Findbugs. (violetagg)
  • Fix: 58735: Add support for the X-XSS-Protection header to the HttpHeaderSecurityFilter. Patch provided by Jacopo Cappellato. (markt)
  • Fix: Add the StatusManagerServlet to the list of Servlets that can only be loaded by privileged applications. (markt)
  • Fix: Simplify code and fix messages in org.apache.catalina.core.DefaultInstanceManager class. (kkolinko)
  • Fix: 58751: Correctly handle the case where an AsyncListener dispatches to a Servlet on an asynchronous timeout and the Servlet uses sendError() to trigger an error page. Includes a test case based on code provided by Andy Wilkinson.(markt)
  • Fix: Ensure that the proper file encoding if specified will be used when a readme file is served by DefaultServlet. (violetagg)
  • Fix: Fix declaration of localPort attribute of Connector MBean: it is read-only. (kkolinko)
  • Fix: 58766: Make skipping non-class files during annotation scanning faster by checking the file name first. Improve debug logging. (kkolinko)
  • Fix: 58836: Correctly merge query string parameters when processing a forwarded request where the target includes a query string that contains a parameter with no value. (markt/kkolinko)
  • Fix: Make sure that shared Digester is reset in an unlikely error case in HostConfig.deployWAR(). (kkolinko)
  • Add: Extend the feature available in the cluster session manager implementations that enables session attribute replication to be filtered based on attribute name to all session manager implementations. Note that configuration attribute name has changed from sessionAttributeFilter to sessionAttributeNameFilter. Apply the filter on load as well as unload to ensure that configuration changes made while the web application is stopped are applied to any persisted data. (markt)
  • Add: Extend the session attribute filtering options to include filtering based on the implementation class of the value and optional WARN level logging if an attribute is filtered. These options are available for all of the Manager implementations that ship with Tomcat. When a SecurityManager is used filtering will be enabled by default. (markt)
  • Code: Remove distributable and maxInactiveInterval from the Manager interface because the attributes are never used. The equivalent attributes from the Context always take precedence. (markt)
  • Fix: 58867: Improve checking on Host start for WAR files that have been modified while Tomcat has stopped and re-expand them if unpackWARs is true. (markt)
  • Fix: 58900: Correctly undeploy symlinked resources and prevent an infinite cycle of deploy / undeploy. (markt)

Coyote

  • Fix: 58621: The certificate chain cannot be set using the main certificate attribute, so restore the certificate chain property. (remm)
  • Fix: Allow a new SSL config type where a connector can use either JSSE or OpenSSL. Both could be allowed, but it would likely create support issues. This type is used by the OpenSSL implementation for NIOx. (remm)
  • Fix: Improve upgrade context classloader handling by using Context.bind and unbind. (remm)
  • Add: Improve OpenSSL keystore/truststore configuration by using the code from the JSSE implementation. (remm, jfclere)
  • Fix: Fix a potential loop when a client drops the connection unexpectedly. (markt)
  • Add: OpenSSL renegotiation support for client certificate authentication. (remm)
  • Fix: Fix NIO connector renegotiation. (remm)
  • Fix: 58659: Fix a potential deadlock during HTTP/2 processing when the connection window size is limited. (markt)

Jasper

  • Fix: 57136#c25: Change default value of quoteAttributeEL setting in Jasper to be true for better compatibility with other implementations and older versions of Tomcat. Add command line option -no-quoteAttributeEL in JspC. (kkolinko)
  • Fix: Fix handling of missing messages in org.apache.el.util.MessageFactory. (violetagg)

Cluster

  • Fix: Enable an explicit configuration of local member in the static cluster membership. (kfujino)
  • Fix: Fix potential integer overflow in DeltaSession. Reported by coverity scan. (fschumacher)
  • Fix: In order to avoid that the heartbeat thread and the background thread to run Channel.heartbeat simultaneously, if heartbeatBackgroundEnabled of SimpleTcpCluster set to true, ensure that the heartbeat thread does not start. (kfujino)

WebSocket

  • Add: 55006: The WebSocket client now honors the java.net.java.net.ProxySelector configuration (using the HTTP type) when establishing WebSocket connections to servers. Based on a patch by Niki Dokovski. (markt)
  • Fix: 58624: Correct a potential deadlock if the WebSocket connection is closed when a message write is in progress. (markt)
  • Fix: 57489: Ensure onClose() is called when a WebSocket connection is closed even if the sending of the close message fails. Includes test cases by Barry Coughlan. (markt)

Web Applications

  • Fix: 58631: Correct the continuation character use in the Windows Service How-To page of the documentation web application. (markt)
  • Fix: Correct the SSL documentation for deprecated attributes to point to the correct, new location for attributes related to individual certificates. (markt)
  • Fix: Correct some typos in the JNDI resources How-To. (markt)
  • Fix: Don't create session unnecessarily in the Manager application. (markt)
  • Fix: Don't create session unnecessarily in the Host Manager application. (markt)
  • Fix: 58723: Clarify documentation and error messages for the text interface of the manager to make clear that version must be used with path when referencing contexts deployed using parallel deployment. (markt)
  • Add: Document test.threads option in BUILDING.txt. (kkolinko)

Tribes

  • Fix: Ensure that the static member is registered to the add suspect list even if the static member that is registered to the remove suspect list has disappeared. (kfujino)
  • Fix: When using a static cluster, add the members that have been cached in the membership service to the map members list in order to ensure that the map member is a static member. (kfujino)
  • Fix: Add support for the startup notification of local members in the static cluster. (kfujino)
  • Fix: Ignore the unnecessary member remove operation from different domain. (kfujino)
  • Fix: Add support for the shutdown notification of local members in the static cluster. (kfujino)

jdbc-pool

  • Fix: Correct evaluation of system property org.apache.tomcat.jdbc.pool.onlyAttemptCurrentClassLoader. It was basically ignored before. Reported by coverity scan. (fschumacher)
  • Fix: Fix potential integer overflow in ConnectionPool and PooledConnection. Reported by coverity scan. (fschumacher)

Other

  • Update: Update optional Checkstyle library to 6.14.1. (kkolinko)
  • Update: Update the packaged version of the Tomcat Native Library to 1.2.4 to pick up the Windows binaries that are based on OpenSSL 1.0.2e and APR 1.5.1. (markt)
  • Update: Update the NSIS Installer used to build the Windows Installers to version 2.50. (markt/kkolinko)
  • Update: Update the internal fork of Commons BCEL to r1725718 to align with the refactoring for BCEL 6, the next major BCEL release. (markt)
  • Update: Update the internal fork of Commons DBCP 2 to r1725730 (2.1.1 plus additional fixes). (markt)
  • Update: Update the internal fork of Commons Pool 2 to r1725738 (2.4.2 plus additional fixes). (markt)
  • Update: Update the internal fork of Commons Codec to r1725746 (1.9 plus additional fixes). (markt)

2015-11-17 Tomcat 9.0.0.M1

General

  • Add: Make Java 8 the minimum required version to build and run Tomcat 9. (markt)
  • Update: Remove support for Comet. (markt)
  • Update: Tighten up the default file permissions for the .tar.gz distribution so no files or directories are world readable by default. Configure Tomcat to run with a default umask of 0027 which may be overridden by setting UMASK in setenv.sh. (markt)
  • Update: Remove native code (Windows Service Wrapper, APR/native connector) support for Windows Itanium. (markt)

Catalina

  • Update: The default HTTP cookie parser has been changed to org.apache.tomcat.util.http.Rfc6265CookieProcessor. (markt)

Coyote

  • Update: Remove support for the HTTP BIO and AJP BIO connectors. (markt)
  • Code: Refactor HTTP upgrade and AJP implementations to reduce duplication. (markt)
  • Add: Add support for HPACK header encoding and decoding, contributed by Stuart Douglas. (remm)
  • Add: 57108: Add support for Server Name Indication (SNI). There has been significant changes to the SSL configuration in server.xml to support this. (markt)
  • Add: Add SSL engine for JSSE backed by OpenSSL. Includes ALPN support. Based on code contributed by Numa de Montmollin and derived from code developed by Twitter and Netty. (remm)
  • Fix: RFC 7230 states that clients should ignore reason phrases in HTTP/1.1 response messages. Since the reason phrase is optional, Tomcat no longer sends it. As a result the system property org.apache.coyote.USE_CUSTOM_STATUS_MSG_IN_HEADER is no longer used and has been removed. (markt)
  • Update: The minimum required Tomcat Native version has been increased to 1.2.2. The 1.2.x branch includes ALPN and SNI support which are required for HTTP/2. (markt)
  • Add: Add support for HTTP/2 including server push. (markt)

Tribes

  • Fix: Clarify the handling of Copy message and Copy nodes. (kfujino)

Other

  • Add: Support the use of the threads attribute on Ant's junit task. Note that using this with a value of greater than one will disable Cobertura code coverage. (markt)