You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2022/03/14 18:33:16 UTC

svn commit: r1898930 - in /tomcat/site/trunk: docs/download-10.html docs/index.html docs/migration-10.1.html docs/oldnews.html docs/whichversion.html xdocs/download-10.xml xdocs/index.xml xdocs/migration-10.1.xml xdocs/oldnews.xml xdocs/whichversion.xml

Author: markt
Date: Mon Mar 14 18:33:15 2022
New Revision: 1898930

URL: http://svn.apache.org/viewvc?rev=1898930&view=rev
Log:
Update site for 10.1.0-M12 release

Modified:
    tomcat/site/trunk/docs/download-10.html
    tomcat/site/trunk/docs/index.html
    tomcat/site/trunk/docs/migration-10.1.html
    tomcat/site/trunk/docs/oldnews.html
    tomcat/site/trunk/docs/whichversion.html
    tomcat/site/trunk/xdocs/download-10.xml
    tomcat/site/trunk/xdocs/index.xml
    tomcat/site/trunk/xdocs/migration-10.1.xml
    tomcat/site/trunk/xdocs/oldnews.xml
    tomcat/site/trunk/xdocs/whichversion.xml

Modified: tomcat/site/trunk/docs/download-10.html
URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-10.html?rev=1898930&r1=1898929&r2=1898930&view=diff
==============================================================================
--- tomcat/site/trunk/docs/download-10.html (original)
+++ tomcat/site/trunk/docs/download-10.html Mon Mar 14 18:33:15 2022
@@ -20,7 +20,7 @@
   </div><h3 id="Quick_Navigation">Quick Navigation</h3><div class="text">
 
 [define v]10.0.17[end]
-[define w]10.1.0-M11[end]
+[define w]10.1.0-M12[end]
         <a href="https://downloads.apache.org/tomcat/tomcat-10/KEYS">KEYS</a> |
         <a href="#[v]">[v]</a> |
         <a href="#[w]">[w] (alpha)</a> |

Modified: tomcat/site/trunk/docs/index.html
URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/index.html?rev=1898930&r1=1898929&r2=1898930&view=diff
==============================================================================
--- tomcat/site/trunk/docs/index.html (original)
+++ tomcat/site/trunk/docs/index.html Mon Mar 14 18:33:15 2022
@@ -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_10.1.0-M12_(alpha)_Released"><span class="pull-right">2022-03-14</span> Tomcat 10.1.0-M12 (alpha) Released</h3><div class="text">
+<p>
+The Apache Tomcat Project is proud to announce the release of version 10.1.0-M12
+of Apache Tomcat. This release is a milestone release and is targeted at Jakarta
+EE 10.</p>
+<p>Applications that run on Tomcat 9 and earlier will not run on Tomcat 10
+without changes. Java EE based applications designed for Tomcat 9 and earlier
+may be placed in the <code>$CATALINA_BASE/webapps-javaee</code> directory and
+Tomcat will automatically convert them to Jakarta EE and copy them to the
+webapps directory. This conversion is performed using the
+<a href="https://github.com/apache/tomcat-jakartaee-migration">Apache Tomcat
+migration tool for Jakarta EE tool</a> which is also available as a separate
+<a href="https://tomcat.apache.org/download-migration.cgi">download</a> for off-line use.</p>
+<p>The notable changes in this release are:</p>
+<ul>
+<li>Fix a potential thread-safety issue that could cause HTTP/1.1 request
+    processing to pause, and potentially timeout, waiting for additional data
+    when the full request has been received.</li>
+<li>Fix a regression introduced with 65757 bugfix which better identified
+    non-request threads but which introduced a similar problem when user code
+    was doing sequential operations in a single thread.</li>
+<li>When resolving methods in EL expressions that use beans and/or static
+    fields, ensure that any custom type conversion is considered when
+    identifying the method to call.</li> 
+</ul>
+<p>
+Full details of these changes, and all the other changes, are available in the
+<a href="tomcat-10.1-doc/changelog.html#Tomcat_10.1.0-M12_(markt)">Tomcat 10.1
+<strong>(alpha)</strong> changelog</a>.
+</p>
+
+<p style="text-align: center;">
+<a href="https://tomcat.apache.org/download-10.cgi">Download</a>
+</p>
 </div><h3 id="Tomcat_8.5.76_Released"><span class="pull-right">2022-02-28</span> Tomcat 8.5.76 Released</h3><div class="text">
 <p> 
 The Apache Tomcat Project is proud to announce the release of version 8.5.76
@@ -111,38 +145,6 @@ changelog</a>.
 </p>
 
 <p style="text-align: center;">
-<a href="https://tomcat.apache.org/download-10.cgi">Download</a>
-</p>
-</div><h3 id="Tomcat_10.1.0-M11_(alpha)_Released"><span class="pull-right">2022-02-28</span> Tomcat 10.1.0-M11 (alpha) Released</h3><div class="text">
-<p>
-The Apache Tomcat Project is proud to announce the release of version 10.1.0-M11
-of Apache Tomcat. This release is a milestone release and is targeted at Jakarta
-EE 10.</p>
-<p>Applications that run on Tomcat 9 and earlier will not run on Tomcat 10
-without changes. Java EE based applications designed for Tomcat 9 and earlier
-may be placed in the <code>$CATALINA_BASE/webapps-javaee</code> directory and
-Tomcat will automatically convert them to Jakarta EE and copy them to the
-webapps directory. This conversion is performed using the
-<a href="https://github.com/apache/tomcat-jakartaee-migration">Apache Tomcat
-migration tool for Jakarta EE tool</a> which is also available as a separate
-<a href="https://tomcat.apache.org/download-migration.cgi">download</a> for off-line use.</p>
-<p>The notable changes in this release are:</p>
-<ul>
-<li>Add support for additional user attributes to <code>TomcatPrincipal</code>
-    and <code>GenericPrincipal</code>.</li>
-<li>Correct a regression in the fix for <a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=65454">65454</a> that meant that
-    <code>minSpareThreads</code> and <code>maxThreads</code> settings were
-    ignored when the Connector used an internal executor.</li>
-<li>Improve the detection of the Linux duplicate accept bug and reduce
-    (hopefully avoid) instances of false positives.</li> 
-</ul>
-<p>
-Full details of these changes, and all the other changes, are available in the
-<a href="tomcat-10.1-doc/changelog.html#Tomcat_10.1.0-M11_(markt)">Tomcat 10.1
-<strong>(alpha)</strong> changelog</a>.
-</p>
-
-<p style="text-align: center;">
 <a href="https://tomcat.apache.org/download-10.cgi">Download</a>
 </p>
 </div><h3 id="Tomcat_Native_1.2.31_Released"><span class="pull-right">2021-09-01</span> Tomcat Native 1.2.31 Released</h3><div class="text">

Modified: tomcat/site/trunk/docs/migration-10.1.html
URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-10.1.html?rev=1898930&r1=1898929&r2=1898930&view=diff
==============================================================================
--- tomcat/site/trunk/docs/migration-10.1.html (original)
+++ tomcat/site/trunk/docs/migration-10.1.html Mon Mar 14 18:33:15 2022
@@ -156,8 +156,9 @@ of Apache Tomcat.</p>
     <option value="10.1.0-M6">10.1.0-M6</option>
     <option value="10.1.0-M7">10.1.0-M7</option>
     <option value="10.1.0-M8">10.1.0-M8</option>
-    <option value="10.1.0-M10" selected>10.1.0-M10</option>
-    <option value="10.1.0-M11">10.1.0-M11</option>
+    <option value="10.1.0-M10">10.1.0-M10</option>
+    <option value="10.1.0-M11" selected>10.1.0-M11</option>
+    <option value="10.1.0-M12">10.1.0-M12</option>
     </select>,</label> <label>new version:
     <select name="hb">
     <option value="10.1.0-M1">10.1.0-M1</option>
@@ -168,7 +169,8 @@ of Apache Tomcat.</p>
     <option value="10.1.0-M7">10.1.0-M7</option>
     <option value="10.1.0-M8">10.1.0-M8</option>
     <option value="10.1.0-M10">10.1.0-M10</option>
-    <option value="10.1.0-M11" selected>10.1.0-M11</option>
+    <option value="10.1.0-M11">10.1.0-M11</option>
+    <option value="10.1.0-M12" selected>10.1.0-M12</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=1898930&r1=1898929&r2=1898930&view=diff
==============================================================================
--- tomcat/site/trunk/docs/oldnews.html (original)
+++ tomcat/site/trunk/docs/oldnews.html Mon Mar 14 18:33:15 2022
@@ -16,6 +16,38 @@
   <li><a href="oldnews-2011.html">year 2011</a></li>
   <li><a href="oldnews-2010.html">year 2010</a></li>
 </ul>
+</div><h3 id="Tomcat_10.1.0-M11_(alpha)_Released"><span class="pull-right">2022-02-28</span> Tomcat 10.1.0-M11 (alpha) Released</h3><div class="text">
+<p>
+The Apache Tomcat Project is proud to announce the release of version 10.1.0-M11
+of Apache Tomcat. This release is a milestone release and is targeted at Jakarta
+EE 10.</p>
+<p>Applications that run on Tomcat 9 and earlier will not run on Tomcat 10
+without changes. Java EE based applications designed for Tomcat 9 and earlier
+may be placed in the <code>$CATALINA_BASE/webapps-javaee</code> directory and
+Tomcat will automatically convert them to Jakarta EE and copy them to the
+webapps directory. This conversion is performed using the
+<a href="https://github.com/apache/tomcat-jakartaee-migration">Apache Tomcat
+migration tool for Jakarta EE tool</a> which is also available as a separate
+<a href="https://tomcat.apache.org/download-migration.cgi">download</a> for off-line use.</p>
+<p>The notable changes in this release are:</p>
+<ul>
+<li>Add support for additional user attributes to <code>TomcatPrincipal</code>
+    and <code>GenericPrincipal</code>.</li>
+<li>Correct a regression in the fix for <a href="https://bz.apache.org/bugzilla/show_bug.cgi?id=65454">65454</a> that meant that
+    <code>minSpareThreads</code> and <code>maxThreads</code> settings were
+    ignored when the Connector used an internal executor.</li>
+<li>Improve the detection of the Linux duplicate accept bug and reduce
+    (hopefully avoid) instances of false positives.</li> 
+</ul>
+<p>
+Full details of these changes, and all the other changes, are available in the
+<a href="tomcat-10.1-doc/changelog.html#Tomcat_10.1.0-M11_(markt)">Tomcat 10.1
+<strong>(alpha)</strong> changelog</a>.
+</p>
+
+<p style="text-align: center;">
+<a href="https://tomcat.apache.org/download-10.cgi">Download</a>
+</p>
 </div><h3 id="Tomcat_9.0.58_Released"><span class="pull-right">2022-01-20</span> Tomcat 9.0.58 Released</h3><div class="text">
 <p>
 The Apache Tomcat Project is proud to announce the release of version 9.0.58

Modified: tomcat/site/trunk/docs/whichversion.html
URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/whichversion.html?rev=1898930&r1=1898929&r2=1898930&view=diff
==============================================================================
--- tomcat/site/trunk/docs/whichversion.html (original)
+++ tomcat/site/trunk/docs/whichversion.html Mon Mar 14 18:33:15 2022
@@ -28,7 +28,7 @@ specifications</a> and the respective Ap
   <td>2.1</td>
   <td>3.0</td>
   <td>10.1.x</td>
-  <td>10.1.0-M11 (alpha)</td>
+  <td>10.1.0-M12 (alpha)</td>
   <td>11 and later</td>
 </tr>
 

Modified: tomcat/site/trunk/xdocs/download-10.xml
URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/download-10.xml?rev=1898930&r1=1898929&r2=1898930&view=diff
==============================================================================
--- tomcat/site/trunk/xdocs/download-10.xml (original)
+++ tomcat/site/trunk/xdocs/download-10.xml Mon Mar 14 18:33:15 2022
@@ -32,7 +32,7 @@
  Documentation for ezt.py: https://code.google.com/p/ezt/wiki/Syntax
 -->
 [define v]10.0.17[end]
-[define w]10.1.0-M11[end]
+[define w]10.1.0-M12[end]
         <a href="https://downloads.apache.org/tomcat/tomcat-10/KEYS">KEYS</a> |
         <a href="#[v]">[v]</a> |
         <a href="#[w]">[w] (alpha)</a> |

Modified: tomcat/site/trunk/xdocs/index.xml
URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/index.xml?rev=1898930&r1=1898929&r2=1898930&view=diff
==============================================================================
--- tomcat/site/trunk/xdocs/index.xml (original)
+++ tomcat/site/trunk/xdocs/index.xml Mon Mar 14 18:33:15 2022
@@ -55,6 +55,42 @@ project logo are trademarks of the Apach
 
 </section>
 
+<section name="Tomcat 10.1.0-M12 (alpha) Released" rtext="2022-03-14">
+<p>
+The Apache Tomcat Project is proud to announce the release of version 10.1.0-M12
+of Apache Tomcat. This release is a milestone release and is targeted at Jakarta
+EE 10.</p>
+<p>Applications that run on Tomcat 9 and earlier will not run on Tomcat 10
+without changes. Java EE based applications designed for Tomcat 9 and earlier
+may be placed in the <code>$CATALINA_BASE/webapps-javaee</code> directory and
+Tomcat will automatically convert them to Jakarta EE and copy them to the
+webapps directory. This conversion is performed using the
+<a href="https://github.com/apache/tomcat-jakartaee-migration">Apache Tomcat
+migration tool for Jakarta EE tool</a> which is also available as a separate
+<a href="download-migration.cgi">download</a> for off-line use.</p>
+<p>The notable changes in this release are:</p>
+<ul>
+<li>Fix a potential thread-safety issue that could cause HTTP/1.1 request
+    processing to pause, and potentially timeout, waiting for additional data
+    when the full request has been received.</li>
+<li>Fix a regression introduced with 65757 bugfix which better identified
+    non-request threads but which introduced a similar problem when user code
+    was doing sequential operations in a single thread.</li>
+<li>When resolving methods in EL expressions that use beans and/or static
+    fields, ensure that any custom type conversion is considered when
+    identifying the method to call.</li> 
+</ul>
+<p>
+Full details of these changes, and all the other changes, are available in the
+<a href="tomcat-10.1-doc/changelog.html#Tomcat_10.1.0-M12_(markt)">Tomcat 10.1
+<strong>(alpha)</strong> changelog</a>.
+</p>
+
+<p style="text-align: center;">
+<a href="download-10.cgi">Download</a>
+</p>
+</section>
+
 <section name="Tomcat 8.5.76 Released" rtext="2022-02-28">
 <p> 
 The Apache Tomcat Project is proud to announce the release of version 8.5.76
@@ -136,40 +172,6 @@ changelog</a>.
 </p>
 
 <p style="text-align: center;">
-<a href="download-10.cgi">Download</a>
-</p>
-</section>
-
-<section name="Tomcat 10.1.0-M11 (alpha) Released" rtext="2022-02-28">
-<p>
-The Apache Tomcat Project is proud to announce the release of version 10.1.0-M11
-of Apache Tomcat. This release is a milestone release and is targeted at Jakarta
-EE 10.</p>
-<p>Applications that run on Tomcat 9 and earlier will not run on Tomcat 10
-without changes. Java EE based applications designed for Tomcat 9 and earlier
-may be placed in the <code>$CATALINA_BASE/webapps-javaee</code> directory and
-Tomcat will automatically convert them to Jakarta EE and copy them to the
-webapps directory. This conversion is performed using the
-<a href="https://github.com/apache/tomcat-jakartaee-migration">Apache Tomcat
-migration tool for Jakarta EE tool</a> which is also available as a separate
-<a href="download-migration.cgi">download</a> for off-line use.</p>
-<p>The notable changes in this release are:</p>
-<ul>
-<li>Add support for additional user attributes to <code>TomcatPrincipal</code>
-    and <code>GenericPrincipal</code>.</li>
-<li>Correct a regression in the fix for <bug>65454</bug> that meant that
-    <code>minSpareThreads</code> and <code>maxThreads</code> settings were
-    ignored when the Connector used an internal executor.</li>
-<li>Improve the detection of the Linux duplicate accept bug and reduce
-    (hopefully avoid) instances of false positives.</li> 
-</ul>
-<p>
-Full details of these changes, and all the other changes, are available in the
-<a href="tomcat-10.1-doc/changelog.html#Tomcat_10.1.0-M11_(markt)">Tomcat 10.1
-<strong>(alpha)</strong> changelog</a>.
-</p>
-
-<p style="text-align: center;">
 <a href="download-10.cgi">Download</a>
 </p>
 </section>

Modified: tomcat/site/trunk/xdocs/migration-10.1.xml
URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/migration-10.1.xml?rev=1898930&r1=1898929&r2=1898930&view=diff
==============================================================================
--- tomcat/site/trunk/xdocs/migration-10.1.xml (original)
+++ tomcat/site/trunk/xdocs/migration-10.1.xml Mon Mar 14 18:33:15 2022
@@ -173,8 +173,9 @@ of Apache Tomcat.</p>
     <option value="10.1.0-M6">10.1.0-M6</option>
     <option value="10.1.0-M7">10.1.0-M7</option>
     <option value="10.1.0-M8">10.1.0-M8</option>
-    <option value="10.1.0-M10" selected="selected">10.1.0-M10</option>
-    <option value="10.1.0-M11">10.1.0-M11</option>
+    <option value="10.1.0-M10">10.1.0-M10</option>
+    <option value="10.1.0-M11" selected="selected">10.1.0-M11</option>
+    <option value="10.1.0-M12">10.1.0-M12</option>
     </select>,</label> <label>new version:
     <select name="hb">
     <option value="10.1.0-M1">10.1.0-M1</option>
@@ -185,7 +186,8 @@ of Apache Tomcat.</p>
     <option value="10.1.0-M7">10.1.0-M7</option>
     <option value="10.1.0-M8">10.1.0-M8</option>
     <option value="10.1.0-M10">10.1.0-M10</option>
-    <option value="10.1.0-M11" selected="selected">10.1.0-M11</option>
+    <option value="10.1.0-M11">10.1.0-M11</option>
+    <option value="10.1.0-M12" selected="selected">10.1.0-M12</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=1898930&r1=1898929&r2=1898930&view=diff
==============================================================================
--- tomcat/site/trunk/xdocs/oldnews.xml (original)
+++ tomcat/site/trunk/xdocs/oldnews.xml Mon Mar 14 18:33:15 2022
@@ -27,6 +27,40 @@
 </ul>
 </section>
 
+<section name="Tomcat 10.1.0-M11 (alpha) Released" rtext="2022-02-28">
+<p>
+The Apache Tomcat Project is proud to announce the release of version 10.1.0-M11
+of Apache Tomcat. This release is a milestone release and is targeted at Jakarta
+EE 10.</p>
+<p>Applications that run on Tomcat 9 and earlier will not run on Tomcat 10
+without changes. Java EE based applications designed for Tomcat 9 and earlier
+may be placed in the <code>$CATALINA_BASE/webapps-javaee</code> directory and
+Tomcat will automatically convert them to Jakarta EE and copy them to the
+webapps directory. This conversion is performed using the
+<a href="https://github.com/apache/tomcat-jakartaee-migration">Apache Tomcat
+migration tool for Jakarta EE tool</a> which is also available as a separate
+<a href="download-migration.cgi">download</a> for off-line use.</p>
+<p>The notable changes in this release are:</p>
+<ul>
+<li>Add support for additional user attributes to <code>TomcatPrincipal</code>
+    and <code>GenericPrincipal</code>.</li>
+<li>Correct a regression in the fix for <bug>65454</bug> that meant that
+    <code>minSpareThreads</code> and <code>maxThreads</code> settings were
+    ignored when the Connector used an internal executor.</li>
+<li>Improve the detection of the Linux duplicate accept bug and reduce
+    (hopefully avoid) instances of false positives.</li> 
+</ul>
+<p>
+Full details of these changes, and all the other changes, are available in the
+<a href="tomcat-10.1-doc/changelog.html#Tomcat_10.1.0-M11_(markt)">Tomcat 10.1
+<strong>(alpha)</strong> changelog</a>.
+</p>
+
+<p style="text-align: center;">
+<a href="download-10.cgi">Download</a>
+</p>
+</section>
+
 <section name="Tomcat 9.0.58 Released" rtext="2022-01-20">
 <p>
 The Apache Tomcat Project is proud to announce the release of version 9.0.58

Modified: tomcat/site/trunk/xdocs/whichversion.xml
URL: http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/whichversion.xml?rev=1898930&r1=1898929&r2=1898930&view=diff
==============================================================================
--- tomcat/site/trunk/xdocs/whichversion.xml (original)
+++ tomcat/site/trunk/xdocs/whichversion.xml Mon Mar 14 18:33:15 2022
@@ -39,7 +39,7 @@ specifications</a> and the respective Ap
   <td>2.1</td>
   <td>3.0</td>
   <td>10.1.x</td>
-  <td>10.1.0-M11 (alpha)</td>
+  <td>10.1.0-M12 (alpha)</td>
   <td>11 and later</td>
 </tr>
 



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