Skip to content

Commit 045f436

Browse files
committed
Update minimum required Native versions
There is new API in 1.3.8 / 2.0.15 that is required (part of PHA fixes)
1 parent 0fdee56 commit 045f436

2 files changed

Lines changed: 10 additions & 3 deletions

File tree

java/org/apache/catalina/core/AprLifecycleListener.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,20 +65,20 @@ public class AprLifecycleListener implements LifecycleListener {
6565
// ---------------------------------------------- Constants
6666

6767
private static final int TCN_1_REQUIRED_MINOR = 3;
68-
private static final int TCN_1_REQUIRED_PATCH = 4;
68+
private static final int TCN_1_REQUIRED_PATCH = 8;
6969

7070
/** Required major version of Tomcat Native. */
7171
protected static final int TCN_REQUIRED_MAJOR = 2;
7272
/** Required minor version of Tomcat Native. */
7373
protected static final int TCN_REQUIRED_MINOR = 0;
7474
/** Required patch version of Tomcat Native. */
75-
protected static final int TCN_REQUIRED_PATCH = 12;
75+
protected static final int TCN_REQUIRED_PATCH = 15;
7676
/** Recommended major version of Tomcat Native. */
7777
protected static final int TCN_RECOMMENDED_MAJOR = 2;
7878
/** Recommended minor version of Tomcat Native. */
7979
protected static final int TCN_RECOMMENDED_MINOR = 0;
8080
/** Recommended patch version of Tomcat Native. */
81-
protected static final int TCN_RECOMMENDED_PV = 14;
81+
protected static final int TCN_RECOMMENDED_PV = 15;
8282

8383

8484
// ---------------------------------------------- Properties

webapps/docs/changelog.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -499,6 +499,13 @@
499499
When processing an OpenSSL cipher specification, fully align the order
500500
of the resulting ciphers with the order produced by OpenSSL. (markt)
501501
</fix>
502+
<update>
503+
Update both the minimum and recommended version for Tomcat Native 2.x to
504+
2.0.15. (markt)
505+
</update>
506+
<update>
507+
Update both the minimum version for Tomcat Native 1.x to 1.3.8. (markt)
508+
</update>
502509
</changelog>
503510
</subsection>
504511
<subsection name="Jasper">

0 commit comments

Comments
 (0)