Author: markt Date: Tue Aug 6 10:07:33 2024 New Revision: 1919701 URL: http://svn.apache.org/viewvc?rev=1919701&view=rev Log: Update site for 11.0.0-M24 release
Modified: tomcat/site/trunk/docs/download-11.html tomcat/site/trunk/docs/index.html tomcat/site/trunk/docs/migration-11.0.html tomcat/site/trunk/docs/oldnews.html tomcat/site/trunk/docs/whichversion.html tomcat/site/trunk/xdocs/download-11.xml tomcat/site/trunk/xdocs/index.xml tomcat/site/trunk/xdocs/migration-11.0.xml tomcat/site/trunk/xdocs/oldnews.xml tomcat/site/trunk/xdocs/whichversion.xml Modified: tomcat/site/trunk/docs/download-11.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-11.html?rev=1919701&r1=1919700&r2=1919701&view=diff ============================================================================== --- tomcat/site/trunk/docs/download-11.html (original) +++ tomcat/site/trunk/docs/download-11.html Tue Aug 6 10:07:33 2024 @@ -19,7 +19,7 @@ </div><h3 id="Quick_Navigation">Quick Navigation</h3><div class="text"> -[define v]11.0.0-M22[end] +[define v]11.0.0-M24[end] <a href="https://downloads.apache.org/tomcat/tomcat-11/KEYS">KEYS</a> | <a href="#[v]">[v]</a> <strong>(beta)</strong> | <a href="[preferred]tomcat/tomcat-11" rel="nofollow">Browse</a> | Modified: tomcat/site/trunk/docs/index.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/index.html?rev=1919701&r1=1919700&r2=1919701&view=diff ============================================================================== --- tomcat/site/trunk/docs/index.html (original) +++ tomcat/site/trunk/docs/index.html Tue Aug 6 10:07:33 2024 @@ -34,6 +34,40 @@ wiki page.</p> <p>Apache Tomcat, Tomcat, Apache, the Apache feather, and the Apache Tomcat project logo are trademarks of the Apache Software Foundation.</p> +</div><h3 id="Tomcat_11.0.0-M24_Released"><span class="pull-right">2024-08-06</span> Tomcat 11.0.0-M24 Released</h3><div class="text"> +<p> +The Apache Tomcat Project is proud to announce the release of version 11.0.0-M24 +(beta) of Apache Tomcat. This release is a milestone release and is targeted at +Jakarta EE 11.</p> +<p>Users of Tomcat 10 onwards should be aware that, as a result of the move from +Java EE to Jakarta EE as part of the transfer of Java EE to the Eclipse +Foundation, the primary package for all implemented APIs has changed from +<code>javax.*</code> to <code>jakarta.*</code>. This will almost certainly +require code changes to enable applications to migrate from Tomcat 9 and earlier +to Tomcat 10 and later. A +<a href="https://github.com/apache/tomcat-jakartaee-migration">migration +tool</a> is available to aid this process.</p> +<p>The notable changes in this release are:</p> +<ul> +<li>Align HTTP/2 with HTTP/1.1 and recycle the container internal request + and response processing objects by default. This behaviour can be + controlled via the new discardRequestsAndResponses attribute on the + HTTP/2 upgrade protocol.</li> +<li>Add FFM compatibility methods for LibreSSL and BoringSSL support.</li> +<li>Add support for RFC 8297 (Early Hints). Applications can use this + feature by casting the HttpServletResponse to + org.apache.catalina.connector.Reponse and then calling the method + void sendEarlyHints().</li> +</ul> +<p> +Full details of these changes, and all the other changes, are available in the +<a href="tomcat-11.0-doc/changelog.html#Tomcat_11.0.0-M24_(markt)">Tomcat 11 +<strong>(beta)</strong> changelog</a>. +</p> + +<p style="text-align: center;"> +<a href="https://tomcat.apache.org/download-11.cgi">Download</a> +</p> </div><h3 id="Tomcat_9.0.93_Released"><span class="pull-right">2024-08-06</span> Tomcat 9.0.93 Released</h3><div class="text"> <p> The Apache Tomcat Project is proud to announce the release of version 9.0.93 @@ -128,39 +162,6 @@ changelog</a>. <p style="text-align: center;"> <a href="https://tomcat.apache.org/download-10.cgi">Download</a> </p> -</div><h3 id="Tomcat_11.0.0-M22_Released"><span class="pull-right">2024-07-05</span> Tomcat 11.0.0-M22 Released</h3><div class="text"> -<p> -The Apache Tomcat Project is proud to announce the release of version 11.0.0-M22 -(beta) of Apache Tomcat. This release is a milestone release and is targeted at -Jakarta EE 11.</p> -<p>Users of Tomcat 10 onwards should be aware that, as a result of the move from -Java EE to Jakarta EE as part of the transfer of Java EE to the Eclipse -Foundation, the primary package for all implemented APIs has changed from -<code>javax.*</code> to <code>jakarta.*</code>. This will almost certainly -require code changes to enable applications to migrate from Tomcat 9 and earlier -to Tomcat 10 and later. A -<a href="https://github.com/apache/tomcat-jakartaee-migration">migration -tool</a> is available to aid this process.</p> -<p>The notable changes in this release are:</p> -<ul> -<li>Move OpenSSL support using FFM to a separate JAR named - tomcat-coyote-ffm.jar that advertises Java 22 in its manifest.</li> -<li>When using include directives in a tag file packaged in a JAR file, - ensure that the include directives are processed correctly.</li> -<li>Expand the implementation of the filter value of the Authenticator - attribute allowCorsPreflight, so that it applies to all requests that - match the configured URL patterns for the CORS filter, rather than - only applying if the CORS filter is mapped to /*</li> -</ul> -<p> -Full details of these changes, and all the other changes, are available in the -<a href="tomcat-11.0-doc/changelog.html#Tomcat_11.0.0-M22_(markt)">Tomcat 11 -<strong>(beta)</strong> changelog</a>. -</p> - -<p style="text-align: center;"> -<a href="https://tomcat.apache.org/download-11.cgi">Download</a> -</p> </div><h3 id="Tomcat_Migration_Tool_for_Jakarta_EE_1.0.8_Released"><span class="pull-right">2024-02-06</span> Tomcat Migration Tool for Jakarta EE 1.0.8 Released</h3><div class="text"> <p> The Apache Tomcat Project is proud to announce the release of 1.0.8 of the Modified: tomcat/site/trunk/docs/migration-11.0.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-11.0.html?rev=1919701&r1=1919700&r2=1919701&view=diff ============================================================================== --- tomcat/site/trunk/docs/migration-11.0.html (original) +++ tomcat/site/trunk/docs/migration-11.0.html Tue Aug 6 10:07:33 2024 @@ -156,8 +156,9 @@ versions of Apache Tomcat<sup>®</sup <option value="11.0.0-M18">11.0.0-M18</option> <option value="11.0.0-M19">11.0.0-M19</option> <option value="11.0.0-M20">11.0.0-M20</option> - <option value="11.0.0-M21" selected>11.0.0-M21</option> - <option value="11.0.0-M22">11.0.0-M22</option> + <option value="11.0.0-M21">11.0.0-M21</option> + <option value="11.0.0-M22" selected>11.0.0-M22</option> + <option value="11.0.0-M24">11.0.0-M24</option> </select>,</label> <label>new version: <select name="target"> <option value="11.0.0-M1">11.0.0-M1</option> @@ -179,7 +180,8 @@ versions of Apache Tomcat<sup>®</sup <option value="11.0.0-M19">11.0.0-M19</option> <option value="11.0.0-M20">11.0.0-M20</option> <option value="11.0.0-M21">11.0.0-M21</option> - <option value="11.0.0-M22" selected>11.0.0-M22</option> + <option value="11.0.0-M22">11.0.0-M22</option> + <option value="11.0.0-M24" selected>11.0.0-M24</option> <option value="HEAD">trunk (unreleased)</option> </select></label> </p> Modified: tomcat/site/trunk/docs/oldnews.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/oldnews.html?rev=1919701&r1=1919700&r2=1919701&view=diff ============================================================================== --- tomcat/site/trunk/docs/oldnews.html (original) +++ tomcat/site/trunk/docs/oldnews.html Tue Aug 6 10:07:33 2024 @@ -42,6 +42,39 @@ changelog</a>. <p style="text-align: center;"> <a href="https://tomcat.apache.org/download-90.cgi">Download</a> </p> +</div><h3 id="Tomcat_11.0.0-M22_Released"><span class="pull-right">2024-07-05</span> Tomcat 11.0.0-M22 Released</h3><div class="text"> +<p> +The Apache Tomcat Project is proud to announce the release of version 11.0.0-M22 +(beta) of Apache Tomcat. This release is a milestone release and is targeted at +Jakarta EE 11.</p> +<p>Users of Tomcat 10 onwards should be aware that, as a result of the move from +Java EE to Jakarta EE as part of the transfer of Java EE to the Eclipse +Foundation, the primary package for all implemented APIs has changed from +<code>javax.*</code> to <code>jakarta.*</code>. This will almost certainly +require code changes to enable applications to migrate from Tomcat 9 and earlier +to Tomcat 10 and later. A +<a href="https://github.com/apache/tomcat-jakartaee-migration">migration +tool</a> is available to aid this process.</p> +<p>The notable changes in this release are:</p> +<ul> +<li>Move OpenSSL support using FFM to a separate JAR named + tomcat-coyote-ffm.jar that advertises Java 22 in its manifest.</li> +<li>When using include directives in a tag file packaged in a JAR file, + ensure that the include directives are processed correctly.</li> +<li>Expand the implementation of the filter value of the Authenticator + attribute allowCorsPreflight, so that it applies to all requests that + match the configured URL patterns for the CORS filter, rather than + only applying if the CORS filter is mapped to /*</li> +</ul> +<p> +Full details of these changes, and all the other changes, are available in the +<a href="tomcat-11.0-doc/changelog.html#Tomcat_11.0.0-M22_(markt)">Tomcat 11 +<strong>(beta)</strong> changelog</a>. +</p> + +<p style="text-align: center;"> +<a href="https://tomcat.apache.org/download-11.cgi">Download</a> +</p> </div><h3 id="Tomcat_10.1.25_Released"><span class="pull-right">2024-06-19</span> Tomcat 10.1.25 Released</h3><div class="text"> <p> The Apache Tomcat Project is proud to announce the release of version 10.1.25 Modified: tomcat/site/trunk/docs/whichversion.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/whichversion.html?rev=1919701&r1=1919700&r2=1919701&view=diff ============================================================================== --- tomcat/site/trunk/docs/whichversion.html (original) +++ tomcat/site/trunk/docs/whichversion.html Tue Aug 6 10:07:33 2024 @@ -27,7 +27,7 @@ specifications</a> and the respective Ap <td>2.2</td> <td>3.1</td> <td>11.0.x</td> - <td>11.0.0-M22 (beta)</td> + <td>11.0.0-M24 (beta)</td> <td>17 and later</td> </tr> Modified: tomcat/site/trunk/xdocs/download-11.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/download-11.xml?rev=1919701&r1=1919700&r2=1919701&view=diff ============================================================================== --- tomcat/site/trunk/xdocs/download-11.xml (original) +++ tomcat/site/trunk/xdocs/download-11.xml Tue Aug 6 10:07:33 2024 @@ -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]11.0.0-M22[end] +[define v]11.0.0-M24[end] <a href="https://downloads.apache.org/tomcat/tomcat-11/KEYS">KEYS</a> | <a href="#[v]">[v]</a> <strong>(beta)</strong> | <a href="[preferred]tomcat/tomcat-11" rel="nofollow">Browse</a> | Modified: tomcat/site/trunk/xdocs/index.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/index.xml?rev=1919701&r1=1919700&r2=1919701&view=diff ============================================================================== --- tomcat/site/trunk/xdocs/index.xml (original) +++ tomcat/site/trunk/xdocs/index.xml Tue Aug 6 10:07:33 2024 @@ -55,6 +55,42 @@ project logo are trademarks of the Apach </section> +<section name="Tomcat 11.0.0-M24 Released" rtext="2024-08-06"> +<p> +The Apache Tomcat Project is proud to announce the release of version 11.0.0-M24 +(beta) of Apache Tomcat. This release is a milestone release and is targeted at +Jakarta EE 11.</p> +<p>Users of Tomcat 10 onwards should be aware that, as a result of the move from +Java EE to Jakarta EE as part of the transfer of Java EE to the Eclipse +Foundation, the primary package for all implemented APIs has changed from +<code>javax.*</code> to <code>jakarta.*</code>. This will almost certainly +require code changes to enable applications to migrate from Tomcat 9 and earlier +to Tomcat 10 and later. A +<a href="https://github.com/apache/tomcat-jakartaee-migration">migration +tool</a> is available to aid this process.</p> +<p>The notable changes in this release are:</p> +<ul> +<li>Align HTTP/2 with HTTP/1.1 and recycle the container internal request + and response processing objects by default. This behaviour can be + controlled via the new discardRequestsAndResponses attribute on the + HTTP/2 upgrade protocol.</li> +<li>Add FFM compatibility methods for LibreSSL and BoringSSL support.</li> +<li>Add support for RFC 8297 (Early Hints). Applications can use this + feature by casting the HttpServletResponse to + org.apache.catalina.connector.Reponse and then calling the method + void sendEarlyHints().</li> +</ul> +<p> +Full details of these changes, and all the other changes, are available in the +<a href="tomcat-11.0-doc/changelog.html#Tomcat_11.0.0-M24_(markt)">Tomcat 11 +<strong>(beta)</strong> changelog</a>. +</p> + +<p style="text-align: center;"> +<a href="download-11.cgi">Download</a> +</p> +</section> + <section name="Tomcat 9.0.93 Released" rtext="2024-08-06"> <p> The Apache Tomcat Project is proud to announce the release of version 9.0.93 @@ -158,41 +194,6 @@ changelog</a>. </section> -<section name="Tomcat 11.0.0-M22 Released" rtext="2024-07-05"> -<p> -The Apache Tomcat Project is proud to announce the release of version 11.0.0-M22 -(beta) of Apache Tomcat. This release is a milestone release and is targeted at -Jakarta EE 11.</p> -<p>Users of Tomcat 10 onwards should be aware that, as a result of the move from -Java EE to Jakarta EE as part of the transfer of Java EE to the Eclipse -Foundation, the primary package for all implemented APIs has changed from -<code>javax.*</code> to <code>jakarta.*</code>. This will almost certainly -require code changes to enable applications to migrate from Tomcat 9 and earlier -to Tomcat 10 and later. A -<a href="https://github.com/apache/tomcat-jakartaee-migration">migration -tool</a> is available to aid this process.</p> -<p>The notable changes in this release are:</p> -<ul> -<li>Move OpenSSL support using FFM to a separate JAR named - tomcat-coyote-ffm.jar that advertises Java 22 in its manifest.</li> -<li>When using include directives in a tag file packaged in a JAR file, - ensure that the include directives are processed correctly.</li> -<li>Expand the implementation of the filter value of the Authenticator - attribute allowCorsPreflight, so that it applies to all requests that - match the configured URL patterns for the CORS filter, rather than - only applying if the CORS filter is mapped to /*</li> -</ul> -<p> -Full details of these changes, and all the other changes, are available in the -<a href="tomcat-11.0-doc/changelog.html#Tomcat_11.0.0-M22_(markt)">Tomcat 11 -<strong>(beta)</strong> changelog</a>. -</p> - -<p style="text-align: center;"> -<a href="download-11.cgi">Download</a> -</p> -</section> - <section name="Tomcat Migration Tool for Jakarta EE 1.0.8 Released" rtext="2024-02-06"> <p> The Apache Tomcat Project is proud to announce the release of 1.0.8 of the Modified: tomcat/site/trunk/xdocs/migration-11.0.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/migration-11.0.xml?rev=1919701&r1=1919700&r2=1919701&view=diff ============================================================================== --- tomcat/site/trunk/xdocs/migration-11.0.xml (original) +++ tomcat/site/trunk/xdocs/migration-11.0.xml Tue Aug 6 10:07:33 2024 @@ -173,8 +173,9 @@ versions of Apache Tomcat<sup>®</su <option value="11.0.0-M18">11.0.0-M18</option> <option value="11.0.0-M19">11.0.0-M19</option> <option value="11.0.0-M20">11.0.0-M20</option> - <option value="11.0.0-M21" selected="selected">11.0.0-M21</option> - <option value="11.0.0-M22">11.0.0-M22</option> + <option value="11.0.0-M21">11.0.0-M21</option> + <option value="11.0.0-M22" selected="selected">11.0.0-M22</option> + <option value="11.0.0-M24">11.0.0-M24</option> </select>,</label> <label>new version: <select name="target"> <option value="11.0.0-M1">11.0.0-M1</option> @@ -196,7 +197,8 @@ versions of Apache Tomcat<sup>®</su <option value="11.0.0-M19">11.0.0-M19</option> <option value="11.0.0-M20">11.0.0-M20</option> <option value="11.0.0-M21">11.0.0-M21</option> - <option value="11.0.0-M22" selected="selected">11.0.0-M22</option> + <option value="11.0.0-M22">11.0.0-M22</option> + <option value="11.0.0-M24" selected="selected">11.0.0-M24</option> <option value="HEAD">trunk (unreleased)</option> </select></label> </p> Modified: tomcat/site/trunk/xdocs/oldnews.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/oldnews.xml?rev=1919701&r1=1919700&r2=1919701&view=diff ============================================================================== --- tomcat/site/trunk/xdocs/oldnews.xml (original) +++ tomcat/site/trunk/xdocs/oldnews.xml Tue Aug 6 10:07:33 2024 @@ -54,6 +54,41 @@ changelog</a>. </p> </section> +<section name="Tomcat 11.0.0-M22 Released" rtext="2024-07-05"> +<p> +The Apache Tomcat Project is proud to announce the release of version 11.0.0-M22 +(beta) of Apache Tomcat. This release is a milestone release and is targeted at +Jakarta EE 11.</p> +<p>Users of Tomcat 10 onwards should be aware that, as a result of the move from +Java EE to Jakarta EE as part of the transfer of Java EE to the Eclipse +Foundation, the primary package for all implemented APIs has changed from +<code>javax.*</code> to <code>jakarta.*</code>. This will almost certainly +require code changes to enable applications to migrate from Tomcat 9 and earlier +to Tomcat 10 and later. A +<a href="https://github.com/apache/tomcat-jakartaee-migration">migration +tool</a> is available to aid this process.</p> +<p>The notable changes in this release are:</p> +<ul> +<li>Move OpenSSL support using FFM to a separate JAR named + tomcat-coyote-ffm.jar that advertises Java 22 in its manifest.</li> +<li>When using include directives in a tag file packaged in a JAR file, + ensure that the include directives are processed correctly.</li> +<li>Expand the implementation of the filter value of the Authenticator + attribute allowCorsPreflight, so that it applies to all requests that + match the configured URL patterns for the CORS filter, rather than + only applying if the CORS filter is mapped to /*</li> +</ul> +<p> +Full details of these changes, and all the other changes, are available in the +<a href="tomcat-11.0-doc/changelog.html#Tomcat_11.0.0-M22_(markt)">Tomcat 11 +<strong>(beta)</strong> changelog</a>. +</p> + +<p style="text-align: center;"> +<a href="download-11.cgi">Download</a> +</p> +</section> + <section name="Tomcat 10.1.25 Released" rtext="2024-06-19"> <p> The Apache Tomcat Project is proud to announce the release of version 10.1.25 Modified: tomcat/site/trunk/xdocs/whichversion.xml URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/whichversion.xml?rev=1919701&r1=1919700&r2=1919701&view=diff ============================================================================== --- tomcat/site/trunk/xdocs/whichversion.xml (original) +++ tomcat/site/trunk/xdocs/whichversion.xml Tue Aug 6 10:07:33 2024 @@ -38,7 +38,7 @@ specifications</a> and the respective Ap <td>2.2</td> <td>3.1</td> <td>11.0.x</td> - <td>11.0.0-M22 (beta)</td> + <td>11.0.0-M24 (beta)</td> <td>17 and later</td> </tr> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org