[GitHub] [tomcat] aooohan commented on pull request #589: XSD patterns normalization
aooohan commented on PR #589: URL: https://github.com/apache/tomcat/pull/589#issuecomment-1427559632 We are not able to modify these files, maybe you should report this to [Jakarta project](https://github.com/jakartaee). -- 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
[GitHub] [tomcat] aooohan closed pull request #589: XSD patterns normalization
aooohan closed pull request #589: XSD patterns normalization URL: https://github.com/apache/tomcat/pull/589 -- 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
[GitHub] [tomcat] tbw777 commented on pull request #589: XSD patterns normalization
tbw777 commented on PR #589: URL: https://github.com/apache/tomcat/pull/589#issuecomment-1427636757 @aooohan ty -- 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
Re: [VOTE] Release Apache Tomcat Native 2.0.3
[X] Stable, go ahead and release On Wed, Feb 8, 2023 at 5:55 PM Mark Thomas wrote: > The key differences of version 2.0.3 compared to 2.0.2 are: > > - The windows binaries in this release have been built with OpenSSL >3.0.8 and APR 1.7.2 > > The 2.0.x branch is primarily intended for use with Tomcat 10.1.x but > can be used with earlier versions as long as the APR/native connector is > not used. > > The proposed release artefacts can be found at [1], > and the build was done using tag [2]. > > The Apache Tomcat Native 2.0.3 release is > [ ] Stable, go ahead and release > [ ] Broken because of ... > > Thanks, > > Mark > > > [1] > > https://dist.apache.org/repos/dist/dev/tomcat/tomcat-connectors/native/2.0.3 > [2] > > https://gitbox.apache.org/repos/asf?p=tomcat-native.git;a=commit;h=2b617703217b2f94fc51afc0ad30e325f69853a2 > > - > To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org > For additional commands, e-mail: dev-h...@tomcat.apache.org > >
[tomcat] branch main updated: Deprecate deferAccept (it was an APR feature)
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 1f95a47ab3 Deprecate deferAccept (it was an APR feature) 1f95a47ab3 is described below commit 1f95a47ab3c2eea4870363c76303f8f4ee0e0663 Author: Mark Thomas AuthorDate: Mon Feb 13 12:25:25 2023 + Deprecate deferAccept (it was an APR feature) --- java/org/apache/tomcat/util/net/AbstractEndpoint.java | 8 1 file changed, 8 insertions(+) diff --git a/java/org/apache/tomcat/util/net/AbstractEndpoint.java b/java/org/apache/tomcat/util/net/AbstractEndpoint.java index 86dbf9a98c..d80053a0de 100644 --- a/java/org/apache/tomcat/util/net/AbstractEndpoint.java +++ b/java/org/apache/tomcat/util/net/AbstractEndpoint.java @@ -973,6 +973,14 @@ public abstract class AbstractEndpoint { public boolean getUseAsyncIO() { return useAsyncIO; } +/** + * Always returns {@code false}. + * + * @return Always {@code false} + * + * @deprecated This code will be removed in Tomcat 11 onwards + */ +@Deprecated protected boolean getDeferAccept() { return false; } - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[tomcat] branch main updated: Remove deprecated code
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 fe36afd4df Remove deprecated code fe36afd4df is described below commit fe36afd4df187e7a6e5cffce8e9e63ad4119e848 Author: Mark Thomas AuthorDate: Mon Feb 13 12:26:03 2023 + Remove deprecated code --- .../apache/tomcat/util/net/AbstractEndpoint.java | 27 -- 1 file changed, 27 deletions(-) diff --git a/java/org/apache/tomcat/util/net/AbstractEndpoint.java b/java/org/apache/tomcat/util/net/AbstractEndpoint.java index d80053a0de..799f5460fe 100644 --- a/java/org/apache/tomcat/util/net/AbstractEndpoint.java +++ b/java/org/apache/tomcat/util/net/AbstractEndpoint.java @@ -17,7 +17,6 @@ package org.apache.tomcat.util.net; import java.io.IOException; -import java.io.OutputStreamWriter; import java.net.InetAddress; import java.net.InetSocketAddress; import java.net.NetworkInterface; @@ -973,19 +972,6 @@ public abstract class AbstractEndpoint { public boolean getUseAsyncIO() { return useAsyncIO; } -/** - * Always returns {@code false}. - * - * @return Always {@code false} - * - * @deprecated This code will be removed in Tomcat 11 onwards - */ -@Deprecated -protected boolean getDeferAccept() { -return false; -} - - /** * The default behavior is to identify connectors uniquely with address * and port. However, certain connectors are not using that and need @@ -1206,19 +1192,6 @@ public abstract class AbstractEndpoint { getLog().debug("About to unlock socket for:" + unlockAddress); } s.connect(unlockAddress,utmo); -if (getDeferAccept()) { -/* - * In the case of a deferred accept / accept filters we need to - * send data to wake up the accept. Send OPTIONS * to bypass - * even BSD accept filters. The Acceptor will discard it. - */ -OutputStreamWriter sw; - -sw = new OutputStreamWriter(s.getOutputStream(), "ISO-8859-1"); -sw.write("OPTIONS * HTTP/1.0\r\n" + -"User-Agent: Tomcat wakeup connection\r\n\r\n"); -sw.flush(); -} if (getLog().isDebugEnabled()) { getLog().debug("Socket unlock completed for:" + unlockAddress); } - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[tomcat] branch 10.1.x updated: Deprecate deferAccept (it was an APR feature)
This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 10.1.x in repository https://gitbox.apache.org/repos/asf/tomcat.git The following commit(s) were added to refs/heads/10.1.x by this push: new 59134630c2 Deprecate deferAccept (it was an APR feature) 59134630c2 is described below commit 59134630c21b4bf70dcad70d24ef5ab417d12042 Author: Mark Thomas AuthorDate: Mon Feb 13 12:25:25 2023 + Deprecate deferAccept (it was an APR feature) --- java/org/apache/tomcat/util/net/AbstractEndpoint.java | 8 1 file changed, 8 insertions(+) diff --git a/java/org/apache/tomcat/util/net/AbstractEndpoint.java b/java/org/apache/tomcat/util/net/AbstractEndpoint.java index bdf94f28ac..e6f2c50c28 100644 --- a/java/org/apache/tomcat/util/net/AbstractEndpoint.java +++ b/java/org/apache/tomcat/util/net/AbstractEndpoint.java @@ -814,6 +814,14 @@ public abstract class AbstractEndpoint { public boolean getUseAsyncIO() { return useAsyncIO; } +/** + * Always returns {@code false}. + * + * @return Always {@code false} + * + * @deprecated This code will be removed in Tomcat 11 onwards + */ +@Deprecated protected boolean getDeferAccept() { return false; } - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[tomcat] branch main updated: Move to the dev Panama API
This is an automated email from the ASF dual-hosted git repository. remm 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 4ec9c80bfd Move to the dev Panama API 4ec9c80bfd is described below commit 4ec9c80bfde9f4126d70768f739215330e25e3b9 Author: remm AuthorDate: Mon Feb 13 13:36:02 2023 +0100 Move to the dev Panama API For now SegmentScope -> Arena. This is obviously simpler to use, but some Arenas cannot be closed. Will refresh the jextract sources soon (a manual quick hack should be enough for now). --- modules/openssl-foreign/README.md | 23 ++ modules/openssl-foreign/pom.xml| 4 +- .../util/net/openssl/panama/OpenSSLContext.java| 47 ++-- .../util/net/openssl/panama/OpenSSLEngine.java | 47 ++-- .../openssl/panama/OpenSSLLifecycleListener.java | 2 +- .../net/openssl/panama/OpenSSLSessionContext.java | 4 +- .../apache/tomcat/util/openssl/Constants$root.java | 2 +- .../apache/tomcat/util/openssl/RuntimeHelper.java | 12 +++--- .../SSL_CTX_set_cert_verify_callback$cb.java | 50 -- .../openssl/SSL_CTX_set_tmp_dh_callback$dh.java| 50 -- .../util/openssl/SSL_set_info_callback$cb.java | 50 -- 11 files changed, 73 insertions(+), 218 deletions(-) diff --git a/modules/openssl-foreign/README.md b/modules/openssl-foreign/README.md index a57db35620..bbc365b3fb 100644 --- a/modules/openssl-foreign/README.md +++ b/modules/openssl-foreign/README.md @@ -2,14 +2,20 @@ ## This module is experimental -It uses the JEP 434 API. More details on this API are available -at `https://openjdk.java.net/jeps/434`. +It uses the JEP XXX API. More details on this API are available +at `https://openjdk.java.net/jeps/XXX`. -## Building +## Building Java 21 with the JEP XXX API -The module can be built using Java 20. This will be the only Java version that -is supported as the JEP 434 API is incubating and will continue to evolve. -It can be built and run with Apache Tomcat 9.0 or newer. +Clone `https://github.com/openjdk/panama-foreign/` in some location and +checkout the main branch. This is a Java 21 development JVM +with the JEP XXX API. It may fail to build. When this happens, step back +one commit at a time until it does. + +``` +bash configure +make images +``` ## Running @@ -54,8 +60,9 @@ export JAVA_OPTS="--enable-preview --enable-native-access=ALL-UNNAMED" jextract is now available in its own standalone repository. Clone `https://github.com/openjdk/jextract` in some location and -checkout the branch that supports Java 20. Please refer to the -instructions from the repository for building. +checkout the branch that supports Java 21. Please refer to the +instructions from the repository for building. It should be the +`panama` branch. This step is only useful to be able to use additional native APIs from OpenSSL or stdlib. diff --git a/modules/openssl-foreign/pom.xml b/modules/openssl-foreign/pom.xml index bbd08a8664..26fa4978e6 100644 --- a/modules/openssl-foreign/pom.xml +++ b/modules/openssl-foreign/pom.xml @@ -78,8 +78,8 @@ org.apache.maven.plugins maven-compiler-plugin -20 -20 +21 +21 --enable-preview diff --git a/modules/openssl-foreign/src/main/java/org/apache/tomcat/util/net/openssl/panama/OpenSSLContext.java b/modules/openssl-foreign/src/main/java/org/apache/tomcat/util/net/openssl/panama/OpenSSLContext.java index 1b73870194..c958c09f8a 100644 --- a/modules/openssl-foreign/src/main/java/org/apache/tomcat/util/net/openssl/panama/OpenSSLContext.java +++ b/modules/openssl-foreign/src/main/java/org/apache/tomcat/util/net/openssl/panama/OpenSSLContext.java @@ -25,7 +25,6 @@ import java.lang.foreign.FunctionDescriptor; import java.lang.foreign.Linker; import java.lang.foreign.MemorySegment; import java.lang.foreign.SegmentAllocator; -import java.lang.foreign.SegmentScope; import java.lang.foreign.ValueLayout; import java.lang.invoke.MethodHandle; import java.lang.invoke.MethodHandles; @@ -175,7 +174,7 @@ public class OpenSSLContext implements org.apache.tomcat.util.net.SSLContext { } private final ContextState state; -private final SegmentScope contextScope; +private final Arena contextArena; private final Cleanable cleanable; private static String[] getCiphers(MemorySegment sslCtx) { @@ -207,7 +206,7 @@ public class OpenSSLContext implements org.apache.tomcat.util.net.SSLContext { this.sslHostConfig = certificate.getSSLHostConfig(); this.certificate = certificate; -contextScope = SegmentScope.auto(); +conte
[Bug 66476] New: org.apache.tomcat.util.net.Acceptor.run Socket accept failed java.io.IOException: Duplicate accept detected.
https://bz.apache.org/bugzilla/show_bug.cgi?id=66476 Bug ID: 66476 Summary: org.apache.tomcat.util.net.Acceptor.run Socket accept failed java.io.IOException: Duplicate accept detected. Product: Tomcat 9 Version: 9.0.58 Hardware: PC OS: Linux Status: NEW Severity: critical Priority: P2 Component: Connectors Assignee: dev@tomcat.apache.org Reporter: patkarom...@gmail.com Target Milestone: - Hello, Sometimes we see below error in our tomcat log file, and when this happens tomcat stops accepting any more requests : - -- ERROR: - -- 10-Feb-2023 02:16:19.618 SEVERE [http-nio-80-Acceptor] org.apache.tomcat.util.net.Acceptor.run Socket accept failed java.io.IOException: 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 at org.apache.tomcat.util.net.NioEndpoint.serverSocketAccept(NioEndpoint.java:548) at org.apache.tomcat.util.net.NioEndpoint.serverSocketAccept(NioEndpoint.java:78) at org.apache.tomcat.util.net.Acceptor.run(Acceptor.java:129) at java.lang.Thread.run(Thread.java:748) -- Apache Tomcat version : - Apache Tomcat/9.0.58 Frequency of occurance : - Sometimes Reproducible consistently ? : - No, it appears sometimes randomly...and on tomcat restart it goes away but it may appear randomly sometime later OS = CentOS Kernel (uname -sr) = Linux 6.0.9-1.el7.elrepo.x86_64 Server arch = amd64 Setup: - We are using Camunda 7.16 BPMN tool which comes with inbuilt Apache Tomcat 9.0.58. This is deployed on our Linux VM (CentOS). The VM is within our company network, and ... via company's firewall another trusted application on Azure cloud (outside company network)...is only allowed to make REST API calls to Camunda (hosted on Tomcat). When Tomcat is started all works fine, requests placed from trusted application on Azure Cloud are able to reach our Tomcat and our application works on it, until out of the blue and randomly above error occurs and tomcat no longer serves request coming from external application on cloud. On the other hand, if we fire similar request from within our company network machines as many times as we want... as frequently as possible, in such scenario, the above error does not occur and Tomcat allows all requests. In other words, it seems above issue occurs only for external requests and not internal ones. What has been tried so far ?: - >From several posts after google search it was found that Linux Kernel version could help. Previously it was 3.x and now it is upgraded to 6.0.9-1 and Apache Tomcat version is 9.0.58... still we face the above error. Queries: - 1) Why it behaves strangely with external requests and not with internal ones ? 2) How can we consistently reproduce the issue ? 3) What could be the possible cause and how to fix it ? Any help in this regard can be very helpful. Let me know if you need any more information. Thanks and Regards Omkar Patkar -- 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
[tomcat] branch 10.1.x updated: Work-around unexplained linger behaviour on MacOS
This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 10.1.x in repository https://gitbox.apache.org/repos/asf/tomcat.git The following commit(s) were added to refs/heads/10.1.x by this push: new 282b4ac29b Work-around unexplained linger behaviour on MacOS 282b4ac29b is described below commit 282b4ac29b7b8748210f929bd66389deb448ae1d Author: Mark Thomas AuthorDate: Mon Feb 13 15:09:14 2023 + Work-around unexplained linger behaviour on MacOS --- java/org/apache/tomcat/util/net/AbstractEndpoint.java | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/java/org/apache/tomcat/util/net/AbstractEndpoint.java b/java/org/apache/tomcat/util/net/AbstractEndpoint.java index e6f2c50c28..4651dbf12a 100644 --- a/java/org/apache/tomcat/util/net/AbstractEndpoint.java +++ b/java/org/apache/tomcat/util/net/AbstractEndpoint.java @@ -1042,7 +1042,10 @@ public abstract class AbstractEndpoint { utmo = getSocketProperties().getUnlockTimeout(); } s.setSoTimeout(stmo); - s.setSoLinger(getSocketProperties().getSoLingerOn(),getSocketProperties().getSoLingerTime()); +// Newer MacOS versions (e.g. Ventura 13.2) appear to linger for ~1s on close when linger is disabled. +// That causes delays when running the unit tests. Explicitly enableing linger but with a timeout of +// zero seconds seems to fix the issue. +s.setSoLinger(true, 0); if (getLog().isDebugEnabled()) { getLog().debug("About to unlock socket for:" + unlockAddress); } - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[tomcat] branch main updated: Work-around unexplained linger behaviour on MacOS
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 a749447043 Work-around unexplained linger behaviour on MacOS a749447043 is described below commit a74944704337fe1402e3b25241565fe9b8aaef97 Author: Mark Thomas AuthorDate: Mon Feb 13 15:09:14 2023 + Work-around unexplained linger behaviour on MacOS --- java/org/apache/tomcat/util/net/AbstractEndpoint.java | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/java/org/apache/tomcat/util/net/AbstractEndpoint.java b/java/org/apache/tomcat/util/net/AbstractEndpoint.java index 799f5460fe..ee91fd7121 100644 --- a/java/org/apache/tomcat/util/net/AbstractEndpoint.java +++ b/java/org/apache/tomcat/util/net/AbstractEndpoint.java @@ -1187,7 +1187,10 @@ public abstract class AbstractEndpoint { utmo = getSocketProperties().getUnlockTimeout(); } s.setSoTimeout(stmo); - s.setSoLinger(getSocketProperties().getSoLingerOn(),getSocketProperties().getSoLingerTime()); +// Newer MacOS versions (e.g. Ventura 13.2) appear to linger for ~1s on close when linger is disabled. +// That causes delays when running the unit tests. Explicitly enableing linger but with a timeout of +// zero seconds seems to fix the issue. +s.setSoLinger(true, 0); if (getLog().isDebugEnabled()) { getLog().debug("About to unlock socket for:" + unlockAddress); } - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[tomcat] branch 9.0.x updated: Work-around unexplained linger behaviour on MacOS
This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 9.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git The following commit(s) were added to refs/heads/9.0.x by this push: new ad83bb0961 Work-around unexplained linger behaviour on MacOS ad83bb0961 is described below commit ad83bb09610e3245da141bd29589ffe5777e5dd8 Author: Mark Thomas AuthorDate: Mon Feb 13 15:09:14 2023 + Work-around unexplained linger behaviour on MacOS --- java/org/apache/tomcat/util/net/AbstractEndpoint.java | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/java/org/apache/tomcat/util/net/AbstractEndpoint.java b/java/org/apache/tomcat/util/net/AbstractEndpoint.java index 96c632571b..63066e71a7 100644 --- a/java/org/apache/tomcat/util/net/AbstractEndpoint.java +++ b/java/org/apache/tomcat/util/net/AbstractEndpoint.java @@ -1089,7 +1089,10 @@ public abstract class AbstractEndpoint { utmo = getSocketProperties().getUnlockTimeout(); } s.setSoTimeout(stmo); - s.setSoLinger(getSocketProperties().getSoLingerOn(),getSocketProperties().getSoLingerTime()); +// Newer MacOS versions (e.g. Ventura 13.2) appear to linger for ~1s on close when linger is disabled. +// That causes delays when running the unit tests. Explicitly enableing linger but with a timeout of +// zero seconds seems to fix the issue. +s.setSoLinger(true, 0); if (getLog().isDebugEnabled()) { getLog().debug("About to unlock socket for:" + unlockAddress); } - 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: Work-around unexplained linger behaviour on MacOS
This is an automated email from the ASF dual-hosted git repository. markt 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 d8fbc7925a Work-around unexplained linger behaviour on MacOS d8fbc7925a is described below commit d8fbc7925a1574546130610d0e2417e96c7977df Author: Mark Thomas AuthorDate: Mon Feb 13 15:09:14 2023 + Work-around unexplained linger behaviour on MacOS --- java/org/apache/tomcat/util/net/AbstractEndpoint.java | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/java/org/apache/tomcat/util/net/AbstractEndpoint.java b/java/org/apache/tomcat/util/net/AbstractEndpoint.java index ac7ba21bb5..f86df63f6e 100644 --- a/java/org/apache/tomcat/util/net/AbstractEndpoint.java +++ b/java/org/apache/tomcat/util/net/AbstractEndpoint.java @@ -1083,7 +1083,10 @@ public abstract class AbstractEndpoint { utmo = getSocketProperties().getUnlockTimeout(); } s.setSoTimeout(stmo); - s.setSoLinger(getSocketProperties().getSoLingerOn(),getSocketProperties().getSoLingerTime()); +// Newer MacOS versions (e.g. Ventura 13.2) appear to linger for ~1s on close when linger is disabled. +// That causes delays when running the unit tests. Explicitly enableing linger but with a timeout of +// zero seconds seems to fix the issue. +s.setSoLinger(true, 0); if (getLog().isDebugEnabled()) { getLog().debug("About to unlock socket for:" + unlockAddress); } - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: [VOTE] Release Apache Tomcat Native 2.0.3
On 08/02/2023 15:45, Mark Thomas wrote: The Apache Tomcat Native 2.0.3 release is [X] Stable, go ahead and release [ ] Broken because of ... Builds on Linux, MacOS (M1) MacOS (Intel) and Windows. Tomcat 11.0.x tests pass on Windows with pre-built binary. Tomcat 11.0.x tests pass on Linux, and 2x MacOS with locally built binaries. Mark - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: [VOTE] Release Apache Tomcat Native 2.0.3
[X] Stable, go ahead and release Note: build was successful with openssl 3.0.8 but not with 3.0.1
[tomcat] branch main updated: Add additional HTTP status code constants defined for Servlet 6.1
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 f9ed0f7400 Add additional HTTP status code constants defined for Servlet 6.1 f9ed0f7400 is described below commit f9ed0f74008c47396a70a69b418f8df44cbff860 Author: Mark Thomas AuthorDate: Mon Feb 13 17:29:35 2023 + Add additional HTTP status code constants defined for Servlet 6.1 Use the constants where appropriate --- java/jakarta/servlet/http/HttpServletResponse.java | 25 ++ .../tomcat/websocket/server/UpgradeUtil.java | 2 +- .../servlets/TestDefaultServletRedirect.java | 2 +- webapps/docs/changelog.xml | 5 + 4 files changed, 32 insertions(+), 2 deletions(-) diff --git a/java/jakarta/servlet/http/HttpServletResponse.java b/java/jakarta/servlet/http/HttpServletResponse.java index 7b1e84e2fa..d633678eda 100644 --- a/java/jakarta/servlet/http/HttpServletResponse.java +++ b/java/jakarta/servlet/http/HttpServletResponse.java @@ -388,6 +388,12 @@ public interface HttpServletResponse extends ServletResponse { */ public static final int SC_TEMPORARY_REDIRECT = 307; +/** + * Status code (308) indicating that the requested resource resides permanently under a different URI. The new URI + * SHOULD be given by the Location field in the response. + */ +public static final int SC_PERMANENT_REDIRECT = 308; + /** * Status code (400) indicating the request sent by the client was syntactically incorrect. */ @@ -488,6 +494,25 @@ public interface HttpServletResponse extends ServletResponse { */ public static final int SC_EXPECTATION_FAILED = 417; +/** + * Status code (421) indicating that the server is unwilling or unable to produce an authoritative response for the + * target URI. + */ +public static final int SC_MISDIRECTED_REQUEST = 421; + +/** + * Status code (422) indicating that the server understands the content type of the request but is unable to process + * the contained instructions. + */ +public static final int SC_UNPROCESSABLE_CONTENT = 422; + +/** + * Status code (426) indicating that the server refuses to perform the request using the current protocol but may be + * willing to do so after the client upgrades to a different protocol. The server must include an appropriate + * {@code Upgrade} header in the response. + */ +public static final int SC_UPGRADE_REQUIRED = 426; + /** * Status code (500) indicating an error inside the HTTP server which prevented it from fulfilling the request. */ diff --git a/java/org/apache/tomcat/websocket/server/UpgradeUtil.java b/java/org/apache/tomcat/websocket/server/UpgradeUtil.java index b0e6b49328..09fa90021e 100644 --- a/java/org/apache/tomcat/websocket/server/UpgradeUtil.java +++ b/java/org/apache/tomcat/websocket/server/UpgradeUtil.java @@ -100,7 +100,7 @@ public class UpgradeUtil { } if (!headerContainsToken(req, Constants.WS_VERSION_HEADER_NAME, Constants.WS_VERSION_HEADER_VALUE)) { -resp.setStatus(426); +resp.setStatus(HttpServletResponse.SC_UPGRADE_REQUIRED); resp.setHeader(Constants.WS_VERSION_HEADER_NAME, Constants.WS_VERSION_HEADER_VALUE); return; diff --git a/test/org/apache/catalina/servlets/TestDefaultServletRedirect.java b/test/org/apache/catalina/servlets/TestDefaultServletRedirect.java index 60e75d9ac8..1a455c9fb2 100644 --- a/test/org/apache/catalina/servlets/TestDefaultServletRedirect.java +++ b/test/org/apache/catalina/servlets/TestDefaultServletRedirect.java @@ -54,7 +54,7 @@ public class TestDefaultServletRedirect extends TomcatBaseTest { parameterSets.add(new Object[] { Integer.valueOf(HttpServletResponse.SC_MOVED_PERMANENTLY) }); parameterSets.add(new Object[] { Integer.valueOf(HttpServletResponse.SC_FOUND) }); parameterSets.add(new Object[] { Integer.valueOf(HttpServletResponse.SC_TEMPORARY_REDIRECT) }); -parameterSets.add(new Object[] { Integer.valueOf(308) }); +parameterSets.add(new Object[] { Integer.valueOf(HttpServletResponse.SC_PERMANENT_REDIRECT) }); return parameterSets; } diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml index e898d09c6f..843885e5b5 100644 --- a/webapps/docs/changelog.xml +++ b/webapps/docs/changelog.xml @@ -175,6 +175,11 @@ RemoteIpFilter determines that this request was submitted via a secure channel. (lihan) + +Add the additional HTTP status code constants to +HttpServletResponse defined by the Jakarta Servlet project +for the Servlet 6.1 API. (markt) + -
Re: [VOTE] Release Apache Tomcat Native 2.0.3
Mark, Thanks again for RMing. On 2/8/23 10:45, Mark Thomas wrote: The key differences of version 2.0.3 compared to 2.0.2 are: - The windows binaries in this release have been built with OpenSSL 3.0.8 and APR 1.7.2 The 2.0.x branch is primarily intended for use with Tomcat 10.1.x but can be used with earlier versions as long as the APR/native connector is not used. The proposed release artefacts can be found at [1], and the build was done using tag [2]. The Apache Tomcat Native 2.0.3 release is [X] Stable, go ahead and release [ ] Broken because of ... Compile-tested only on MacOS. The only difference between this version and the previous is a bundled version of OpenSSL, so it does not even effect these *NIX-style environments. Thanks, -chris - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[VOTE][RESULT] Release Apache Tomcat Native 2.0.3
The following votes were cast: Binding: +1: remm, markt, schultz Non-binding: +1: Dimitris Soumis, Vasileios Mourikis No other votes were cast. The vote therefore passes. Thanks to everyone who contributed to this release. Mark - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: [VOTE] Release Apache Tomcat Native 1.2.36
On 08/02/2023 16:43, Mark Thomas wrote: The Apache Tomcat Native 1.2.36 release is [X] Stable, go ahead and release [ ] Broken because of ... Builds on Linux, MacOS (M1), MacOS (Intel) and Windows. Tomcat 9.0.x tests pass on Windows with pre-built binary. Tomcat 9.0.x tests pass on Linux, Windows and 2x MacOS with locally built binaries. Mark - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[VOTE][RESULT] Release Apache Tomcat Native 1.2.36
The following votes were cast: Binding: +1: schultz, remm, markt Non-binding: +1: Dimitris Soumis, Vasileios Mourikis No other votes were cast. The vote therefore passes. Thanks to everyone who contributed to this release. Mark - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r60094 - /dev/tomcat/tomcat-connectors/native/1.2.36/ /dev/tomcat/tomcat-connectors/native/2.0.3/ /release/tomcat/tomcat-connectors/native/ /release/tomcat/tomcat-connectors/native/1.2.36/
Author: markt Date: Mon Feb 13 20:22:00 2023 New Revision: 60094 Log: Release Apache Tomcat Native 1.2.36 and 2.0.3 Added: release/tomcat/tomcat-connectors/native/1.2.36/ - copied from r60093, dev/tomcat/tomcat-connectors/native/1.2.36/ release/tomcat/tomcat-connectors/native/2.0.3/ - copied from r60093, dev/tomcat/tomcat-connectors/native/2.0.3/ Removed: dev/tomcat/tomcat-connectors/native/1.2.36/ dev/tomcat/tomcat-connectors/native/2.0.3/ Modified: release/tomcat/tomcat-connectors/native/README.html Modified: release/tomcat/tomcat-connectors/native/README.html == --- release/tomcat/tomcat-connectors/native/README.html (original) +++ release/tomcat/tomcat-connectors/native/README.html Mon Feb 13 20:22:00 2023 @@ -1,6 +1,6 @@ The Apache Tomcat Native The latest releases are: -1.2.35 -2.0.1 +1.2.36 +2.0.3 - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[tomcat-native] branch main updated: Add release date for Tomcat Native 2.0.3
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-native.git The following commit(s) were added to refs/heads/main by this push: new 4db34fa1e Add release date for Tomcat Native 2.0.3 4db34fa1e is described below commit 4db34fa1ec040045283002aa1427131a85fca6b0 Author: Mark Thomas AuthorDate: Mon Feb 13 20:30:54 2023 + Add release date for Tomcat Native 2.0.3 --- xdocs/index.xml | 4 ++-- xdocs/news/{project.xml => 2023.xml} | 38 ++-- xdocs/news/project.xml | 1 + 3 files changed, 22 insertions(+), 21 deletions(-) diff --git a/xdocs/index.xml b/xdocs/index.xml index 950d53354..e6b79fa22 100644 --- a/xdocs/index.xml +++ b/xdocs/index.xml @@ -42,10 +42,10 @@ -08 November 2022 - TC-Native-2.0.2 +13 February 2023 - TC-Native-2.0.3 released The Apache Tomcat team is proud to announce the immediate availability of -Tomcat Native 2.0.2 Stable. +Tomcat Native 2.0.3 Stable. The sources and the binaries for selected platforms are available from the Download page. diff --git a/xdocs/news/project.xml b/xdocs/news/2023.xml similarity index 57% copy from xdocs/news/project.xml copy to xdocs/news/2023.xml index 26e569a1e..a39040b68 100644 --- a/xdocs/news/project.xml +++ b/xdocs/news/2023.xml @@ -15,28 +15,28 @@ See the License for the specific language governing permissions and limitations under the License. --> -http://tomcat.apache.org/";> + +]> + - The Apache Tomcat Native - News + &project; - -The Apache Tomcat Native - News - + +2023 News and Status + - - - - - - - - - - - - + + + +The Apache Tomcat team is proud to announce the immediate +availability of Tomcat Native 2.0.3. + + + + - + + diff --git a/xdocs/news/project.xml b/xdocs/news/project.xml index 26e569a1e..ec408b7ed 100644 --- a/xdocs/news/project.xml +++ b/xdocs/news/project.xml @@ -35,6 +35,7 @@ + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[tomcat-native] branch 1.2.x updated: Update for release of 1.2.36
This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 1.2.x in repository https://gitbox.apache.org/repos/asf/tomcat-native.git The following commit(s) were added to refs/heads/1.2.x by this push: new 9cf052747 Update for release of 1.2.36 9cf052747 is described below commit 9cf05274715720ea01b648b1f60c6d3542d84a26 Author: Mark Thomas AuthorDate: Mon Feb 13 20:33:29 2023 + Update for release of 1.2.36 --- xdocs/index.xml| 4 ++-- xdocs/news/2023.xml| 42 ++ xdocs/news/project.xml | 1 + 3 files changed, 45 insertions(+), 2 deletions(-) diff --git a/xdocs/index.xml b/xdocs/index.xml index 13a576651..ffe4028b4 100644 --- a/xdocs/index.xml +++ b/xdocs/index.xml @@ -60,10 +60,10 @@ -12 July 2022 - TC-Native-1.2.35 +13 February 2023 - TC-Native-1.2.36 released The Apache Tomcat team is proud to announce the immediate availability of -Tomcat Native 1.2.35 Stable. +Tomcat Native 1.2.36 Stable. The sources and the binaries for selected platforms are available from the Download page. diff --git a/xdocs/news/2023.xml b/xdocs/news/2023.xml new file mode 100644 index 0..f69efb2af --- /dev/null +++ b/xdocs/news/2023.xml @@ -0,0 +1,42 @@ + + + +]> + + + &project; + + +2023 News and Status + + + + + + + +The Apache Tomcat team is proud to announce the immediate +availability of Tomcat Native 1.2.36. + + + + + + + \ No newline at end of file diff --git a/xdocs/news/project.xml b/xdocs/news/project.xml index 20c66baa0..115d900f0 100644 --- a/xdocs/news/project.xml +++ b/xdocs/news/project.xml @@ -35,6 +35,7 @@ + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1907614 - in /tomcat/site/trunk/docs/native-doc: index.html miscellaneous/changelog.html news/2022.html news/2023.html
Author: markt Date: Mon Feb 13 20:45:11 2023 New Revision: 1907614 URL: http://svn.apache.org/viewvc?rev=1907614&view=rev Log: Update tomcat-native docs for 2.0.3 release Added: tomcat/site/trunk/docs/native-doc/news/2023.html Modified: tomcat/site/trunk/docs/native-doc/index.html tomcat/site/trunk/docs/native-doc/miscellaneous/changelog.html tomcat/site/trunk/docs/native-doc/news/2022.html Modified: tomcat/site/trunk/docs/native-doc/index.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/native-doc/index.html?rev=1907614&r1=1907613&r2=1907614&view=diff == --- tomcat/site/trunk/docs/native-doc/index.html (original) +++ tomcat/site/trunk/docs/native-doc/index.html Mon Feb 13 20:45:11 2023 @@ -10,10 +10,10 @@ Headlines -08 November 2022 - TC-Native-2.0.2 +13 February 2023 - TC-Native-2.0.3 released The Apache Tomcat team is proud to announce the immediate availability of -Tomcat Native 2.0.2 Stable. +Tomcat Native 2.0.3 Stable. The sources and the binaries for selected platforms are available from the Download page. Modified: tomcat/site/trunk/docs/native-doc/miscellaneous/changelog.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/native-doc/miscellaneous/changelog.html?rev=1907614&r1=1907613&r2=1907614&view=diff == --- tomcat/site/trunk/docs/native-doc/miscellaneous/changelog.html (original) +++ tomcat/site/trunk/docs/native-doc/miscellaneous/changelog.html Mon Feb 13 20:45:11 2023 @@ -4,6 +4,15 @@ This is the Changelog for Apache Tomcat Native 2.0.x. The Tomcat Native 2.0.x branch started from the 1.2.33 tag. +Changes in 2.0.3 + + + Update the recommended minimum version of APR to 1.7.2. (markt) + + + Update the recommended minimum version of OpenSSL to 3.0.8. (markt) + + Changes in 2.0.2 Modified: tomcat/site/trunk/docs/native-doc/news/2022.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/native-doc/news/2022.html?rev=1907614&r1=1907613&r2=1907614&view=diff == --- tomcat/site/trunk/docs/native-doc/news/2022.html (original) +++ tomcat/site/trunk/docs/native-doc/news/2022.html Mon Feb 13 20:45:11 2023 @@ -1,5 +1,5 @@ -The Apache Tomcat Native - News - 2022 News and Statushttp://tomcat.apache.org/";>http://www.apache.org/"; target="_blank">The Apache Tomcat Native - NewsLinksDocs Home Miscellaneous DocumentationChangelogTLS renegotiationNews20222022 News and Status2022 News & Status +The Apache Tomcat Native - News - 2022 News and Statushttp://tomcat.apache.org/";>http://www.apache.org/"; target="_blank">The Apache Tomcat Native - NewsLinksDocs Home Miscellaneous DocumentationChangelogTLS renegotiationNews202320222022 News and Status2022 News & Status 11 November 2022 - TC-Native-2.0.2 released The Apache Tomcat team is proud to announce the immediate Added: tomcat/site/trunk/docs/native-doc/news/2023.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/native-doc/news/2023.html?rev=1907614&view=auto == --- tomcat/site/trunk/docs/native-doc/news/2023.html (added) +++ tomcat/site/trunk/docs/native-doc/news/2023.html Mon Feb 13 20:45:11 2023 @@ -0,0 +1,11 @@ + +The Apache Tomcat Native - News - 2023 News and Statushttp://tomcat.apache.org/";>http://www.apache.org/"; target="_blank">The Apache Tomcat Native - NewsLinksDocs Home Miscellaneous DocumentationChangelogTLS renegotiationNews202320222023 News and Status2023 News & Status + + 13 February 2023 - TC-Native-2.0.3 released +The Apache Tomcat team is proud to announce the immediate +availability of Tomcat Native 2.0.3. + + + +Copyright © 2008-2022, The Apache Software Foundation + \ No newline at end of file - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1907615 - in /tomcat/site/trunk/docs/native-1.2-doc: ./ miscellaneous/ news/
Author: markt Date: Mon Feb 13 20:45:32 2023 New Revision: 1907615 URL: http://svn.apache.org/viewvc?rev=1907615&view=rev Log: Update tomcat-native docs for 1.2.36 release Added: tomcat/site/trunk/docs/native-1.2-doc/news/2023.html Modified: tomcat/site/trunk/docs/native-1.2-doc/index.html tomcat/site/trunk/docs/native-1.2-doc/miscellaneous/changelog.html tomcat/site/trunk/docs/native-1.2-doc/news/2008.html tomcat/site/trunk/docs/native-1.2-doc/news/2009.html tomcat/site/trunk/docs/native-1.2-doc/news/2010.html tomcat/site/trunk/docs/native-1.2-doc/news/2011.html tomcat/site/trunk/docs/native-1.2-doc/news/2012.html tomcat/site/trunk/docs/native-1.2-doc/news/2013.html tomcat/site/trunk/docs/native-1.2-doc/news/2014.html tomcat/site/trunk/docs/native-1.2-doc/news/2015.html tomcat/site/trunk/docs/native-1.2-doc/news/2016.html tomcat/site/trunk/docs/native-1.2-doc/news/2017.html tomcat/site/trunk/docs/native-1.2-doc/news/2018.html tomcat/site/trunk/docs/native-1.2-doc/news/2019.html tomcat/site/trunk/docs/native-1.2-doc/news/2020.html tomcat/site/trunk/docs/native-1.2-doc/news/2021.html tomcat/site/trunk/docs/native-1.2-doc/news/2022.html Modified: tomcat/site/trunk/docs/native-1.2-doc/index.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/native-1.2-doc/index.html?rev=1907615&r1=1907614&r2=1907615&view=diff == --- tomcat/site/trunk/docs/native-1.2-doc/index.html (original) +++ tomcat/site/trunk/docs/native-1.2-doc/index.html Mon Feb 13 20:45:32 2023 @@ -28,10 +28,10 @@ Headlines -12 July 2022 - TC-Native-1.2.35 +13 February 2023 - TC-Native-1.2.36 released The Apache Tomcat team is proud to announce the immediate availability of -Tomcat Native 1.2.35 Stable. +Tomcat Native 1.2.36 Stable. The sources and the binaries for selected platforms are available from the Download page. Modified: tomcat/site/trunk/docs/native-1.2-doc/miscellaneous/changelog.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/native-1.2-doc/miscellaneous/changelog.html?rev=1907615&r1=1907614&r2=1907615&view=diff == --- tomcat/site/trunk/docs/native-1.2-doc/miscellaneous/changelog.html (original) +++ tomcat/site/trunk/docs/native-1.2-doc/miscellaneous/changelog.html Mon Feb 13 20:45:32 2023 @@ -3,6 +3,15 @@ This is the Changelog for Tomcat Native 1.2. +Changes in 1.2.36 + + + Update the recommended minimum version of APR to 1.7.2. (markt) + + + Update the recommended minimum version of OpenSSL to 1.1.1t. (markt) + + Changes in 1.2.35 Modified: tomcat/site/trunk/docs/native-1.2-doc/news/2008.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/native-1.2-doc/news/2008.html?rev=1907615&r1=1907614&r2=1907615&view=diff == --- tomcat/site/trunk/docs/native-1.2-doc/news/2008.html (original) +++ tomcat/site/trunk/docs/native-1.2-doc/news/2008.html Mon Feb 13 20:45:32 2023 @@ -1,5 +1,5 @@ -The Apache Tomcat Native - News - 2008 News and Statushttp://tomcat.apache.org/";>http://www.apache.org/"; target="_blank">The Apache Tomcat Native - NewsLinksDocs Home Miscellaneous DocumentationChangelogTLS renegotiationNews202220212020201920182017201620152014201320122011201020092008< div id="content">2008 News and Status2008 News & Status +The Apache Tomcat Native - News - 2008 News and Statushttp://tomcat.apache.org/";>http://www.apache.org/"; target="_blank">The Apache Tomcat Native - NewsLinksDocs Home Miscellaneous DocumentationChangelogTLS renegotiationNews2023202220212020201920182017201620152014201320122011201020092008 2008 News and Status2008 News & Status 18 November - TC-Native-1.1.16 released The Apache Tomcat team is proud to announce the immediate availability of Tomcat Native 1.1.16. This is a stable release adding some bug fixes. Modified: tomcat/site/trunk/docs/native-1.2-doc/news/2009.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/native-1.2-doc/news/2009.html?rev=1907615&r1=1907614&r2=1907615&view=diff == --- tomcat/site/trunk/docs/native-1.2-doc/news/2009.html (original) +++ tomcat/site/trunk/docs/native-1.2-doc/news/2009.html Mon Feb 13 20:45:32 2023 @@ -1,5 +1,5 @@ -The Apache Tomcat Native - News - 2009 News and Statushttp://tomcat.apache.org/";>http://www.apache.org/"; target="_blank">The Apache Tomcat Native - NewsLinksDocs Home Miscellaneous DocumentationChangelogTLS renegotiationNews202220212020201920182017201620152014201320122011201020092008< div id="content">2009 News and Status2009 News & Status +The Apache Tomcat Native - News - 2009 News and Statushttp://tomcat.apache.org/";>http://www.apache.org/"; target="_bl
svn commit: r1907616 - in /tomcat/site/trunk: docs/download-native.html docs/index.html docs/oldnews-2022.html xdocs/download-native.xml xdocs/index.xml xdocs/oldnews-2022.xml
Author: markt Date: Mon Feb 13 20:49:41 2023 New Revision: 1907616 URL: http://svn.apache.org/viewvc?rev=1907616&view=rev Log: Update site for Tomcat Native 1.2.36 and 2.0.3 releases Modified: tomcat/site/trunk/docs/download-native.html tomcat/site/trunk/docs/index.html tomcat/site/trunk/docs/oldnews-2022.html tomcat/site/trunk/xdocs/download-native.xml tomcat/site/trunk/xdocs/index.xml tomcat/site/trunk/xdocs/oldnews-2022.xml Modified: tomcat/site/trunk/docs/download-native.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-native.html?rev=1907616&r1=1907615&r2=1907616&view=diff == --- tomcat/site/trunk/docs/download-native.html (original) +++ tomcat/site/trunk/docs/download-native.html Mon Feb 13 20:49:41 2023 @@ -10,10 +10,10 @@ archive download site. Quick Navigation -[define v]2.0.2[end] -[define w]1.2.35[end] -[define y]3.0.5[end] -[define z]1.1.1q[end] +[define v]2.0.3[end] +[define w]1.2.36[end] +[define y]3.0.8[end] +[define z]1.1.1t[end] https://downloads.apache.org/tomcat/tomcat-connectors/KEYS";>KEYS | [v] | [w] | Modified: tomcat/site/trunk/docs/index.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/index.html?rev=1907616&r1=1907615&r2=1907616&view=diff == --- tomcat/site/trunk/docs/index.html (original) +++ tomcat/site/trunk/docs/index.html Mon Feb 13 20:49:41 2023 @@ -34,6 +34,30 @@ wiki page. Apache Tomcat, Tomcat, Apache, the Apache feather, and the Apache Tomcat project logo are trademarks of the Apache Software Foundation. +2023-02-13 Tomcat Native 2.0.3 Released + +The Apache Tomcat Project is proud to announce the release of version 2.0.3 of +Tomcat Native. The notable changes compared to 2.0.2 include: + + +The windows binaries in this release have been built with OpenSSL 3.0.8 + + +https://tomcat.apache.org/download-native.cgi";>Download | +ChangeLog for 2.0.2 + +2023-02-13 Tomcat Native 1.2.36 Released + +The Apache Tomcat Project is proud to announce the release of version 1.2.36 of +Tomcat Native. The notable changes since 1.2.35 include: + + +Windows binaries built with OpenSSL 1.1.1t. + + +https://tomcat.apache.org/download-native.cgi";>Download | +ChangeLog for 1.2.36 + 2023-01-19 Tomcat 8.5.85 Released The Apache Tomcat Project is proud to announce the release of version 8.5.85 @@ -191,19 +215,6 @@ Full details of these changes, and all t https://tomcat.apache.org/download-migration.cgi";>Download -2022-11-08 Tomcat Native 2.0.2 Released - -The Apache Tomcat Project is proud to announce the release of version 2.0.2 of -Tomcat Native. The notable changes compared to 2.0.1 include: - - -The minimum supported version of LibreSSL has been increased to 3.5.2. -The windows binaries in this release have been built with OpenSSL 3.0.7 - - -https://tomcat.apache.org/download-native.cgi";>Download | -ChangeLog for 2.0.1 - 2022-10-10 Tomcat 10.0.27 Released The Apache Tomcat Project is proud to announce the release of version 10.0.27 @@ -235,20 +246,6 @@ changelog. https://tomcat.apache.org/download-10.cgi";>Download -2022-07-12 Tomcat Native 1.2.35 Released - -The Apache Tomcat Project is proud to announce the release of version 1.2.35 of -Tomcat Native. The notable changes since 1.2.34 include: - - -Windows binaries built with OpenSSL 1.1.1q. -Document TLS renegotiation behaviour -Document the release process - - -https://tomcat.apache.org/download-native.cgi";>Download | -ChangeLog for 1.2.35 - 2020-03-06 Tomcat Connectors 1.2.48 Released The Apache Tomcat Project is proud to announce the release of version 1.2.48 of Modified: tomcat/site/trunk/docs/oldnews-2022.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/oldnews-2022.html?rev=1907616&r1=1907615&r2=1907616&view=diff == --- tomcat/site/trunk/docs/oldnews-2022.html (original) +++ tomcat/site/trunk/docs/oldnews-2022.html Mon Feb 13 20:49:41 2023 @@ -171,6 +171,19 @@ Full details of these changes, and all t https://tomcat.apache.org/download-migration.cgi";>Download +2022-11-08 Tomcat Native 2.0.2 Released + +The Apache Tomcat Project is proud to announce the release of version 2.0.2 of +Tomcat Native. The notable changes compared to 2.0.1 include: + + +The minimum supported version of LibreSSL has been increased to 3.5.2. +The windows binaries in this release have been built with OpenSSL 3.0.7 + + +https://tomcat.apache.org/download-native.cgi";>Download | +ChangeLog for 2.0.1 + 2022-10-11 Tomcat 8.5.83 Released The Apache Tomcat Project is proud to announce the release of version 8.5.83 @@ -494,6 +507,20 @@ changes compared to the 1.2.x branch inc https://tomcat.apache.org/download-native.cgi";>Download | ChangeLog for 2.0.1 +2022-07-12 Tomcat Na
svn commit: r60096 - in /release/tomcat/tomcat-connectors/native: 1.2.35/ 2.0.2/
Author: markt Date: Mon Feb 13 20:50:23 2023 New Revision: 60096 Log: Drop Tomcat Native 1.2.35 and 2.0.2 from CDN Removed: release/tomcat/tomcat-connectors/native/1.2.35/ release/tomcat/tomcat-connectors/native/2.0.2/ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
Re: [VOTE, slightly-off-topic] Release Apache Tomcat Native 2.0.3
Vasileios, On 2/13/23 11:17, Vasileios Mourikis wrote: [X] Stable, go ahead and release Note: build was successful with openssl 3.0.8 but not with 3.0.1 Can you post the details of the build failure(s)? Environment, error messages, etc.? -chris - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[ANN] Apache Tomcat Native 1.2.36 released
The Apache Tomcat team announces the immediate availability of Apache Tomcat Native 1.2.36 stable. The key features of this release are: - Update the version of OpenSSL used to create the binaries for Windows to OpenSSL 1.1.1t Please refer to the change log for the complete list of changes: http://tomcat.apache.org/native-doc/miscellaneous/changelog.html Downloads: http://tomcat.apache.org/download-native.cgi The Apache Tomcat Native Library provides portable API for features not found in contemporary JDK's. It uses Apache Portable Runtime as operating system abstraction layer and OpenSSL for SSL networking and allows optimal performance in production environments. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[ANN] Apache Tomcat Native 2.0.3 released
The Apache Tomcat team announces the immediate availability of Apache Tomcat Native 2.0.3 stable. The key features of this release are: - The binaries for Windows in this release have been built with OpenSSL 3.0.8 The 2.0.x branch is primarily intended for use with Tomcat 10.1.x or later but can be used with earlier versions as long as the APR/native connector is not used. Please refer to the change log for the complete list of changes: http://tomcat.apache.org/native-doc/miscellaneous/changelog.html Downloads: http://tomcat.apache.org/download-native.cgi The Apache Tomcat Native Library 2.0.x provides an API for using OpenSSL for SSL networking with Apache Tomcat. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1907618 - in /tomcat/site/trunk: docs/download-10.html xdocs/download-10.xml
Author: markt Date: Mon Feb 13 20:59:59 2023 New Revision: 1907618 URL: http://svn.apache.org/viewvc?rev=1907618&view=rev Log: Fix version Modified: tomcat/site/trunk/docs/download-10.html tomcat/site/trunk/xdocs/download-10.xml Modified: tomcat/site/trunk/docs/download-10.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-10.html?rev=1907618&r1=1907617&r2=1907618&view=diff == --- tomcat/site/trunk/docs/download-10.html (original) +++ tomcat/site/trunk/docs/download-10.html Mon Feb 13 20:59:59 2023 @@ -19,7 +19,7 @@ Quick Navigation -[define v]10.1.15[end] +[define v]10.1.5[end] https://downloads.apache.org/tomcat/tomcat-10/KEYS";>KEYS | [v] | Browse | Modified: tomcat/site/trunk/xdocs/download-10.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/download-10.xml?rev=1907618&r1=1907617&r2=1907618&view=diff == --- tomcat/site/trunk/xdocs/download-10.xml (original) +++ tomcat/site/trunk/xdocs/download-10.xml Mon Feb 13 20:59:59 2023 @@ -31,7 +31,7 @@ Define variable to hold the current version number. Documentation for ezt.py: https://code.google.com/p/ezt/wiki/Syntax --> -[define v]10.1.15[end] +[define v]10.1.5[end] https://downloads.apache.org/tomcat/tomcat-10/KEYS";>KEYS | [v] | Browse | - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1907617 - in /tomcat/site/trunk: docs/download-10.html xdocs/download-10.xml
Author: markt Date: Mon Feb 13 20:59:10 2023 New Revision: 1907617 URL: http://svn.apache.org/viewvc?rev=1907617&view=rev Log: Remove 10.0.x download links Modified: tomcat/site/trunk/docs/download-10.html tomcat/site/trunk/xdocs/download-10.xml Modified: tomcat/site/trunk/docs/download-10.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-10.html?rev=1907617&r1=1907616&r2=1907617&view=diff == --- tomcat/site/trunk/docs/download-10.html (original) +++ tomcat/site/trunk/docs/download-10.html Mon Feb 13 20:59:10 2023 @@ -2,7 +2,7 @@ Apache Tomcat® - Apache Tomcat 10 Software Downloadshttp://tomcat.apache.org/";>Apache Tomcat®https://www.apache.org/foundation/contributing.html"; target="_blank" class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" alt="Support Apache">http://www.apache.org/"; target="_blank" cla ss="pull-left">https://www.google.com/search"; method="get">GOApache TomcatHomeTaglibsMaven PluginDownloadWhich version?https://tomcat.apache.org/download-11.cgi";>Tomcat 11 (alpha)https://tomcat.apache.org/download-10.cgi";>Tomcat 10https://tomcat.apache.org/download-90.cgi";>Tomcat 9https://tomcat.apache.org/download-80.cgi";>Tomcat 8https://tomcat.apache.org/download-migration.cgi";>Tomcat Migration Tool for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi";>Tomcat Connectorshttps://tomcat.apache.org/download-native.cgi";>Tomcat Nativehttps://tomcat.apache.org/download-taglibs.cgi";>Taglibshttps://archive.apache.org/dist/tomcat/";>ArchivesDocumentationTomcat 11.0 (alpha)Tomcat 10.1Tomcat 10.0Tomcat 9.0Tomcat 8.5Tomcat ConnectorsTomcat Native 2Tomca t Native 1.2https://cwiki.apache.org/confluence/display/TOMCAT";>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg";>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQMailing ListsBug DatabaseIRCGet InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ";>TranslationsToolsMediahttps://twitter.com/theapachetomcat";>Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial";>YouTubehttps://blogs.apache.org/tomcat/";>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>SwagHeritagehttp://www.apache.org";>Apache HomeResourcesContactLegalhttps://privacy.apache.org/policies/privacy-policy-public.html";>Privacyhttps://www.apache.org/foundation/contributing.html";>Support Apachehttps://www.apache.org/foundation/sponsorship.html";>Sponsorshiphttp://www.apache.org/foundation/thanks.html";>Thankshttp://www.apache.org/licenses/";> LicenseContentTomcat 10 Software Downloads Welcome to the Apache Tomcat® 10.x software download page. This page provides download links for obtaining the latest version of -Tomcat 10.0.x software, as well as links to the archives of older releases. +Tomcat 10.1.x software, as well as links to the archives of older releases. Unsure which version you need? Specification versions implemented, minimum Java version required and lots more useful information may be found @@ -19,11 +19,9 @@ Quick Navigation -[define v]10.0.27[end] -[define w]10.1.5[end] +[define v]10.1.15[end] https://downloads.apache.org/tomcat/tomcat-10/KEYS";>KEYS | [v] | -[w] | Browse | https://archive.apache.org/dist/tomcat/tomcat-10";>Archives Release Integrity @@ -63,7 +61,7 @@ file for packaging information. It explains what every distribution contains. -Binary Distributions +Binary Distributions Core: @@ -136,7 +134,7 @@ -Source Code Distributions +Source Code Distributions tar.gz @@ -150,101 +148,6 @@ - - - [w] -Please see the -README -file for packaging information. It explains what every distribution contains. - - -Binary Distributions - - Core: - - -zip -(https://downloads.apache.org/tomcat/tomcat-10/v[w]/bin/apache-tomcat-[w].zip.asc";>pgp, -https://downloads.apache.org/tomcat/tomcat-10/v[w]/bin/apache-tomcat-[w].zip.sha512";>sha512) - - -tar.gz -(https://downloads.apache.org/tomcat/tomcat-10/v[w]/bin/apache-tomcat-[w].tar.gz.asc";>pgp, -https://downloads.apache.org/tomcat/tomcat-10/v[w]/bin/apache-tomcat-[w].tar.gz.sha512";>sha512) - - -32-bit Windows zip -(https://downloads.apache.org/tomcat/tomcat-10/v[w]/bin/apache-tomcat-[w]-windows-x86.zip.asc";>pgp, -https://downloads.apache.org/tomcat/tomcat-10/v[w]/bin/apache-tomcat-[w]-windows-x86.zip.sha512";>sha512) - - -64-bit Windows zip -
svn commit: r60097 - /release/tomcat/tomcat-10/v10.0.27/
Author: markt Date: Mon Feb 13 21:00:55 2023 New Revision: 60097 Log: Drop final 10.0.x release from CDN Removed: release/tomcat/tomcat-10/v10.0.27/ - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1907619 [3/10] - in /tomcat/site/trunk: docs/ xdocs/stylesheets/
Modified: tomcat/site/trunk/docs/index.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/index.html?rev=1907619&r1=1907618&r2=1907619&view=diff == --- tomcat/site/trunk/docs/index.html (original) +++ tomcat/site/trunk/docs/index.html Mon Feb 13 21:03:16 2023 @@ -1,5 +1,5 @@ -Apache Tomcat® - Welcome!http://tomcat.apache.org/";>Apache Tomcat®https://www.apache.org/foundation/contributing.html"; target="_blank" class="pull-left">https://www.apache.org/images/Suppo rtApache-small.png" class="support-asf" alt="Support Apache">http://www.apache.org/"; target="_blank" class="pull-left">https://www.google.com/search"; method="get">GOApache TomcatHomeTaglibsMaven PluginDownloadWhich version?https://tomcat.apache.org/download-11.cgi";>Tomcat 11 (alpha)https://tomcat.apache.org/dow nload-10.cgi">Tomcat 10https://tomcat.apache.org/download-90.cgi";>Tomcat 9https://tomcat.apache.org/download-80.cgi";>Tomcat 8https://tomcat.apache.org/download-migration.cgi";>Tomcat Migration Tool for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi";>Tomcat Connectorshttps://tomcat.apache.org/download-native.cgi";>Tomcat Nativehttps://tomcat.apache.org/download-taglibs.cgi";>Taglibshttps://archive.apache.org/dist/tomcat/";>ArchivesDocumentationTomcat 11.0 (alpha)Tomcat 10.1Tomcat 10.0Tomcat 9.0Tomcat 8.5Tomcat ConnectorsTomcat Native 2Tomcat Native 1.2https://cwiki.apache.org/confluence/display/TOMCAT";>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg";>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQMailing ListsBug DatabaseIRCGet InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluenc e/x/vIPzBQ">TranslationsToolsMediahttps://twitter.com/theapachetomcat";>Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial";>YouTubehttps://blogs.apache.org/tomcat/";>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>SwagHeritagehttp://www.apache.org";>Apache HomeResourcesContactLegalhttps://privacy.apache.org/policies/privacy-policy-public.html";>Privacyhttps://www.apache.org/foundation/contributing.html";>Support Apachehttps://www.apache.org/foundation/sponsorship.html";>Sponsorshiphttp://www.apache.org/foundation/thanks.html";>Thankshref="http://www.apache.org/licenses/";>License id="mainRight">Contentid="Apache_Tomcat">Apache Tomcat +Apache Tomcat® - Welcome!http://tomcat.apache.org/";>Apache Tomcat®https://www.apache.org/foundation/contributing.html"; target="_blank" class="pull-left">https://www.apache.org/images/Suppo rtApache-small.png" class="support-asf" alt="Support Apache">http://www.apache.org/"; target="_blank" class="pull-left">https://www.google.com/search"; method="get">GOApache TomcatHomeTaglibsMaven PluginDownloadWhich version?https://tomcat.apache.org/download-11.cgi";>Tomcat 11 (alpha)https://tomcat.apache.org/dow nload-10.cgi">Tomcat 10https://tomcat.apache.org/download-90.cgi";>Tomcat 9https://tomcat.apache.org/download-80.cgi";>Tomcat 8https://tomcat.apache.org/download-migration.cgi";>Tomcat Migration Tool for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi";>Tomcat Connectorshttps://tomcat.apache.org/download-native.cgi";>Tomcat Nativehttps://tomcat.apache.org/download-taglibs.cgi";>Taglibshttps://archive.apache.org/dist/tomcat/";>ArchivesDocumentationTomcat 11.0 (alpha)Tomcat 10.1Tomcat 9.0Tomcat 8.5Tomcat ConnectorsTomcat Native 2Tomcat Native 1.2https://cwiki.apache.org/confluence/display/TOMCAT";>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg";>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQMailing ListsBug DatabaseIRCGet InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ";>TranslationsToo lsMediahttps://twitter.com/theapachetomcat";>Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial";>YouTubehttps://blogs.apache.org/tomcat/";>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>SwagHeritagehttp://www.apache.org";>Apache HomeResourcesContactLegalhttps://privacy.apache.org/policies/privacy-policy-public.html";>Privacyhttps://www.apache.org/foundation/contributing.html";>Support Apachehttps://www.apache.org/foundation/sponsorship.html";>Sponsorshiphttp://www.apache.org/foundation/thanks.html";>Thanks< /a>http://www.apache.org/licenses/";>LicenseContentApache Tomcat The Apache Tomcat® software is an open source implementation of the Modified: tomcat/site/trunk/docs/irc.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/irc.html?rev=1907619&r1=1907618&r2=1907619&view=diff == --- tomcat/site/trunk/docs/irc.html (original) +++ tomcat/site/trunk/docs/irc.html Mon Feb 13 21:03:16 2023 @@ -1,5 +1,5
svn commit: r1907619 [10/10] - in /tomcat/site/trunk: docs/ xdocs/stylesheets/
Modified: tomcat/site/trunk/docs/whichversion.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/whichversion.html?rev=1907619&r1=1907618&r2=1907619&view=diff == --- tomcat/site/trunk/docs/whichversion.html (original) +++ tomcat/site/trunk/docs/whichversion.html Mon Feb 13 21:03:16 2023 @@ -1,5 +1,5 @@ -Apache Tomcat® - Which Version Do I Want?http://tomcat.apache.org/";>Apache Tomcat®https://www.apache.org/foundation/contributing.html"; target="_blank" class="pull-left">https://www.apache.org /images/SupportApache-small.png" class="support-asf" alt="Support Apache">http://www.apache.org/"; target="_blank" class="pull-left">https://www.google.com/search"; method="get">GOApache TomcatHomeTaglibsMaven PluginDownloadWhich version?https://tomcat.apache.org/download-11.cgi";>Tomcat 11 (alpha)https://tomcat.a pache.org/download-10.cgi">Tomcat 10https://tomcat.apache.org/download-90.cgi";>Tomcat 9https://tomcat.apache.org/download-80.cgi";>Tomcat 8https://tomcat.apache.org/download-migration.cgi";>Tomcat Migration Tool for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi";>Tomcat Connectorshttps://tomcat.apache.org/download-native.cgi";>Tomcat Nativehttps://tomcat.apache.org/download-taglibs.cgi";>Taglibshttps://archive.apache.org/dist/tomcat/";>ArchivesDocumentationTomcat 11.0 (alpha)Tomcat 10.1Tomcat 10.0Tomcat 9.0Tomcat 8.5Tomcat ConnectorsTomcat Native 2Tomcat Native 1.2https://cwiki.apache.org/confluence/display/TOMCAT";>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg";>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQMailing ListsBug DatabaseIRCGet InvolvedOverviewSource codeBuildbothttps://cwiki.apache. org/confluence/x/vIPzBQ">TranslationsToolsMediahttps://twitter.com/theapachetomcat";>Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial";>YouTubehttps://blogs.apache.org/tomcat/";>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>SwagHeritagehttp://www.apache.org";>Apache HomeResourcesContactLegalhttps://privacy.apache.org/policies/privacy-policy-public.html";>Privacyhttps://www.apache.org/foundation/contributing.html";>Support Apachehttps://www.apache.org/foundation/sponsorship.html";>Sponsorshi phttp://www.apache.org/foundation/thanks.html";>Thankshttp://www.apache.org/licenses/";>LicenseContentApache Tomcat Versions +Apache Tomcat® - Which Version Do I Want?http://tomcat.apache.org/";>Apache Tomcat®https://www.apache.org/foundation/contributing.html"; target="_blank" class="pull-left">https://www.apache.org /images/SupportApache-small.png" class="support-asf" alt="Support Apache">http://www.apache.org/"; target="_blank" class="pull-left">https://www.google.com/search"; method="get">GOApache TomcatHomeTaglibsMaven PluginDownloadWhich version?https://tomcat.apache.org/download-11.cgi";>Tomcat 11 (alpha)https://tomcat.a pache.org/download-10.cgi">Tomcat 10https://tomcat.apache.org/download-90.cgi";>Tomcat 9https://tomcat.apache.org/download-80.cgi";>Tomcat 8https://tomcat.apache.org/download-migration.cgi";>Tomcat Migration Tool for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi";>Tomcat Connectorshttps://tomcat.apache.org/download-native.cgi";>Tomcat Nativehttps://tomcat.apache.org/download-taglibs.cgi";>Taglibshttps://archive.apache.org/dist/tomcat/";>ArchivesDocumentationTomcat 11.0 (alpha)Tomcat 10.1Tomcat 9.0Tomcat 8.5Tomcat ConnectorsTomcat Native 2Tomcat Native 1.2https://cwiki.apache.org/confluence/display/TOMCAT";>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg";>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQMailing ListsBug DatabaseIRCGet InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ";>TranslationsToolsMediahttps://twitter.com/theapachetomcat";>Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial";>YouTubehttps://blogs.apache.org/tomcat/";>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>SwagHeritagehttp://www.apache.org";>Apache HomeResourcesContactLegalhttps://privacy.apache.org/policies/privacy-policy-public.html";>Privacyhttps://www.apache.org/foundation/contributing.html";>Support Apachehttps://www.apache.org/foundation/sponsorship.html";>Sponsorshiphttp://www.apache.org/foundation/thanks. html">Thankshttp://www.apache.org/licenses/";>LicenseContentApache Tomcat Versions Apache Tomcat® is an open source software implementation of a subset of the Jakarta EE (formally Java EE) technologies. Different versions of Apache Tomcat are available for different versions of the specifications. The Modified: tomcat/site/trunk/docs/whoweare.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/whoweare.html?rev=1907619&r1=1907618&r2=1907619&view=diff ==
svn commit: r1907619 [6/10] - in /tomcat/site/trunk: docs/ xdocs/stylesheets/
Modified: tomcat/site/trunk/docs/oldnews-2018.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/oldnews-2018.html?rev=1907619&r1=1907618&r2=1907619&view=diff == --- tomcat/site/trunk/docs/oldnews-2018.html (original) +++ tomcat/site/trunk/docs/oldnews-2018.html Mon Feb 13 21:03:16 2023 @@ -1,5 +1,5 @@ -Apache Tomcat® - Old news!http://tomcat.apache.org/";>Apache Tomcat®https://www.apache.org/foundation/contributing.html"; target="_blank" class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" alt="Support Apache">http://www.apache .org/" target="_blank" class="pull-left">https://www.google.com/search"; method="get">GOApache TomcatHomeTaglibsMaven PluginDownloadWhich version?https://tomcat.apache.org/download-11.cgi";>Tomcat 11 (alpha)https://tomcat.apache.org/download-10.cgi";>Tomcat 10https://tomcat.apache.org/download-90.cgi";>Tom cat 9https://tomcat.apache.org/download-80.cgi";>Tomcat 8https://tomcat.apache.org/download-migration.cgi";>Tomcat Migration Tool for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi";>Tomcat Connectorshttps://tomcat.apache.org/download-native.cgi";>Tomcat Nativehttps://tomcat.apache.org/download-taglibs.cgi";>Taglibshttps://archive.apache.org/dist/tomcat/";>ArchivesDocumentationTomcat 11.0 (alpha)Tomcat 10.1Tomcat 10.0Tomcat 9.0Tomcat 8.5Tomcat ConnectorsTomcat Native 2Tomcat Native 1.2https://cwiki.apache.org/confluence/display/TOMCAT";>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg";>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQMailing ListsBug DatabaseIRCGet InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ";>TranslationsTools< h2>Mediahttps://twitter.com/theapachetomcat";>Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial";>YouTubehttps://blogs.apache.org/tomcat/";>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>SwagHeritagehttp://www.apache.org";>Apache HomeResourcesContactLegalhttps://privacy.apache.org/policies/privacy-policy-public.html";>Privacyhttps://www.apache.org/foundation/contributing.html";>Support Apachehttps://www.apache.org/foundation/sponsorship.html";>Sponsorshiphttp://www.apache.org/foundation/thanks.html";>ThanksLicenseContentOlder news +Apache Tomcat® - Old news!http://tomcat.apache.org/";>Apache Tomcat®https://www.apache.org/foundation/contributing.html"; target="_blank" class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" alt="Support Apache">http://www.apache .org/" target="_blank" class="pull-left">https://www.google.com/search"; method="get">GOApache TomcatHomeTaglibsMaven PluginDownloadWhich version?https://tomcat.apache.org/download-11.cgi";>Tomcat 11 (alpha)https://tomcat.apache.org/download-10.cgi";>Tomcat 10https://tomcat.apache.org/download-90.cgi";>Tom cat 9https://tomcat.apache.org/download-80.cgi";>Tomcat 8https://tomcat.apache.org/download-migration.cgi";>Tomcat Migration Tool for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi";>Tomcat Connectorshttps://tomcat.apache.org/download-native.cgi";>Tomcat Nativehttps://tomcat.apache.org/download-taglibs.cgi";>Taglibshttps://archive.apache.org/dist/tomcat/";>ArchivesDocumentationTomcat 11.0 (alpha)Tomcat 10.1Tomcat 9.0Tomcat 8.5Tomcat ConnectorsTomcat Native 2Tomcat Native 1.2WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg";>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQMailing ListsBug DatabaseIRCGet InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ";>TranslationsToolsMediahttps://twitter.com/theapachetomc at">Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial";>YouTubehttps://blogs.apache.org/tomcat/";>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>SwagHeritagehttp://www.apache.org";>Apache HomeResourcesContactLegalhttps://privacy.apache.org/policies/privacy-policy-public.html";>Privacyhttps://www.apache.org/foundation/contributing.html";>Support Apachehttps://www.apache.org/foundation/sponsorship.html";>Sponsorshiphttp://www.apache.org/foundation/thanks.html";>Thankshttp://www.apache.org/licenses/";>LicenseContentOlder news Announcements from previous years can be found here: year 2023 Modified: tomcat/site/trunk/docs/oldnews-2019.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/oldnews-2019.html?rev=1907619&r1=1907618&r2=1907619&view=diff == --- tomcat/site/trunk/docs/oldnews-2019.html (original) +++ tomcat/site/trunk/docs/oldnews-2019.html Mon Feb 13 21:03:16 2023 @@ -1,5 +1,5 @@ -Apache Tomcat® - Old news!http://tomcat.apache.org/";>Apache T
svn commit: r1907619 [9/10] - in /tomcat/site/trunk: docs/ xdocs/stylesheets/
Modified: tomcat/site/trunk/docs/taglibs.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/taglibs.html?rev=1907619&r1=1907618&r2=1907619&view=diff == --- tomcat/site/trunk/docs/taglibs.html (original) +++ tomcat/site/trunk/docs/taglibs.html Mon Feb 13 21:03:16 2023 @@ -1,5 +1,5 @@ -Apache Tomcat® - Apache Taglibshttp://tomcat.apache.org/";>Apache Tomcat®https://www.apache.org/foundation/contributing.html"; target="_blank" class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" alt="Support Apache">http://www.a pache.org/" target="_blank" class="pull-left">https://www.google.com/search"; method="get">GOApache TomcatHomeTaglibsMaven PluginDownloadWhich version?https://tomcat.apache.org/download-11.cgi";>Tomcat 11 (alpha)https://tomcat.apache.org/download-10.cgi";>Tomcat 10https://tomcat.apache.org/download-90.cgi ">Tomcat 9https://tomcat.apache.org/download-80.cgi";>Tomcat 8https://tomcat.apache.org/download-migration.cgi";>Tomcat Migration Tool for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi";>Tomcat Connectorshttps://tomcat.apache.org/download-native.cgi";>Tomcat Nativehttps://tomcat.apache.org/download-taglibs.cgi";>Taglibshttps://archive.apache.org/dist/tomcat/";>ArchivesDocumentationTomcat 11.0 (alpha)Tomcat 10.1Tomcat 10.0Tomcat 9.0Tomcat 8.5Tomcat ConnectorsTomcat Native 2Tomcat Native 1.2https://cwiki.apache.org/confluence/display/TOMCAT";>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg";>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQMailing ListsBug DatabaseIRCGet InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ";>TranslationsTools< div>Mediahttps://twitter.com/theapachetomcat";>Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial";>YouTubehttps://blogs.apache.org/tomcat/";>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>SwagHeritagehttp://www.apache.org";>Apache HomeResourcesContactLegalhttps://privacy.apache.org/policies/privacy-policy-public.html";>Privacyhttps://www.apache.org/foundation/contributing.html";>Support Apachehttps://www.apache.org/foundation/sponsorship.html";>Sponsorshiphttp://www.apache.org/foundation/thanks.html";>ThanksLicenseContentApache Taglibs +Apache Tomcat® - Apache Taglibshttp://tomcat.apache.org/";>Apache Tomcat®https://www.apache.org/foundation/contributing.html"; target="_blank" class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" alt="Support Apache">http://www.a pache.org/" target="_blank" class="pull-left">https://www.google.com/search"; method="get">GOApache TomcatHomeTaglibsMaven PluginDownloadWhich version?https://tomcat.apache.org/download-11.cgi";>Tomcat 11 (alpha)https://tomcat.apache.org/download-10.cgi";>Tomcat 10https://tomcat.apache.org/download-90.cgi ">Tomcat 9https://tomcat.apache.org/download-80.cgi";>Tomcat 8https://tomcat.apache.org/download-migration.cgi";>Tomcat Migration Tool for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi";>Tomcat Connectorshttps://tomcat.apache.org/download-native.cgi";>Tomcat Nativehttps://tomcat.apache.org/download-taglibs.cgi";>Taglibshttps://archive.apache.org/dist/tomcat/";>ArchivesDocumentationTomcat 11.0 (alpha)Tomcat 10.1Tomcat 9.0Tomcat 8.5Tomcat ConnectorsTomcat Native 2Tomcat Native 1.2https://cwiki.apache.org/confluence/display/TOMCAT";>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg";>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQMailing ListsBug DatabaseIRCGet InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ";>TranslationsToolsMediahttps://twitter.com/theapach etomcat">Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial";>YouTubehttps://blogs.apache.org/tomcat/";>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>SwagHeritagehttp://www.apache.org";>Apache HomeResourcesContactLegalhttps://privacy.apache.org/policies/privacy-policy-public.html";>Privacyhttps://www.apache.org/foundation/contributing.html";>Support Apachehttps://www.apache.org/foundation/sponsorship.html";>Sponsorshiphttp://www.apache.org/foundation/thanks.html";>Thankshttp://www.apache.org/licenses/";>LicenseContentApache Taglibsclass="text"> Apache Taglibs provides open source implementations of Tag Libraries for use with Java Server Pages (JSPs). In particular, it hosts the Apache Standard Taglib, an open source implementation of the Modified: tomcat/site/trunk/docs/tomcat-10.0-eol.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-10.0-eol.html?rev=1907619&r1=1907618&r2=1907619&view=diff =
svn commit: r1907619 [7/10] - in /tomcat/site/trunk: docs/ xdocs/stylesheets/
Modified: tomcat/site/trunk/docs/security-10.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/security-10.html?rev=1907619&r1=1907618&r2=1907619&view=diff == --- tomcat/site/trunk/docs/security-10.html (original) +++ tomcat/site/trunk/docs/security-10.html Mon Feb 13 21:03:16 2023 @@ -1,5 +1,5 @@ -Apache Tomcat® - Apache Tomcat 10 vulnerabilitieshttp://tomcat.apache.org/";>Apache Tomcat®https://www.apache.org/foundation/contributing.html"; target="_blank" class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" alt="Support Apache">http://www.apache.org/"; target="_blank" class="pull-left">https://www.google.com/search"; method="get">GOApache TomcatHomeTaglibsMaven PluginDownloadWhich version?https://tomcat.apache.org/download-11.cgi";>Tomcat 11 (alpha)https://tomcat.apache.org/download-10.cgi";>Tomcat 10https://tomcat.apache.o rg/download-90.cgi">Tomcat 9https://tomcat.apache.org/download-80.cgi";>Tomcat 8https://tomcat.apache.org/download-migration.cgi";>Tomcat Migration Tool for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi";>Tomcat Connectorshttps://tomcat.apache.org/download-native.cgi";>Tomcat Nativehttps://tomcat.apache.org/download-taglibs.cgi";>Taglibshttps://archive.apache.org/dist/tomcat/";>ArchivesDocumentationTomcat 11.0 (alpha)Tomcat 10.1Tomcat 10.0Tomcat 9.0Tomcat 8.5Tomcat ConnectorsTomcat Nativ e 2Tomcat Native 1.2https://cwiki.apache.org/confluence/display/TOMCAT";>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg";>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQMailing ListsBug DatabaseIRCGet InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ";>TranslationsToolsMediahref="https://twitter.com/theapachetomcat";>Twitterhref="https://www.youtube.com/c/ApacheTomcatOfficial";>YouTubehref="https://blogs.apache.org/tomcat/";>BlogMisc href="./whoweare.html">Who We Arehref="https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag href="./heritage.html">Heritagehref="http://www.apache.org";>Apache Homehref="./resources.html">Resourceshref="./contact.html">Contacthref="./legal.html">Legalhref="https://privacy.apache.org/policies/privacy-policy-public.html";>Privacy href="https://www.apache.org/foundation/contributing.html";>Support >Apachehref="https://www.apache.org/foundation/sponsorship.html";>Sponsorship href="http://www.apache.org/foundation/thanks.html";>Thankshttp://www.apache.org/licenses/";>LicenseContentApache Tomcat 10.x vulnerabilities +Apache Tomcat® - Apache Tomcat 10 vulnerabilitieshttp://tomcat.apache.org/";>Apache Tomcat®https://www.apache.org/foundation/contributing.html"; target="_blank" class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" alt="Support Apache">http://www.apache.org/"; target="_blank" class="pull-left">https://www.google.com/search"; method="get">GOApache TomcatHomeTaglibsMaven PluginDownloadWhich version?https://tomcat.apache.org/download-11.cgi";>Tomcat 11 (alpha)https://tomcat.apache.org/download-10.cgi";>Tomcat 10https://tomcat.apache.o rg/download-90.cgi">Tomcat 9https://tomcat.apache.org/download-80.cgi";>Tomcat 8https://tomcat.apache.org/download-migration.cgi";>Tomcat Migration Tool for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi";>Tomcat Connectorshttps://tomcat.apache.org/download-native.cgi";>Tomcat Nativehttps://tomcat.apache.org/download-taglibs.cgi";>Taglibshttps://archive.apache.org/dist/tomcat/";>ArchivesDocumentationTomcat 11.0 (alpha)Tomcat 10.1Tomcat 9.0Tomcat 8.5Tomcat ConnectorsTomcat Native 2Tomcat Native 1.2https://cwiki.apache.org/confluence/display/TOMCAT";>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg";>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQMailing ListsBug DatabaseIRCGet InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ";>TranslationsToolsMediahttps://tw itter.com/theapachetomcat">Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial";>YouTubehttps://blogs.apache.org/tomcat/";>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>SwagHeritagehttp://www.apache.org";>Apache HomeResourcesContactLegalhttps://privacy.apache.org/policies/privacy-policy-public.html";>Privacyhttps://www.apache.org/foundation/contributing.html";>Support Apachehttps://www.apache.org/foundation/sponsorship.html";>Sponsorshiphttp://www.apache.org/foundation/thanks.html";>Thankshttp://www.apache.org/licenses/";>LicenseContentApache Tomcat 10.x vulnerabilities This page lists all security vulnerabilities fixed in released versions of Apache Tomcat 10.x. Each vulnerability is given a security impact rating by the Apache M
svn commit: r1907619 [4/10] - in /tomcat/site/trunk: docs/ xdocs/stylesheets/
Modified: tomcat/site/trunk/docs/migration-11.0.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-11.0.html?rev=1907619&r1=1907618&r2=1907619&view=diff == --- tomcat/site/trunk/docs/migration-11.0.html (original) +++ tomcat/site/trunk/docs/migration-11.0.html Mon Feb 13 21:03:16 2023 @@ -1,5 +1,5 @@ -Apache Tomcat® - Migration Guide - Tomcat 11.0.xhttp://tomcat.apache.org/";>Apache Tomcat®https://www.apache.org/foundation/contributing.html"; target="_blank" class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" alt="Support Apache">http://www.apache.org/"; target="_blank" class="pull-left">https://www.google.com/search"; method="get">GOApache TomcatHomeTaglibsMaven PluginDownloadWhich version?https://tomcat.apache.org/download-11.cgi";>Tomcat 11 (alpha)https://tomcat.apache.org/download-10.cgi";>Tomcat 10https://tomcat.apache.or g/download-90.cgi">Tomcat 9https://tomcat.apache.org/download-80.cgi";>Tomcat 8https://tomcat.apache.org/download-migration.cgi";>Tomcat Migration Tool for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi";>Tomcat Connectorshttps://tomcat.apache.org/download-native.cgi";>Tomcat Nativehttps://tomcat.apache.org/download-taglibs.cgi";>Taglibshttps://archive.apache.org/dist/tomcat/";>ArchivesDocumentationTomcat 11.0 (alpha)Tomcat 10.1Tomcat 10.0Tomcat 9.0Tomcat 8.5Tomcat ConnectorsTomcat Native 2Tomcat Native 1.2https://cwiki.apache.org/confluence/display/TOMCAT";>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg";>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQMailing ListsBug DatabaseIRCGet InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ";>TranslationsTools Mediahttps://twitter.com/theapachetomcat";>Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial";>YouTubehttps://blogs.apache.org/tomcat/";>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>SwagHeritagehttp://www.apache.org";>Apache HomeResourcesContactLegalhttps://privacy.apache.org/policies/privacy-policy-public.html";>Privacyhttps://www.apache.org/foundation/contributing.html";>Support Apachehttps://www.apache.org/foundation/sponsorship.html";>Sponsorshiphttp://www.apache.org/foundation/thanks.html";>Thankshttp://www.apache.org/licenses/";>LicenseContentTable of Contents +Apache Tomcat® - Migration Guide - Tomcat 11.0.xhttp://tomcat.apache.org/";>Apache Tomcat®https://www.apache.org/foundation/contributing.html"; target="_blank" class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" alt="Support Apache">http://www.apache.org/"; target="_blank" class="pull-left">https://www.google.com/search"; method="get">GOApache TomcatHomeTaglibsMaven PluginDownloadWhich version?https://tomcat.apache.org/download-11.cgi";>Tomcat 11 (alpha)https://tomcat.apache.org/download-10.cgi";>Tomcat 10https://tomcat.apache.or g/download-90.cgi">Tomcat 9https://tomcat.apache.org/download-80.cgi";>Tomcat 8https://tomcat.apache.org/download-migration.cgi";>Tomcat Migration Tool for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi";>Tomcat Connectorshttps://tomcat.apache.org/download-native.cgi";>Tomcat Nativehttps://tomcat.apache.org/download-taglibs.cgi";>Taglibshttps://archive.apache.org/dist/tomcat/";>ArchivesDocumentationTomcat 11.0 (alpha)Tomcat 10.1Tomcat 9.0Tomcat 8.5Tomcat ConnectorsTomcat Native 2Tomcat Native 1.2href="https://cwiki.apache.org/confluence/display/TOMCAT";>Wikihref="./migration.html">Migration Guidehref="./presentations.html">Presentationshref="https://cwiki.apache.org/confluence/x/Bi8lBg";>SpecificationsProblems? href="./security.html">Security Reportshref="./findhelp.html">Find helphref="https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ href="./lists.html">Mailing ListsBug >DatabaseIRCGet >InvolvedOverviewhref="./source.html">Source codehref="./ci.html">Buildbothref="https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations href="./tools.html">ToolsMediahref="https://twi tter.com/theapachetomcat">Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial";>YouTubehttps://blogs.apache.org/tomcat/";>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>SwagHeritagehttp://www.apache.org";>Apache HomeResourcesContactLegalhttps://privacy.apache.org/policies/privacy-policy-public.html";>Privacyhttps://www.apache.org/foundation/contributing.html";>Support Apachehttps://www.apache.org/foundation/sponsorship.html";>Sponsorshiphttp://www.apache.org/foundation/thanks.html";>Thankshttp://www.apache.org/licenses/";>Licensestyle="display: none;">ContentTable of >Contents GeneralMigrating from 10.1.x to 11.0.xJava 17 requiredSpecification APIsServlet 6.1 APIServer Pages 4.0Expression Language 6.0WebSocket TBDA
svn commit: r1907619 [5/10] - in /tomcat/site/trunk: docs/ xdocs/stylesheets/
Modified: tomcat/site/trunk/docs/oldnews-2010.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/oldnews-2010.html?rev=1907619&r1=1907618&r2=1907619&view=diff == --- tomcat/site/trunk/docs/oldnews-2010.html (original) +++ tomcat/site/trunk/docs/oldnews-2010.html Mon Feb 13 21:03:16 2023 @@ -1,5 +1,5 @@ -Apache Tomcat® - Old news! - 2010http://tomcat.apache.org/";>Apache Tomcat®https://www.apache.org/foundation/contributing.html"; target="_blank" class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" alt="Support Apache">http://www .apache.org/" target="_blank" class="pull-left">https://www.google.com/search"; method="get">GOApache TomcatHomeTaglibsMaven PluginDownloadWhich version?https://tomcat.apache.org/download-11.cgi";>Tomcat 11 (alpha)https://tomcat.apache.org/download-10.cgi";>Tomcat 10https://tomcat.apache.org/download-90.c gi">Tomcat 9https://tomcat.apache.org/download-80.cgi";>Tomcat 8https://tomcat.apache.org/download-migration.cgi";>Tomcat Migration Tool for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi";>Tomcat Connectorshttps://tomcat.apache.org/download-native.cgi";>Tomcat Nativehttps://tomcat.apache.org/download-taglibs.cgi";>Taglibshttps://archive.apache.org/dist/tomcat/";>ArchivesDocumentationTomcat 11.0 (alpha)Tomcat 10.1Tomcat 10.0Tomcat 9.0Tomcat 8.5Tomcat ConnectorsTomcat Native 2 Tomcat Native 1.2https://cwiki.apache.org/confluence/display/TOMCAT";>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg";>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQMailing ListsBug DatabaseIRCGet InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ";>TranslationsToolsMediahref="https://twitter.com/theapachetomcat";>Twitterhref="https://www.youtube.com/c/ApacheTomcatOfficial";>YouTubehref="https://blogs.apache.org/tomcat/";>BlogMisc href="./whoweare.html">Who We Arehref="https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag href="./heritage.html">Heritagehref="http://www.apache.org";>Apache Homehref="./resources.html">Resourceshref="./contact.html">Contacthref="./legal.html">Legalhref="https://privacy.apache.org/policies/privacy-policy-public.html";>Privacy href="https://www.apache.org/foundation/contributing.html";>Support >Apachehref="https://www.apache.org/foundation/sponsorship.html";>Sponsorship href="http://www.apache.org/foundation/thanks.html";>Thankshref=" http://www.apache.org/licenses/";>LicenseContentOther news +Apache Tomcat® - Old news! - 2010http://tomcat.apache.org/";>Apache Tomcat®https://www.apache.org/foundation/contributing.html"; target="_blank" class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" alt="Support Apache">http://www .apache.org/" target="_blank" class="pull-left">https://www.google.com/search"; method="get">GOApache TomcatHomeTaglibsMaven PluginDownloadWhich version?https://tomcat.apache.org/download-11.cgi";>Tomcat 11 (alpha)https://tomcat.apache.org/download-10.cgi";>Tomcat 10https://tomcat.apache.org/download-90.c gi">Tomcat 9https://tomcat.apache.org/download-80.cgi";>Tomcat 8https://tomcat.apache.org/download-migration.cgi";>Tomcat Migration Tool for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi";>Tomcat Connectorshttps://tomcat.apache.org/download-native.cgi";>Tomcat Nativehttps://tomcat.apache.org/download-taglibs.cgi";>Taglibshttps://archive.apache.org/dist/tomcat/";>ArchivesDocumentationTomcat 11.0 (alpha)Tomcat 10.1Tomcat 9.0Tomcat 8.5Tomcat ConnectorsTomcat Native 2Tomcat Native 1.2https://cwiki.apache.org/confluence/display/TOMCAT";>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg";>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQMailing ListsBug DatabaseIRCGet InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ";>TranslationsToolsMediahttps://twitter.com/theapa chetomcat">Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial";>YouTubehttps://blogs.apache.org/tomcat/";>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>SwagHeritagehttp://www.apache.org";>Apache HomeResourcesContactLegalhttps://privacy.apache.org/policies/privacy-policy-public.html";>Privacyhttps://www.apache.org/foundation/contributing.html";>Support Apachehttps://www.apache.org/foundation/sponsorship.html";>Sponsorshiphttp://www.apache.org/foundation/thanks.html";>Thankshttp://www.apache.org/licenses/";>LicenseContentOther news Announcements from other years can be found here: year 2023 Modified: tomcat/site/trunk/docs/oldnews-2011.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/oldnews-2011.html?rev=1907619&r1=1907618&r2=1907619&view=diff
svn commit: r1907619 [1/10] - in /tomcat/site/trunk: docs/ xdocs/stylesheets/
Author: markt Date: Mon Feb 13 21:03:16 2023 New Revision: 1907619 URL: http://svn.apache.org/viewvc?rev=1907619&view=rev Log: Remove Tomcat 10.0 doc links (docs remain) Modified: tomcat/site/trunk/docs/bugreport.html tomcat/site/trunk/docs/ci.html tomcat/site/trunk/docs/conference.html tomcat/site/trunk/docs/contact.html tomcat/site/trunk/docs/download-10.html tomcat/site/trunk/docs/download-11.html tomcat/site/trunk/docs/download-80.html tomcat/site/trunk/docs/download-90.html tomcat/site/trunk/docs/download-connectors.html tomcat/site/trunk/docs/download-migration.html tomcat/site/trunk/docs/download-native.html tomcat/site/trunk/docs/download-taglibs.html tomcat/site/trunk/docs/findhelp.html tomcat/site/trunk/docs/getinvolved.html tomcat/site/trunk/docs/heritage.html tomcat/site/trunk/docs/index.html tomcat/site/trunk/docs/irc.html tomcat/site/trunk/docs/legal.html tomcat/site/trunk/docs/lists.html tomcat/site/trunk/docs/maven-plugin.html tomcat/site/trunk/docs/migration-10.1.html tomcat/site/trunk/docs/migration-10.html tomcat/site/trunk/docs/migration-11.0.html tomcat/site/trunk/docs/migration-6.html tomcat/site/trunk/docs/migration-7.html tomcat/site/trunk/docs/migration-8.html tomcat/site/trunk/docs/migration-85.html tomcat/site/trunk/docs/migration-9.html tomcat/site/trunk/docs/migration.html tomcat/site/trunk/docs/oldnews-2010.html tomcat/site/trunk/docs/oldnews-2011.html tomcat/site/trunk/docs/oldnews-2012.html tomcat/site/trunk/docs/oldnews-2013.html tomcat/site/trunk/docs/oldnews-2014.html tomcat/site/trunk/docs/oldnews-2015.html tomcat/site/trunk/docs/oldnews-2016.html tomcat/site/trunk/docs/oldnews-2017.html tomcat/site/trunk/docs/oldnews-2018.html tomcat/site/trunk/docs/oldnews-2019.html tomcat/site/trunk/docs/oldnews-2020.html tomcat/site/trunk/docs/oldnews-2021.html tomcat/site/trunk/docs/oldnews-2022.html tomcat/site/trunk/docs/oldnews.html tomcat/site/trunk/docs/presentations.html tomcat/site/trunk/docs/resources.html tomcat/site/trunk/docs/security-10.html tomcat/site/trunk/docs/security-11.html tomcat/site/trunk/docs/security-3.html tomcat/site/trunk/docs/security-4.html tomcat/site/trunk/docs/security-5.html tomcat/site/trunk/docs/security-6.html tomcat/site/trunk/docs/security-7.html tomcat/site/trunk/docs/security-8.html tomcat/site/trunk/docs/security-9.html tomcat/site/trunk/docs/security-impact.html tomcat/site/trunk/docs/security-jk.html tomcat/site/trunk/docs/security-native.html tomcat/site/trunk/docs/security-taglibs.html tomcat/site/trunk/docs/security.html tomcat/site/trunk/docs/source.html tomcat/site/trunk/docs/taglibs.html tomcat/site/trunk/docs/tomcat-10.0-eol.html tomcat/site/trunk/docs/tomcat-55-eol.html tomcat/site/trunk/docs/tomcat-60-eol.html tomcat/site/trunk/docs/tomcat-70-eol.html tomcat/site/trunk/docs/tomcat-80-eol.html tomcat/site/trunk/docs/tomcat-85-eol.html tomcat/site/trunk/docs/tools.html tomcat/site/trunk/docs/whichversion.html tomcat/site/trunk/docs/whoweare.html tomcat/site/trunk/xdocs/stylesheets/project.xml Modified: tomcat/site/trunk/docs/bugreport.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/bugreport.html?rev=1907619&r1=1907618&r2=1907619&view=diff == --- tomcat/site/trunk/docs/bugreport.html (original) +++ tomcat/site/trunk/docs/bugreport.html Mon Feb 13 21:03:16 2023 @@ -1,5 +1,5 @@ -Apache Tomcat® - Reporting Bugshttp://tomcat.apache.org/";>Apache Tomcat®https://www.apache.org/foundation/contributing.html"; target="_blank" class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" alt="Support Apache">http://www.apache .org/" target="_blank" class="pull-left">https://www.google.com/search"; method="get">GOApache TomcatHomeTaglibsMaven PluginDownloadWhich version?https://tomcat.apache.org/download-11.cgi";>Tomcat 11 (alpha)https://tomcat.apache.org/download-10.cgi";>Tomcat 10https://tomcat.apache.org/download-90.cgi";>Tom cat 9https://tomcat.apache.org/download-80.cgi";>Tomcat 8https://tomcat.apache.org/download-migration.cgi";>Tomcat Migration Tool for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi";>Tomcat Connectorshttps://tomcat.apache.org/download-native.cgi";>Tomcat Nativehttps://tomcat.apache.org/download-taglibs.cgi";>Taglibshttps://archive.apache.org/dist/tomcat/";>ArchivesDocumentationTomcat 11.0 (alpha)Tomcat 10.1Tomcat 10.0Tomcat 9.0Tomcat 8.5Tomcat ConnectorsTomcat Native 2Tomcat Native 1.2https://cwiki.apache.org/confluence/display/TOMCAT";>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg";>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/conf
svn commit: r1907619 [2/10] - in /tomcat/site/trunk: docs/ xdocs/stylesheets/
Modified: tomcat/site/trunk/docs/download-90.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-90.html?rev=1907619&r1=1907618&r2=1907619&view=diff == --- tomcat/site/trunk/docs/download-90.html (original) +++ tomcat/site/trunk/docs/download-90.html Mon Feb 13 21:03:16 2023 @@ -1,5 +1,5 @@ -Apache Tomcat® - Apache Tomcat 9 Software Downloadshttp://tomcat.apache.org/";>Apache Tomcat®https://www.apache.org/foundation/contributing.html"; target="_blank" class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" alt="Support Apache">http://www.apache.org/"; target="_blank" clas s="pull-left">https://www.google.com/search"; method="get">GOApache TomcatHomeTaglibsMaven PluginDownloadWhich version?https://tomcat.apache.org/download-11.cgi";>Tomcat 11 (alpha)https://tomcat.apache.org/download-10.cgi";>Tomcat 10https://tomcat.apache.org/download-90.cgi";>Tomcat 9https://tomcat.apache.org/download-80.cgi";>Tomcat 8https://tomcat.apache.org/download-migration.cgi";>Tomcat Migration Tool for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi";>Tomcat Connectorshttps://tomcat.apache.org/download-native.cgi";>Tomcat Nativehttps://tomcat.apache.org/download-taglibs.cgi";>Taglibshttps://archive.apache.org/dist/tomcat/";>ArchivesDocumentationTomcat 11.0 (alpha)Tomcat 10.1Tomcat 10.0Tomcat 9.0Tomcat 8.5Tomcat ConnectorsTomcat Native 2Tomcat Native 1.2https://cwiki.apache.org/confluence/display/TOMCAT";>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg";>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQMailing ListsBug DatabaseIRCGet InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ";>TranslationsToolsMediahttps://twitter.com/theapachetomcat";>Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial";>YouTubehttps://blogs.apache.org/tomcat/";>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>SwagHeritagehttp://www.apache.org";>Apache HomeResourcesContactLegalhttps://privacy.apache.org/policies/privacy-policy-public.html";>Privacyhttps://www.apache.org/foundation/contributing.html";>Support Apachehttps://www.apache.org/foundation/sponsorship.html";>Sponsorshiphttp://www.apache.org/foundation/thanks.html";>Thankshttp://www.apache.org/licenses/";>L icenseContentTomcat 9 Software Downloads +Apache Tomcat® - Apache Tomcat 9 Software Downloadshttp://tomcat.apache.org/";>Apache Tomcat®https://www.apache.org/foundation/contributing.html"; target="_blank" class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" alt="Support Apache">http://www.apache.org/"; target="_blank" clas s="pull-left">https://www.google.com/search"; method="get">GOApache TomcatHomeTaglibsMaven PluginDownloadWhich version?https://tomcat.apache.org/download-11.cgi";>Tomcat 11 (alpha)https://tomcat.apache.org/download-10.cgi";>Tomcat 10https://tomcat.apache.org/download-90.cgi";>Tomcat 9https://tomcat.apache.org/download-80.cgi";>Tomcat 8https://tomcat.apache.org/download-migration.cgi";>Tomcat Migration Tool for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi";>Tomcat Connectorshttps://tomcat.apache.org/download-native.cgi";>Tomcat Nativehttps://tomcat.apache.org/download-taglibs.cgi";>Taglibshttps://archive.apache.org/dist/tomcat/";>ArchivesDocumentationTomcat 11.0 (alpha)Tomcat 10.1Tomcat 9.0Tomcat 8.5Tomcat ConnectorsTomcat Native 2Tomcat Native 1.2https://cwiki.apache.org/confl uence/display/TOMCAT">WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg";>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQMailing ListsBug DatabaseIRCGet InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ";>TranslationsToolsMediahttps://twitter.com/theapachetomcat";>Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial";>YouTubehttps://blogs.apache.org/tomcat/";>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>SwagHeritagehttp://www.apache.org";>Apache HomeResourcesContactLegalhttps://privacy.apache.org/policies/privacy-policy-public.html";>Privacyhttps://www.apache.org/foundation/contributing.html";>Support Apachehttps://www.apache.org/foundation/sponsorship.html";>Sponsorshiphttp://www.apache.org/foundation/thanks.html";>Thankshttp://www.apache.org/licenses/";>LicenseContentid="Tomcat_9_Software_Downloads">Tomcat 9 Software Downloadsclass="text"> Welcome to the Apache Tomcat® 9.x software download page. This page provides download links for obtaining the latest version of Tomcat 9.0.x software, as well as links to the archives of older releases. Modified: tomcat/site/trunk/docs/download-connectors.html URL: http://svn.apache.org/viewvc/tom
svn commit: r1907620 - in /tomcat/site/trunk: docs/index.html docs/oldnews-2022.html xdocs/index.xml xdocs/oldnews-2022.xml
Author: markt Date: Mon Feb 13 21:04:18 2023 New Revision: 1907620 URL: http://svn.apache.org/viewvc?rev=1907620&view=rev Log: Move final 10.0.x release to old news page Modified: tomcat/site/trunk/docs/index.html tomcat/site/trunk/docs/oldnews-2022.html tomcat/site/trunk/xdocs/index.xml tomcat/site/trunk/xdocs/oldnews-2022.xml Modified: tomcat/site/trunk/docs/index.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/index.html?rev=1907620&r1=1907619&r2=1907620&view=diff == --- tomcat/site/trunk/docs/index.html (original) +++ tomcat/site/trunk/docs/index.html Mon Feb 13 21:04:18 2023 @@ -215,37 +215,6 @@ Full details of these changes, and all t https://tomcat.apache.org/download-migration.cgi";>Download -2022-10-10 Tomcat 10.0.27 Released - -The Apache Tomcat Project is proud to announce the release of version 10.0.27 -of Apache Tomcat. This release implements specifications that are part of the -Jakarta EE 9 platform. -Applications that run on Tomcat 9 and earlier will not run on Tomcat 10 -without changes. Java EE based applications designed for Tomcat 9 and earlier -may be placed in the $CATALINA_BASE/webapps-javaee directory and -Tomcat will automatically convert them to Jakarta EE and copy them to the -webapps directory. This conversion is performed using the -https://github.com/apache/tomcat-jakartaee-migration";>Apache Tomcat -migration tool for Jakarta EE tool which is also available as a separate -https://tomcat.apache.org/download-migration.cgi";>download for off-line use. -The notable changes in this release are: - -Fix bug https://bz.apache.org/bugzilla/show_bug.cgi?id=66277";>66277, a refactoring regression that broke JSP includes -amongst other functionality -Fix unexpected timeouts that may appear as client disconnections when using -HTTP/2 and NIO2 -Enforce the requirement of RFC 7230 onwards that a request with a malformed -content-length header should always be rejected with a 400 response. - - -Full details of these changes, and all the other changes, are available in the -Tomcat 10 -changelog. - - - -https://tomcat.apache.org/download-10.cgi";>Download - 2020-03-06 Tomcat Connectors 1.2.48 Released The Apache Tomcat Project is proud to announce the release of version 1.2.48 of Modified: tomcat/site/trunk/docs/oldnews-2022.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/oldnews-2022.html?rev=1907620&r1=1907619&r2=1907620&view=diff == --- tomcat/site/trunk/docs/oldnews-2022.html (original) +++ tomcat/site/trunk/docs/oldnews-2022.html Mon Feb 13 21:04:18 2023 @@ -238,6 +238,37 @@ changelog. https://tomcat.apache.org/download-10.cgi";>Download +2022-10-10 Tomcat 10.0.27 Released + +The Apache Tomcat Project is proud to announce the release of version 10.0.27 +of Apache Tomcat. This release implements specifications that are part of the +Jakarta EE 9 platform. +Applications that run on Tomcat 9 and earlier will not run on Tomcat 10 +without changes. Java EE based applications designed for Tomcat 9 and earlier +may be placed in the $CATALINA_BASE/webapps-javaee directory and +Tomcat will automatically convert them to Jakarta EE and copy them to the +webapps directory. This conversion is performed using the +https://github.com/apache/tomcat-jakartaee-migration";>Apache Tomcat +migration tool for Jakarta EE tool which is also available as a separate +https://tomcat.apache.org/download-migration.cgi";>download for off-line use. +The notable changes in this release are: + +Fix bug https://bz.apache.org/bugzilla/show_bug.cgi?id=66277";>66277, a refactoring regression that broke JSP includes +amongst other functionality +Fix unexpected timeouts that may appear as client disconnections when using +HTTP/2 and NIO2 +Enforce the requirement of RFC 7230 onwards that a request with a malformed +content-length header should always be rejected with a 400 response. + + +Full details of these changes, and all the other changes, are available in the +Tomcat 10 +changelog. + + + +https://tomcat.apache.org/download-10.cgi";>Download + 2022-10-07 Tomcat 9.0.68 Released The Apache Tomcat Project is proud to announce the release of version 9.0.68 Modified: tomcat/site/trunk/xdocs/index.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/index.xml?rev=1907620&r1=1907619&r2=1907620&view=diff == --- tomcat/site/trunk/xdocs/index.xml (original) +++ tomcat/site/trunk/xdocs/index.xml Mon Feb 13 21:04:18 2023 @@ -251,39 +251,6 @@ Full details of these changes, and all t - - -The Apache Tomcat Project is proud to announce the release of version 10.0.27 -of Apache Tomcat. This release implements specifications that are part of the -Jakarta EE 9 platform. -Applications that run on Tomcat 9
svn commit: r1907619 [8/10] - in /tomcat/site/trunk: docs/ xdocs/stylesheets/
Modified: tomcat/site/trunk/docs/security-9.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/security-9.html?rev=1907619&r1=1907618&r2=1907619&view=diff == --- tomcat/site/trunk/docs/security-9.html (original) +++ tomcat/site/trunk/docs/security-9.html Mon Feb 13 21:03:16 2023 @@ -1,5 +1,5 @@ -Apache Tomcat® - Apache Tomcat 9 vulnerabilitieshttp://tomcat.apache.org/";>Apache Tomcat®https://www.apache.org/foundation/contributing.html"; target="_blank" class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" alt="Support Apache">http://www.apache.org/"; target="_blank" class="pull-left">https://www.google.com/search"; method="get">GOApache TomcatHomeTaglibsMaven PluginDownloadWhich version?https://tomcat.apache.org/download-11.cgi";>Tomcat 11 (alpha)https://tomcat.apache.org/download-10.cgi";>Tomcat 10https://tomcat.apache.or g/download-90.cgi">Tomcat 9https://tomcat.apache.org/download-80.cgi";>Tomcat 8https://tomcat.apache.org/download-migration.cgi";>Tomcat Migration Tool for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi";>Tomcat Connectorshttps://tomcat.apache.org/download-native.cgi";>Tomcat Nativehttps://tomcat.apache.org/download-taglibs.cgi";>Taglibshttps://archive.apache.org/dist/tomcat/";>ArchivesDocumentationTomcat 11.0 (alpha)Tomcat 10.1Tomcat 10.0Tomcat 9.0Tomcat 8.5Tomcat ConnectorsTomcat Native 2Tomcat Native 1.2https://cwiki.apache.org/confluence/display/TOMCAT";>WikiMigration GuidePresentationshttps://cwiki.apache.org/confluence/x/Bi8lBg";>SpecificationsProblems?Security ReportsFind helphttps://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQMailing ListsBug DatabaseIRCGet InvolvedOverviewSource codeBuildbothttps://cwiki.apache.org/confluence/x/vIPzBQ";>TranslationsTools Mediahttps://twitter.com/theapachetomcat";>Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial";>YouTubehttps://blogs.apache.org/tomcat/";>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>SwagHeritagehttp://www.apache.org";>Apache HomeResourcesContactLegalhttps://privacy.apache.org/policies/privacy-policy-public.html";>Privacyhttps://www.apache.org/foundation/contributing.html";>Support Apachehttps://www.apache.org/foundation/sponsorship.html";>Sponsorshiphttp://www.apache.org/foundation/thanks.html";>Thankshttp://www.apache.org/licenses/";>LicenseContentApache Tomcat 9.x vulnerabilities +Apache Tomcat® - Apache Tomcat 9 vulnerabilitieshttp://tomcat.apache.org/";>Apache Tomcat®https://www.apache.org/foundation/contributing.html"; target="_blank" class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" alt="Support Apache">http://www.apache.org/"; target="_blank" class="pull-left">https://www.google.com/search"; method="get">GOApache TomcatHomeTaglibsMaven PluginDownloadWhich version?https://tomcat.apache.org/download-11.cgi";>Tomcat 11 (alpha)https://tomcat.apache.org/download-10.cgi";>Tomcat 10https://tomcat.apache.or g/download-90.cgi">Tomcat 9https://tomcat.apache.org/download-80.cgi";>Tomcat 8https://tomcat.apache.org/download-migration.cgi";>Tomcat Migration Tool for Jakarta EEhttps://tomcat.apache.org/download-connectors.cgi";>Tomcat Connectorshttps://tomcat.apache.org/download-native.cgi";>Tomcat Nativehttps://tomcat.apache.org/download-taglibs.cgi";>Taglibshttps://archive.apache.org/dist/tomcat/";>ArchivesDocumentationTomcat 11.0 (alpha)Tomcat 10.1Tomcat 9.0Tomcat 8.5Tomcat ConnectorsTomcat Native 2Tomcat Native 1.2href="https://cwiki.apache.org/confluence/display/TOMCAT";>Wikihref="./migration.html">Migration Guidehref="./presentations.html">Presentationshref="https://cwiki.apache.org/confluence/x/Bi8lBg";>SpecificationsProblems? href="./security.html">Security Reportshref="./findhelp.html">Find helphref="https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ href="./lists.html">Mailing ListsBug >DatabaseIRCGet >InvolvedOverviewhref="./source.html">Source codehref="./ci.html">Buildbothref="https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations href="./tools.html">ToolsMediahref="https://twi tter.com/theapachetomcat">Twitterhttps://www.youtube.com/c/ApacheTomcatOfficial";>YouTubehttps://blogs.apache.org/tomcat/";>BlogMiscWho We Arehttps://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>SwagHeritagehttp://www.apache.org";>Apache HomeResourcesContactLegalhttps://privacy.apache.org/policies/privacy-policy-public.html";>Privacyhttps://www.apache.org/foundation/contributing.html";>Support Apachehttps://www.apache.org/foundation/sponsorship.html";>Sponsorshiphttp://www.apache.org/foundation/thanks.html";>Thankshttp://www.apache.org/licenses/";>Licensestyle="display: none;">Contentid="Apache_Tomcat_9.x_vulnerabilities">Apache Tomcat 9.x >vulnerabilities This page lists all security vulnerabilities fixed in released versions o
svn commit: r1907621 - in /tomcat/site/trunk: docs/sitemap-main.xml xdocs/sitemap-main.xml
Author: markt Date: Mon Feb 13 21:06:31 2023 New Revision: 1907621 URL: http://svn.apache.org/viewvc?rev=1907621&view=rev Log: Remove Tomcat 10.0.x docs Modified: tomcat/site/trunk/docs/sitemap-main.xml tomcat/site/trunk/xdocs/sitemap-main.xml Modified: tomcat/site/trunk/docs/sitemap-main.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/sitemap-main.xml?rev=1907621&r1=1907620&r2=1907621&view=diff == --- tomcat/site/trunk/docs/sitemap-main.xml (original) +++ tomcat/site/trunk/docs/sitemap-main.xml Mon Feb 13 21:06:31 2023 @@ -14,7 +14,7 @@ http://tomcat.apache.org/tomcat-11.0-doc/ monthly -0.7 +0.9 http://tomcat.apache.org/tomcat-10.1-doc/ @@ -22,11 +22,6 @@ 0.9 -http://tomcat.apache.org/tomcat-10.0-doc/ -monthly -0.5 - - http://tomcat.apache.org/tomcat-9.0-doc/ monthly 0.8 Modified: tomcat/site/trunk/xdocs/sitemap-main.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/sitemap-main.xml?rev=1907621&r1=1907620&r2=1907621&view=diff == --- tomcat/site/trunk/xdocs/sitemap-main.xml (original) +++ tomcat/site/trunk/xdocs/sitemap-main.xml Mon Feb 13 21:06:31 2023 @@ -14,7 +14,7 @@ http://tomcat.apache.org/tomcat-11.0-doc/ monthly -0.7 +0.9 http://tomcat.apache.org/tomcat-10.1-doc/ @@ -22,11 +22,6 @@ 0.9 -http://tomcat.apache.org/tomcat-10.0-doc/ -monthly -0.5 - - http://tomcat.apache.org/tomcat-9.0-doc/ monthly 0.8 - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1907622 - in /tomcat/site/trunk: README.txt build.xml
Author: markt Date: Mon Feb 13 21:08:25 2023 New Revision: 1907622 URL: http://svn.apache.org/viewvc?rev=1907622&view=rev Log: Remove 10.0.x docs from build. Update for building 11.0.x docs. Modified: tomcat/site/trunk/README.txt tomcat/site/trunk/build.xml Modified: tomcat/site/trunk/README.txt URL: http://svn.apache.org/viewvc/tomcat/site/trunk/README.txt?rev=1907622&r1=1907621&r2=1907622&view=diff == --- tomcat/site/trunk/README.txt (original) +++ tomcat/site/trunk/README.txt Mon Feb 13 21:08:25 2023 @@ -73,7 +73,7 @@ reflected on the live tomcat.apache.org immediately, so go to http://tomcat.apache.org/ and have fun. -To update the documentation for Tomcat 8.5.x, 9.0.x, 10.0.x or 10.1.x: +To update the documentation for Tomcat 8.5.x, 9.0.x, 10.1.x or 11.0.x: == 1. If you are using the "sparse" checkout feature, make sure that @@ -85,8 +85,8 @@ To update the documentation for Tomcat 8 cd tomcat-site svn up --set-depth infinity docs/tomcat-8.5-doc svn up --set-depth infinity docs/tomcat-9.0-doc - svn up --set-depth infinity docs/tomcat-10.0-doc svn up --set-depth infinity docs/tomcat-10.1-doc + svn up --set-depth infinity docs/tomcat-11.0-doc 2. Create build.properties file if you have not done so yet and set "base.path" property in it. E.g. @@ -107,8 +107,8 @@ To update the documentation for Tomcat 8 cd tomcat-site ant release-8.5 ant release-9.0 - ant release-10.0 ant release-10.1 + ant release-11.0 5. Check the changes with "svn status" command. Modified: tomcat/site/trunk/build.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/build.xml?rev=1907622&r1=1907621&r2=1907622&view=diff == --- tomcat/site/trunk/build.xml (original) +++ tomcat/site/trunk/build.xml Mon Feb 13 21:08:25 2023 @@ -135,28 +135,6 @@ - - - - - - - - - - - - - - - - - - - - @@ -164,7 +142,7 @@ - + - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
svn commit: r1907623 - in /tomcat/site/trunk: docs/index.html xdocs/index.xml
Author: markt Date: Mon Feb 13 21:09:15 2023 New Revision: 1907623 URL: http://svn.apache.org/viewvc?rev=1907623&view=rev Log: Fix copy/paste error Modified: tomcat/site/trunk/docs/index.html tomcat/site/trunk/xdocs/index.xml Modified: tomcat/site/trunk/docs/index.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/index.html?rev=1907623&r1=1907622&r2=1907623&view=diff == --- tomcat/site/trunk/docs/index.html (original) +++ tomcat/site/trunk/docs/index.html Mon Feb 13 21:09:15 2023 @@ -44,7 +44,7 @@ Tomcat Native. The notable changes compa https://tomcat.apache.org/download-native.cgi";>Download | -ChangeLog for 2.0.2 +ChangeLog for 2.0.3 2023-02-13 Tomcat Native 1.2.36 Released Modified: tomcat/site/trunk/xdocs/index.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/index.xml?rev=1907623&r1=1907622&r2=1907623&view=diff == --- tomcat/site/trunk/xdocs/index.xml (original) +++ tomcat/site/trunk/xdocs/index.xml Mon Feb 13 21:09:15 2023 @@ -65,7 +65,7 @@ Tomcat Native. The notable changes compa Download | -ChangeLog for 2.0.2 +ChangeLog for 2.0.3 - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org