Author: rjung
Date: Mon Sep  4 15:09:34 2017
New Revision: 1807237

URL: http://svn.apache.org/viewvc?rev=1807237&view=rev
Log:
Increase the minimum required Tomcat Native
version to 1.2.14.

This version includes a new API needed for
correct client certificate support when using
a Java connector with OpenSSL TLS implementation
and support for the OpenSSL SSL_CONF API.

Modified:
    tomcat/trunk/java/org/apache/catalina/core/AprLifecycleListener.java
    tomcat/trunk/webapps/docs/changelog.xml

Modified: tomcat/trunk/java/org/apache/catalina/core/AprLifecycleListener.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/core/AprLifecycleListener.java?rev=1807237&r1=1807236&r2=1807237&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/core/AprLifecycleListener.java 
(original)
+++ tomcat/trunk/java/org/apache/catalina/core/AprLifecycleListener.java Mon 
Sep  4 15:09:34 2017
@@ -66,9 +66,9 @@ public class AprLifecycleListener
 
     protected static final int TCN_REQUIRED_MAJOR = 1;
     protected static final int TCN_REQUIRED_MINOR = 2;
-    protected static final int TCN_REQUIRED_PATCH = 6;
+    protected static final int TCN_REQUIRED_PATCH = 14;
     protected static final int TCN_RECOMMENDED_MINOR = 2;
-    protected static final int TCN_RECOMMENDED_PV = 8;
+    protected static final int TCN_RECOMMENDED_PV = 14;
 
 
     // ---------------------------------------------- Properties

Modified: tomcat/trunk/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1807237&r1=1807236&r2=1807237&view=diff
==============================================================================
--- tomcat/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/trunk/webapps/docs/changelog.xml Mon Sep  4 15:09:34 2017
@@ -79,13 +79,18 @@
   </subsection>
   <subsection name="Coyote">
     <changelog>
+      <update>
+        The minimum required Tomcat Native version has been increased to 
1.2.14.
+        This version includes a new API needed for correct client certificate
+        support when using a Java connector with OpenSSL TLS implementation and
+        support for the <code>SSL_CONF</code> OpenSSL API. (rjung)
+      </update>
       <add>
-        Add support for the OpenSSL SSL_CONF API when using TLS with
-        OpenSSL implementation. This will need tcnative 1.2.13.
-        It can be used by adding <code>OpenSSLConf</code> elements
-        underneath <code>SSLHostConfig</code>. The new element contains
-        a list of <code>OpenSSLConfCmd</code> elements, each with
-        the attributes <code>name</code> and <code>value</code>.
+        Add support for the OpenSSL <code>SSL_CONF</code> API when using
+        TLS with OpenSSL implementation. It can be used by adding
+        <code>OpenSSLConf</code> elements underneath 
<code>SSLHostConfig</code>.
+        The new element contains a list of <code>OpenSSLConfCmd</code> 
elements,
+        each with the attributes <code>name</code> and <code>value</code>.
         (rjung)
       </add>
       <fix>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to