svn commit: r50980 - /dev/tomcat/tomcat-8/v8.5.73/ /release/tomcat/tomcat-8/v8.5.73/
Author: schultz Date: Wed Nov 17 16:32:21 2021 New Revision: 50980 Log: Promote release candidate to released. Added: release/tomcat/tomcat-8/v8.5.73/ - copied from r50979, dev/tomcat/tomcat-8/v8.5.73/ Removed: dev/tomcat/tomcat-8/v8.5.73/ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[tomcat] branch main updated: Protect against a known OS bug
This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git The following commit(s) were added to refs/heads/main by this push: new d03cfcf Protect against a known OS bug d03cfcf is described below commit d03cfcf3b0d6639acb2884f1bbea5f2f29b95d91 Author: Mark Thomas AuthorDate: Wed Nov 17 18:48:33 2021 + Protect against a known OS bug https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1924298 --- java/org/apache/tomcat/util/net/LocalStrings.properties | 1 + java/org/apache/tomcat/util/net/Nio2Endpoint.java | 12 +++- java/org/apache/tomcat/util/net/NioEndpoint.java| 11 ++- webapps/docs/changelog.xml | 6 ++ 4 files changed, 28 insertions(+), 2 deletions(-) diff --git a/java/org/apache/tomcat/util/net/LocalStrings.properties b/java/org/apache/tomcat/util/net/LocalStrings.properties index 69d2dc4..3389f01 100644 --- a/java/org/apache/tomcat/util/net/LocalStrings.properties +++ b/java/org/apache/tomcat/util/net/LocalStrings.properties @@ -66,6 +66,7 @@ endpoint.debug.unlock.localFail=Unable to determine local address for [{0}] endpoint.debug.unlock.localNone=Failed to unlock acceptor for [{0}] because the local address was not available endpoint.duplicateSslHostName=Multiple SSLHostConfig elements were provided for the host name [{0}]. Host names must be unique. endpoint.err.close=Caught exception trying to close socket +endpoint.err.duplicateAccept=Duplicate accept detected. This is a known OS bug. Please consider reporting that you are affected: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1924298 endpoint.err.handshake=Handshake failed endpoint.err.unexpected=Unexpected error processing socket endpoint.executor.fail=Executor rejected socket [{0}] for processing diff --git a/java/org/apache/tomcat/util/net/Nio2Endpoint.java b/java/org/apache/tomcat/util/net/Nio2Endpoint.java index 5fb0477..47825f0 100644 --- a/java/org/apache/tomcat/util/net/Nio2Endpoint.java +++ b/java/org/apache/tomcat/util/net/Nio2Endpoint.java @@ -84,6 +84,8 @@ public class Nio2Endpoint extends AbstractJsseEndpoint nioChannels; +private SocketAddress previousAcceptedSocketRemoteAddress = null; + // - Public Methods @@ -355,7 +357,15 @@ public class Nio2Endpoint extends AbstractJsseEndpoint */ private SynchronizedStack nioChannels; +private SocketAddress previousAcceptedSocketRemoteAddress = null; + // - Properties @@ -510,7 +512,14 @@ public class NioEndpoint extends AbstractJsseEndpoint @Override protected SocketChannel serverSocketAccept() throws Exception { -return serverSock.accept(); +SocketChannel result = serverSock.accept(); +SocketAddress currentRemoteAddress = result.getRemoteAddress(); +if (currentRemoteAddress.equals(previousAcceptedSocketRemoteAddress)) { +throw new IOException(sm.getString("endpoint.err.duplicateAccept")); +} +previousAcceptedSocketRemoteAddress = currentRemoteAddress; + +return result; } diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml index a6825c3..ef6b181 100644 --- a/webapps/docs/changelog.xml +++ b/webapps/docs/changelog.xml @@ -119,6 +119,12 @@ Use an implicit scope to tie the cleanup of OpenSSL memory to the Java GC. (remm) + +Provide protection against a known https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1924298";>OS +bug that causes the acceptor to report an incoming connection more +than once. (markt) + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1895118 - in /tomcat/site/trunk: ./ docs/ docs/tomcat-8.5-doc/ docs/tomcat-8.5-doc/annotationapi/ docs/tomcat-8.5-doc/annotationapi/javax/annotation/ docs/tomcat-8.5-doc/annotationapi/jav
Author: schultz Date: Wed Nov 17 19:40:40 2021 New Revision: 1895118 URL: http://svn.apache.org/viewvc?rev=1895118&view=rev Log: Update web site to announce Release 8.5.73 and include documentation. [This commit notification would consist of 64 parts, which exceeds the limit of 50 ones, so it was shortened to the summary.] - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[tomcat] branch 8.5.x updated: Update to include latest release date.
This is an automated email from the ASF dual-hosted git repository. schultz pushed a commit to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git The following commit(s) were added to refs/heads/8.5.x by this push: new 53e4bbe Update to include latest release date. 53e4bbe is described below commit 53e4bbe4c1aed9cd2e3639e29d8ea888bad9ea4a Author: Christopher Schultz AuthorDate: Wed Nov 17 14:43:43 2021 -0500 Update to include latest release date. --- webapps/docs/changelog.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml index 0545ead..e590f85 100644 --- a/webapps/docs/changelog.xml +++ b/webapps/docs/changelog.xml @@ -104,7 +104,7 @@ They eventually become mixed with the numbered issues (i.e., numbered issues do not "pop up" wrt. others). --> - + @@ -115,7 +115,7 @@ - + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[ANN] Apache Tomcat 8.5.73 available
The Apache Tomcat team announces the immediate availability of Apache Tomcat 8.5.73. Apache Tomcat 8 is an open source software implementation of the Java Servlet, JavaServer Pages, Java Unified Expression Language, Java WebSocket and Java Authentication Service Provider Interface for Containers technologies. Apache Tomcat 8.5.73 is a bugfix and feature release. The notable changes compared to 8.5.72 include: - Improvements to native/APR including avoiding a JVM crash if APR fails to properly initialize and improving error handling. - Improve robustness of JNDIRealm for exceptions occurring when getting the connection. Along with lots of other bug fixes and improvements. Please refer to the change log for the complete list of changes: http://tomcat.apache.org/tomcat-8.5-doc/changelog.html Downloads: http://tomcat.apache.org/download-80.cgi Migration guides from Apache Tomcat 7.x and 8.0.x: http://tomcat.apache.org/migration.html Enjoy! - The Apache Tomcat team - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r50983 - /release/tomcat/tomcat-8/v8.5.72/
Author: schultz Date: Wed Nov 17 19:50:30 2021 New Revision: 50983 Log: Remove previous release. Removed: release/tomcat/tomcat-8/v8.5.72/ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1895119 - in /tomcat/site/trunk: docs/migration-10.1.html docs/migration-10.html docs/migration-85.html docs/migration-9.html xdocs/migration-10.1.xml xdocs/migration-10.xml xdocs/migrati
Author: schultz Date: Wed Nov 17 20:06:04 2021 New Revision: 1895119 URL: http://svn.apache.org/viewvc?rev=1895119&view=rev Log: Fix https://bz.apache.org/bugzilla/show_bug.cgi?id=65513 Update "notable changes" to include information about changes to the "Expires" header handling. Modified: tomcat/site/trunk/docs/migration-10.1.html tomcat/site/trunk/docs/migration-10.html tomcat/site/trunk/docs/migration-85.html tomcat/site/trunk/docs/migration-9.html tomcat/site/trunk/xdocs/migration-10.1.xml tomcat/site/trunk/xdocs/migration-10.xml tomcat/site/trunk/xdocs/migration-85.xml tomcat/site/trunk/xdocs/migration-9.xml Modified: tomcat/site/trunk/docs/migration-10.1.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-10.1.html?rev=1895119&r1=1895118&r2=1895119&view=diff == --- tomcat/site/trunk/docs/migration-10.1.html (original) +++ tomcat/site/trunk/docs/migration-10.1.html Wed Nov 17 20:06:04 2021 @@ -100,7 +100,15 @@ of Apache Tomcat. are not fully backwards compatible and might cause breakage when upgrading. - None + In 10.1.0-M3 onwards, Tomcat no longer adds an "Expires" HTTP +response header when adding "Cache-Control: private" due to a +CONFIDENTIAL transport-guarantee. This will likely cause a change +in caching behavior for applications that do not explicitly set +their own headers but rely on Tomcat's previous behavior. If you +with to disable caching, you will need to configure it explicitly +in your application. See https://bz.apache.org/bugzilla/show_bug.cgi?id=65513 +for more information. + Modified: tomcat/site/trunk/docs/migration-10.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-10.html?rev=1895119&r1=1895118&r2=1895119&view=diff == --- tomcat/site/trunk/docs/migration-10.html (original) +++ tomcat/site/trunk/docs/migration-10.html Wed Nov 17 20:06:04 2021 @@ -161,6 +161,15 @@ of Apache Tomcat. checks are complete. If the application is marked as serviced when the method is called, the method will be a NO-OP. + In 10.0.9 onwards, Tomcat no longer adds an "Expires" HTTP +response header when adding "Cache-Control: private" due to a +CONFIDENTIAL transport-guarantee. This will likely cause a change +in caching behavior for applications that do not explicitly set +their own headers but rely on Tomcat's previous behavior. If you +with to disable caching, you will need to configure it explicitly +in your application. See https://bz.apache.org/bugzilla/show_bug.cgi?id=65513 +for more information. + In 10.0.11 onwards, as a result of the updated fork of Commons FileUpload now using java.nio.file.Files, applications using multi-part uploads need to ensure that the JVM is configured with Modified: tomcat/site/trunk/docs/migration-85.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-85.html?rev=1895119&r1=1895118&r2=1895119&view=diff == --- tomcat/site/trunk/docs/migration-85.html (original) +++ tomcat/site/trunk/docs/migration-85.html Wed Nov 17 20:06:04 2021 @@ -254,6 +254,15 @@ of Apache Tomcat. checks are complete. If the application is marked as serviced when the method is called, the method will be a NO-OP. + In 8.5.70 onwards, Tomcat no longer adds an "Expires" HTTP +response header when adding "Cache-Control: private" due to a +CONFIDENTIAL transport-guarantee. This will likely cause a change +in caching behavior for applications that do not explicitly set +their own headers but rely on Tomcat's previous behavior. If you +with to disable caching, you will need to configure it explicitly +in your application. See https://bz.apache.org/bugzilla/show_bug.cgi?id=65513 +for more information. + In 8.5.71 onwards, as a result of the updated fork of Commons FileUpload now using java.nio.file.Files, applications using multi-part uploads need to ensure that the JVM is configured with Modified: tomcat/site/trunk/docs/migration-9.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-9.html?rev=1895119&r1=1895118&r2=1895119&view=diff == --- tomcat/site/trunk/docs/migration-9.html (original) +++ tomcat/site/trunk/docs/migration-9.html Wed Nov 17 20:06:04 2021 @@ -334,6 +334,15 @@ of Apache Tomcat. cause a startup error if they are present in the configuration, but may produce a warning and will have no effect. + In
[Bug 65513] Change in browser cache behavior introduced in 9.0.51
https://bz.apache.org/bugzilla/show_bug.cgi?id=65513 --- Comment #8 from Christopher Schultz --- I finally added this to the "Notable Changes" sections of the various migration guides in r1895119. Sorry this took so long to get to. -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1895120 - in /tomcat/site/trunk: docs/migration-10.1.html docs/migration-10.html docs/migration-85.html docs/migration-9.html xdocs/migration-10.1.xml xdocs/migration-10.xml xdocs/migrati
Author: schultz Date: Wed Nov 17 20:08:42 2021 New Revision: 1895120 URL: http://svn.apache.org/viewvc?rev=1895120&view=rev Log: Use a link for BZ Modified: tomcat/site/trunk/docs/migration-10.1.html tomcat/site/trunk/docs/migration-10.html tomcat/site/trunk/docs/migration-85.html tomcat/site/trunk/docs/migration-9.html tomcat/site/trunk/xdocs/migration-10.1.xml tomcat/site/trunk/xdocs/migration-10.xml tomcat/site/trunk/xdocs/migration-85.xml tomcat/site/trunk/xdocs/migration-9.xml Modified: tomcat/site/trunk/docs/migration-10.1.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-10.1.html?rev=1895120&r1=1895119&r2=1895120&view=diff == --- tomcat/site/trunk/docs/migration-10.1.html (original) +++ tomcat/site/trunk/docs/migration-10.1.html Wed Nov 17 20:08:42 2021 @@ -106,7 +106,7 @@ of Apache Tomcat. in caching behavior for applications that do not explicitly set their own headers but rely on Tomcat's previous behavior. If you with to disable caching, you will need to configure it explicitly -in your application. See https://bz.apache.org/bugzilla/show_bug.cgi?id=65513 +in your application. See https://bz.apache.org/bugzilla/show_bug.cgi?id=65513";>BZ 65513 for more information. Modified: tomcat/site/trunk/docs/migration-10.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-10.html?rev=1895120&r1=1895119&r2=1895120&view=diff == --- tomcat/site/trunk/docs/migration-10.html (original) +++ tomcat/site/trunk/docs/migration-10.html Wed Nov 17 20:08:42 2021 @@ -167,7 +167,7 @@ of Apache Tomcat. in caching behavior for applications that do not explicitly set their own headers but rely on Tomcat's previous behavior. If you with to disable caching, you will need to configure it explicitly -in your application. See https://bz.apache.org/bugzilla/show_bug.cgi?id=65513 +in your application. See https://bz.apache.org/bugzilla/show_bug.cgi?id=65513";>BZ 65513 for more information. In 10.0.11 onwards, as a result of the updated fork of Commons Modified: tomcat/site/trunk/docs/migration-85.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-85.html?rev=1895120&r1=1895119&r2=1895120&view=diff == --- tomcat/site/trunk/docs/migration-85.html (original) +++ tomcat/site/trunk/docs/migration-85.html Wed Nov 17 20:08:42 2021 @@ -260,7 +260,7 @@ of Apache Tomcat. in caching behavior for applications that do not explicitly set their own headers but rely on Tomcat's previous behavior. If you with to disable caching, you will need to configure it explicitly -in your application. See https://bz.apache.org/bugzilla/show_bug.cgi?id=65513 +in your application. See https://bz.apache.org/bugzilla/show_bug.cgi?id=65513";>BZ 65513 for more information. In 8.5.71 onwards, as a result of the updated fork of Commons Modified: tomcat/site/trunk/docs/migration-9.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-9.html?rev=1895120&r1=1895119&r2=1895120&view=diff == --- tomcat/site/trunk/docs/migration-9.html (original) +++ tomcat/site/trunk/docs/migration-9.html Wed Nov 17 20:08:42 2021 @@ -340,7 +340,7 @@ of Apache Tomcat. in caching behavior for applications that do not explicitly set their own headers but rely on Tomcat's previous behavior. If you with to disable caching, you will need to configure it explicitly -in your application. See https://bz.apache.org/bugzilla/show_bug.cgi?id=65513 +in your application. See https://bz.apache.org/bugzilla/show_bug.cgi?id=65513";>BZ 65513 for more information. In 9.0.53 onwards, as a result of the updated fork of Commons Modified: tomcat/site/trunk/xdocs/migration-10.1.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/migration-10.1.xml?rev=1895120&r1=1895119&r2=1895120&view=diff == --- tomcat/site/trunk/xdocs/migration-10.1.xml (original) +++ tomcat/site/trunk/xdocs/migration-10.1.xml Wed Nov 17 20:08:42 2021 @@ -119,7 +119,7 @@ of Apache Tomcat. in caching behavior for applications that do not explicitly set their own headers but rely on Tomcat's previous behavior. If you with to disable caching, you will need to configure it explicitly -in your application. See https://bz.apache.org/bugzilla/show_bug.cgi?id=65513 +in your application. See https://bz.apache.org/bugzilla/show_bug.cgi?i
svn commit: r1895122 - in /tomcat/site/trunk: docs/migration-10.1.html docs/migration-10.html docs/migration-85.html docs/migration-9.html xdocs/migration-10.1.xml xdocs/migration-10.xml xdocs/migrati
Author: kkolinko Date: Wed Nov 17 21:30:57 2021 New Revision: 1895122 URL: http://svn.apache.org/viewvc?rev=1895122&view=rev Log: Followup to r1895119 - Correct a typo. Restore indenting. Modified: tomcat/site/trunk/docs/migration-10.1.html tomcat/site/trunk/docs/migration-10.html tomcat/site/trunk/docs/migration-85.html tomcat/site/trunk/docs/migration-9.html tomcat/site/trunk/xdocs/migration-10.1.xml tomcat/site/trunk/xdocs/migration-10.xml tomcat/site/trunk/xdocs/migration-85.xml tomcat/site/trunk/xdocs/migration-9.xml Modified: tomcat/site/trunk/docs/migration-10.1.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-10.1.html?rev=1895122&r1=1895121&r2=1895122&view=diff == --- tomcat/site/trunk/docs/migration-10.1.html (original) +++ tomcat/site/trunk/docs/migration-10.1.html Wed Nov 17 21:30:57 2021 @@ -105,7 +105,7 @@ of Apache Tomcat. CONFIDENTIAL transport-guarantee. This will likely cause a change in caching behavior for applications that do not explicitly set their own headers but rely on Tomcat's previous behavior. If you -with to disable caching, you will need to configure it explicitly +wish to disable caching, you will need to configure it explicitly in your application. See https://bz.apache.org/bugzilla/show_bug.cgi?id=65513";>BZ 65513 for more information. Modified: tomcat/site/trunk/docs/migration-10.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-10.html?rev=1895122&r1=1895121&r2=1895122&view=diff == --- tomcat/site/trunk/docs/migration-10.html (original) +++ tomcat/site/trunk/docs/migration-10.html Wed Nov 17 21:30:57 2021 @@ -166,7 +166,7 @@ of Apache Tomcat. CONFIDENTIAL transport-guarantee. This will likely cause a change in caching behavior for applications that do not explicitly set their own headers but rely on Tomcat's previous behavior. If you -with to disable caching, you will need to configure it explicitly +wish to disable caching, you will need to configure it explicitly in your application. See https://bz.apache.org/bugzilla/show_bug.cgi?id=65513";>BZ 65513 for more information. Modified: tomcat/site/trunk/docs/migration-85.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-85.html?rev=1895122&r1=1895121&r2=1895122&view=diff == --- tomcat/site/trunk/docs/migration-85.html (original) +++ tomcat/site/trunk/docs/migration-85.html Wed Nov 17 21:30:57 2021 @@ -259,7 +259,7 @@ of Apache Tomcat. CONFIDENTIAL transport-guarantee. This will likely cause a change in caching behavior for applications that do not explicitly set their own headers but rely on Tomcat's previous behavior. If you -with to disable caching, you will need to configure it explicitly +wish to disable caching, you will need to configure it explicitly in your application. See https://bz.apache.org/bugzilla/show_bug.cgi?id=65513";>BZ 65513 for more information. Modified: tomcat/site/trunk/docs/migration-9.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-9.html?rev=1895122&r1=1895121&r2=1895122&view=diff == --- tomcat/site/trunk/docs/migration-9.html (original) +++ tomcat/site/trunk/docs/migration-9.html Wed Nov 17 21:30:57 2021 @@ -339,7 +339,7 @@ of Apache Tomcat. CONFIDENTIAL transport-guarantee. This will likely cause a change in caching behavior for applications that do not explicitly set their own headers but rely on Tomcat's previous behavior. If you -with to disable caching, you will need to configure it explicitly +wish to disable caching, you will need to configure it explicitly in your application. See https://bz.apache.org/bugzilla/show_bug.cgi?id=65513";>BZ 65513 for more information. @@ -436,25 +436,25 @@ of Apache Tomcat. 9.0.50 9.0.52 9.0.53 - 9.0.54 - , new version: - - 9.0.0-M1 - 9.0.0-M3 - 9.0.0-M4 - 9.0.0-M6 - 9.0.0-M8 - 9.0.0-M9 - 9.0.0-M10 - 9.0.0-M11 - 9.0.0-M13 - 9.0.0-M15 - 9.0.0-M17 - 9.0.0-M18 - 9.0.0-M19 - 9.0.0-M20 - 9.0.0-M21 - 9.0.0-M22 +9.0.54 +, new version: + +9.0.0-M1 +9.0.0-M3 +9.0.0-M4 +9.0.0-M6 +9.0.0-M8 +9.0.0-M9 +9.0.0-M10 +9.0.0-M11 +9.0.0-M13 +9.0.0-M15 +9.0.0-M17 +9.0.0-M18 +9.0.0-M19 +9.0.0-M20 +9.0.0-M21
RE: [ANN] Apache Tomcat 8.5.73 available
http://tomcat.apache.org/tomcat-8.5-doc/changelog.html Dream * Excel * Explore * Inspire Jon McAlexander Infrastructure Engineer Asst Vice President Middleware Product Engineering Enterprise CIO | EAS | Middleware | Infrastructure Solutions 8080 Cobblestone Rd | Urbandale, IA 50322 MAC: F4469-010 Tel 515-988-2508 | Cell 515-988-2508 jonmcalexan...@wellsfargo.com This message may contain confidential and/or privileged information. If you are not the addressee or authorized to receive this for the addressee, you must not use, copy, disclose, or take any action based on this message or any information herein. If you have received this message in error, please advise the sender immediately by reply e-mail and delete this message. Thank you for your cooperation. > -Original Message- > From: Christopher Schultz > Sent: Wednesday, November 17, 2021 1:46 PM > To: Tomcat Users List > Cc: Tomcat Developers List ; > annou...@tomcat.apache.org; annou...@apache.org > Subject: [ANN] Apache Tomcat 8.5.73 available > Importance: High > > The Apache Tomcat team announces the immediate availability of Apache > Tomcat 8.5.73. > > Apache Tomcat 8 is an open source software implementation of the Java > Servlet, JavaServer Pages, Java Unified Expression Language, Java > WebSocket and Java Authentication Service Provider Interface for Containers > technologies. > > Apache Tomcat 8.5.73 is a bugfix and feature release. The notable changes > compared to 8.5.72 include: > > - Improvements to native/APR including avoiding a JVM crash if APR fails > to properly initialize and improving error handling. > > - Improve robustness of JNDIRealm for exceptions occurring when getting > the connection. > > Along with lots of other bug fixes and improvements. > > Please refer to the change log for the complete list of changes: > https://urldefense.com/v3/__http://tomcat.apache.org/tomcat-8.5- > doc/changelog.html__;!!F9svGWnIaVPGSwU!6M_AzW35z0_d9hp6uZCdKi23 > uNop4D_uAulQBHDVeyUkeZvY043ysooWNnR0kJBwhnndkws$ > > Downloads: > https://urldefense.com/v3/__http://tomcat.apache.org/download- > 80.cgi__;!!F9svGWnIaVPGSwU!6M_AzW35z0_d9hp6uZCdKi23uNop4D_uAul > QBHDVeyUkeZvY043ysooWNnR0kJBwbBI0P0A$ > > Migration guides from Apache Tomcat 7.x and 8.0.x: > https://urldefense.com/v3/__http://tomcat.apache.org/migration.html__;!! > F9svGWnIaVPGSwU!6M_AzW35z0_d9hp6uZCdKi23uNop4D_uAulQBHDVeyU > keZvY043ysooWNnR0kJBwOGUnpqA$ > > Enjoy! > > - The Apache Tomcat team > > - > To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional > commands, e-mail: dev-h...@tomcat.apache.org > > - > To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional > commands, e-mail: dev-h...@tomcat.apache.org
RE: [ANN] Apache Tomcat 8.5.73 available
Please ignore this Dream * Excel * Explore * Inspire Jon McAlexander Infrastructure Engineer Asst Vice President Middleware Product Engineering Enterprise CIO | EAS | Middleware | Infrastructure Solutions 8080 Cobblestone Rd | Urbandale, IA 50322 MAC: F4469-010 Tel 515-988-2508 | Cell 515-988-2508 jonmcalexan...@wellsfargo.com This message may contain confidential and/or privileged information. If you are not the addressee or authorized to receive this for the addressee, you must not use, copy, disclose, or take any action based on this message or any information herein. If you have received this message in error, please advise the sender immediately by reply e-mail and delete this message. Thank you for your cooperation. > -Original Message- > From: jonmcalexan...@wellsfargo.com.INVALID > > Sent: Wednesday, November 17, 2021 4:35 PM > To: dev@tomcat.apache.org; us...@tomcat.apache.org > Cc: annou...@tomcat.apache.org; annou...@apache.org > Subject: RE: [ANN] Apache Tomcat 8.5.73 available > Importance: High > > https://urldefense.com/v3/__http://tomcat.apache.org/tomcat-8.5- > doc/changelog.html__;!!F9svGWnIaVPGSwU!93daTIhZydgRkeOLLwvrekOfB > dPqKtwM1UV7UQee40_sA2Xh0zUwQe44ktUV8k4bsyJifVo$ > > > Dream * Excel * Explore * Inspire > Jon McAlexander > Infrastructure Engineer > Asst Vice President > > Middleware Product Engineering > Enterprise CIO | EAS | Middleware | Infrastructure Solutions > > 8080 Cobblestone Rd | Urbandale, IA 50322 > MAC: F4469-010 > Tel 515-988-2508 | Cell 515-988-2508 > > jonmcalexan...@wellsfargo.com > This message may contain confidential and/or privileged information. If you > are not the addressee or authorized to receive this for the addressee, you > must not use, copy, disclose, or take any action based on this message or any > information herein. If you have received this message in error, please advise > the sender immediately by reply e-mail and delete this message. Thank you > for your cooperation. > > > > -Original Message- > > From: Christopher Schultz > > Sent: Wednesday, November 17, 2021 1:46 PM > > To: Tomcat Users List > > Cc: Tomcat Developers List ; > > annou...@tomcat.apache.org; annou...@apache.org > > Subject: [ANN] Apache Tomcat 8.5.73 available > > Importance: High > > > > The Apache Tomcat team announces the immediate availability of Apache > > Tomcat 8.5.73. > > > > Apache Tomcat 8 is an open source software implementation of the Java > > Servlet, JavaServer Pages, Java Unified Expression Language, Java > > WebSocket and Java Authentication Service Provider Interface for > > Containers technologies. > > > > Apache Tomcat 8.5.73 is a bugfix and feature release. The notable > > changes compared to 8.5.72 include: > > > > - Improvements to native/APR including avoiding a JVM crash if APR fails > > to properly initialize and improving error handling. > > > > - Improve robustness of JNDIRealm for exceptions occurring when getting > > the connection. > > > > Along with lots of other bug fixes and improvements. > > > > Please refer to the change log for the complete list of changes: > > https://urldefense.com/v3/__http://tomcat.apache.org/tomcat-8.5- > > > doc/changelog.html__;!!F9svGWnIaVPGSwU!6M_AzW35z0_d9hp6uZCdKi23 > > uNop4D_uAulQBHDVeyUkeZvY043ysooWNnR0kJBwhnndkws$ > > > > Downloads: > > https://urldefense.com/v3/__http://tomcat.apache.org/download- > > > 80.cgi__;!!F9svGWnIaVPGSwU!6M_AzW35z0_d9hp6uZCdKi23uNop4D_uAul > > QBHDVeyUkeZvY043ysooWNnR0kJBwbBI0P0A$ > > > > Migration guides from Apache Tomcat 7.x and 8.0.x: > > > https://urldefense.com/v3/__http://tomcat.apache.org/migration.html__;!! > > > F9svGWnIaVPGSwU!6M_AzW35z0_d9hp6uZCdKi23uNop4D_uAulQBHDVeyU > > keZvY043ysooWNnR0kJBwOGUnpqA$ > > > > Enjoy! > > > > - The Apache Tomcat team > > > > - > > To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For > > additional commands, e-mail: dev-h...@tomcat.apache.org > > > > - > > To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For > > additional commands, e-mail: dev-h...@tomcat.apache.org
[GitHub] [tomcat] fengpan0403 opened a new pull request #458: 10.0.x
fengpan0403 opened a new pull request #458: URL: https://github.com/apache/tomcat/pull/458 Typos fix. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org