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
commit ec7f722b566d492b0d6d3e456fdd25569e9f4acf Author: Mark Thomas <[email protected]> AuthorDate: Mon Jan 12 17:23:22 2026 +0000 Update minimum Tomcat Native version to 1.3.4 This is in preparation for adding TLS 1.3 config support and expanding the OCSP config support --- java/org/apache/catalina/core/AprLifecycleListener.java | 6 +++--- webapps/docs/changelog.xml | 4 ++++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/java/org/apache/catalina/core/AprLifecycleListener.java b/java/org/apache/catalina/core/AprLifecycleListener.java index 11a8794a9e..2e8de8caaa 100644 --- a/java/org/apache/catalina/core/AprLifecycleListener.java +++ b/java/org/apache/catalina/core/AprLifecycleListener.java @@ -64,11 +64,11 @@ public class AprLifecycleListener implements LifecycleListener { // ---------------------------------------------- Constants protected static final int TCN_REQUIRED_MAJOR = 1; - protected static final int TCN_REQUIRED_MINOR = 2; - protected static final int TCN_REQUIRED_PATCH = 14; + protected static final int TCN_REQUIRED_MINOR = 3; + protected static final int TCN_REQUIRED_PATCH = 4; protected static final int TCN_RECOMMENDED_MAJOR = 1; protected static final int TCN_RECOMMENDED_MINOR = 3; - protected static final int TCN_RECOMMENDED_PV = 0; + protected static final int TCN_RECOMMENDED_PV = 4; // ---------------------------------------------- Properties diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml index 933528d304..9b9b0a2b15 100644 --- a/webapps/docs/changelog.xml +++ b/webapps/docs/changelog.xml @@ -121,6 +121,10 @@ <bug>69918</bug>: Ensure request parameters are correctly parsed for HTTP/2 requests when the content-length header is not set. (dsoumis) </fix> + <update> + Update the minimum and recommended versions for Tomcat Native to 1.3.4. + (markt) + </update> </changelog> </subsection> <subsection name="Coyote"> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
