Author: markt Date: Mon Dec 21 12:20:50 2020 New Revision: 1884675 URL: http://svn.apache.org/viewvc?rev=1884675&view=rev Log: Update docs for Native 1.2.26 release
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/2020.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=1884675&r1=1884674&r2=1884675&view=diff ============================================================================== --- tomcat/site/trunk/docs/native-doc/index.html (original) +++ tomcat/site/trunk/docs/native-doc/index.html Mon Dec 21 12:20:50 2020 @@ -22,15 +22,16 @@ <li>Non-blocking I/O for Keep-Alive requests (between requests)</li> <li>Uses OpenSSL for TLS/SSL capabilities (if supported by linked APR library)</li> <li>FIPS 140-2 support for TLS/SSL (if supported by linked OpenSSL library)</li> + <li>Support for IPv4, IPv6 and Unix Domain Sockets</li> </ul> </div><h3 id="Headlines">Headlines</h3><div class="text"> <ul> -<li><a href="news/2020.html#20200903">3 Sep 2020 - <b>TC-Native-1.2.25 +<li><a href="news/2020.html#20201221">21 Dec 2020 - <b>TC-Native-1.2.26 released</b></a> <p>The Apache Tomcat team is proud to announce the immediate availability of -Tomcat Native 1.2.25 Stable.</p> +Tomcat Native 1.2.26 Stable.</p> <p> The sources and the binaries for selected platforms are available from the <a href="../download-native.cgi">Download page</a>. @@ -133,6 +134,14 @@ list of changes. <p> Please see the Apache Tomcat documentation for configuration specifics. </p> + + <p> + When using Unix Domain Sockets a cleanup is registered to delete the + socket on destruction of the socket, or shutdown of the application. + Should the application terminate abnormally, the socket deletion will + need to be handled by the caller or by the administrator. + </p> + </div></div> <div class="subsection"><h4 id="Install_and_tests/UNIX">UNIX</h4><div class="text"> @@ -145,11 +154,11 @@ export LD_LIBRARY_PATH</code></pre></div <p> Start tomcat and check for the messages like this ones: </p> - <div class="codeBox"><pre class="wrap"><code>Feb 8, 2015 12:27:41 PM org.apache.catalina.core.AprLifecycleListener init + <div class="codeBox"><pre class="wrap"><code>Nov 29, 2020 12:27:41 PM org.apache.catalina.core.AprLifecycleListener init INFO: Loaded APR based Apache Tomcat Native library 1.x.y. -Feb 8, 2015 12:27:41 PM org.apache.catalina.core.AprLifecycleListener init -INFO: APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true]. -Feb 8, 2015 12:27:41 PM org.apache.coyote.http11.Http11AprProtocol init +Nov 29, 2020 12:27:41 PM org.apache.catalina.core.AprLifecycleListener init +INFO: APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true], UDS [true]. +Nov 29, 2020 12:27:41 PM org.apache.coyote.http11.Http11AprProtocol init INFO: Initializing Coyote HTTP/1.1 on http-8080</code></pre></div> <p> @@ -170,11 +179,11 @@ INFO: Initializing Coyote HTTP/1.1 on ht <p> Start tomcat and check for the messages like this ones: </p> - <div class="codeBox"><pre class="wrap"><code>Feb 8, 2015 2:48:17 PM org.apache.catalina.core.AprLifecycleListener init + <div class="codeBox"><pre class="wrap"><code>Nov 29, 2020 2:48:17 PM org.apache.catalina.core.AprLifecycleListener init INFO: Loaded APR based Apache Tomcat Native library 1.x.y. -Feb 8, 2015 2:48:17 PM org.apache.catalina.core.AprLifecycleListener init -INFO: APR capabilities: IPv6 [false], sendfile [true], accept filters [false], random [true]. -Feb 8, 2015 2:48:18 PM org.apache.coyote.http11.Http11AprProtocol init +Nov 29, 2020 2:48:17 PM org.apache.catalina.core.AprLifecycleListener init +INFO: APR capabilities: IPv6 [false], sendfile [true], accept filters [false], random [true], UDS [false]. +Nov 29, 2020 2:48:18 PM org.apache.coyote.http11.Http11AprProtocol init INFO: Initializing Coyote HTTP/1.1 on http-8080</code></pre></div> </div></div> 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=1884675&r1=1884674&r2=1884675&view=diff ============================================================================== --- tomcat/site/trunk/docs/native-doc/miscellaneous/changelog.html (original) +++ tomcat/site/trunk/docs/native-doc/miscellaneous/changelog.html Mon Dec 21 12:20:50 2020 @@ -3,6 +3,18 @@ <p> This is the Changelog for Tomcat Native 1.2. </p> +</div><h3 id="Changes_in_1.2.26">Changes in 1.2.26</h3><div class="text"> + <ul class="changelog"> + <li><img alt="Fix: " class="icon" src="../images/fix.gif"> + Enable building to continue against OpenSSL 3.x and 1.1.1. (markt) + </li> + <li><img alt="Add: " class="icon" src="../images/add.gif"> + <a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=64942">64942</a>: Expose support for Unix Domain Sockets in APR v1.6 and up. (minfrin) + </li> + <li><img alt="Update: " class="icon" src="../images/update.gif"> + Update recommended OpenSSL version to 1.1.1i or later. (markt) + </li> + </ul> </div><h3 id="Changes_in_1.2.25">Changes in 1.2.25</h3><div class="text"> <ul class="changelog"> <li><img alt="Fix: " class="icon" src="../images/fix.gif"> Modified: tomcat/site/trunk/docs/native-doc/news/2020.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/native-doc/news/2020.html?rev=1884675&r1=1884674&r2=1884675&view=diff ============================================================================== --- tomcat/site/trunk/docs/native-doc/news/2020.html (original) +++ tomcat/site/trunk/docs/native-doc/news/2020.html Mon Dec 21 12:20:50 2020 @@ -1,5 +1,10 @@ <!DOCTYPE html SYSTEM "about:legacy-compat"> <html lang="en"><head><META http-equiv="Content-Type" content="text/html; charset=UTF-8"><link href="../images/docs-stylesheet.css" rel="stylesheet" type="text/css"><link href="../images/style.css" rel="stylesheet" type="text/css"><title>The Apache Tomcat Native - News - 2020 News and Status</title></head><body><div id="wrapper"><header><div id="header"><div><div><div class="logo noPrint"><a href="http://tomcat.apache.org/"><img alt="Tomcat Home" src="../images/tomcat.png"></a></div><div style="height: 1px;"></div><div class="asfLogo noPrint"><a href="http://www.apache.org/" target="_blank"><img src="../images/asf-feather.png" alt="The Apache Software Foundation" style="width: 266px; height: 83px;"></a></div><h1>The Apache Tomcat Native - News</h1><div style="height: 1px;"></div><div style="clear: left;"></div></div></div></div></header><div id="middle"><div><div id="mainLeft" class="noprint"><div><nav><div><h2><strong>Links</strong></h2><ul><li><a href="../index.html">Docs Home</a> </li></ul></div><div><h2><strong>Miscellaneous Documentation</strong></h2><ul><li><a href="../miscellaneous/changelog.html">Changelog</a></li></ul></div><div><h2><strong>News</strong></h2><ul><li><a href="../news/2020.html">2020</a></li><li><a href="../news/2019.html">2019</a></li><li><a href="../news/2018.html">2018</a></li><li><a href="../news/2017.html">2017</a></li><li><a href="../news/2016.html">2016</a></li><li><a href="../news/2015.html">2015</a></li><li><a href="../news/2014.html">2014</a></li><li><a href="../news/2013.html">2013</a></li><li><a href="../news/2012.html">2012</a></li><li><a href="../news/2011.html">2011</a></li><li><a href="../news/2010.html">2010</a></li><li><a href="../news/2009.html">2009</a></li><li><a href="../news/2008.html">2008</a></li></ul></div></nav></div></div><div id="mainRight"><div id="content"><h2>2020 News and Status</h2><h3 id="2020_News_&_Status">2020 News & Status</h3><div class="text"> + <div class="subsection"><h4 id="20201221">21 Dec 2020 - TC-Native-1.2.26 released</h4><div class="text"> + <p>The Apache Tomcat team is proud to announce the immediate availability of + Tomcat Native 1.2.26. This is a bugfix release. + </p> + </div></div> <div class="subsection"><h4 id="20200903">3 Sep 2020 - TC-Native-1.2.25 released</h4><div class="text"> <p>The Apache Tomcat team is proud to announce the immediate availability of Tomcat Native 1.2.25. This is a bugfix release. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org