You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by vi...@apache.org on 2019/10/02 07:33:33 UTC

[tomcat] branch 7.0.x updated: Fixes having an issue number are sorted by their number, ascending.

This is an automated email from the ASF dual-hosted git repository.

violetagg pushed a commit to branch 7.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/7.0.x by this push:
     new 1d8fd37  Fixes having an issue number are sorted by their number, ascending.
1d8fd37 is described below

commit 1d8fd374200bc3da3beb157d0d2b6839fe267d11
Author: Violeta Georgieva <vi...@apache.org>
AuthorDate: Wed Oct 2 10:33:17 2019 +0300

    Fixes having an issue number are sorted by their number, ascending.
---
 webapps/docs/changelog.xml | 90 +++++++++++++++++++++++-----------------------
 1 file changed, 45 insertions(+), 45 deletions(-)

diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index 2494008..438223d 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -62,23 +62,23 @@
 <section name="Tomcat 7.0.97 (violetagg)">
   <subsection name="Catalina">
     <changelog>
-      <update>
-        <bug>63627</bug>: Implement more fine-grained handling in
-        <code>RealmBase.authenticate(GSSContext, boolean)</code>. (michaelo)
-      </update>
-      <add>
-        <bug>62496</bug>: Add option to write auth information (remote user/auth type)
-        to response headers. (michaelo)
-      </add>
       <add>
         <bug>57665</bug>: Add support for the <code>X-Forwarded-Host</code>
         header to the <code>RemoteIpFilter</code> and <code>RemotepValve</code>.
         (markt)
       </add>
+      <add>
+        <bug>62496</bug>: Add option to write auth information (remote user/auth type)
+        to response headers. (michaelo)
+      </add>
       <fix>
         <bug>63550</bug>: Only try the <code>alternateURL</code> in the
         <code>JNDIRealm</code> if one has been specified. (markt)
       </fix>
+      <update>
+        <bug>63627</bug>: Implement more fine-grained handling in
+        <code>RealmBase.authenticate(GSSContext, boolean)</code>. (michaelo)
+      </update>
       <fix>
         Avoid a <code>NullPointerException</code> in the
         <code>CrawlerSessionManagerValve</code> if no ROOT Context is deployed
@@ -194,6 +194,11 @@
   <subsection name="Other">
     <changelog>
       <fix>
+        <bug>55620</bug>: Partial fix. Prevent Tomcat from starting when
+        <code>$CATALINA_HOME</code> and/or <code>$CATALINA_BASE</code> contains
+        a semi-colon on Windows or a colon on Linux/FreeBSD/etc. (markt)
+      </fix>
+      <fix>
         <bug>62140</bug>: Additional usage documentation in comments for
         <code>catalina.[bat|sh]</code>. (markt)
       </fix>
@@ -207,6 +212,11 @@
         <code>--rename</code> option after the service name. (markt)
       </add>
       <update>
+        <bug>63625</bug>: Update to Commons Daemon 1.2.1. This corrects several
+        regressions in Commons Daemon 1.2.0, most notably the Windows Service
+        crashing on start when using 32-bit JVMs. (markt)
+      </update>
+      <update>
         <bug>63634</bug>: Align setproxy target in build.xml with
         8.5/9.0. (michaelo)
       </update>
@@ -214,11 +224,6 @@
         Limit the default JPDA (remote debugging interface) listen address to
         <code>localhost:8000</code>. (markt)
       </add>
-      <fix>
-        <bug>55620</bug>: Partial fix. Prevent Tomcat from starting when
-        <code>$CATALINA_HOME</code> and/or <code>$CATALINA_BASE</code> contains
-        a semi-colon on Windows or a colon on Linux/FreeBSD/etc. (markt)
-      </fix>
       <update>
         Tighten up the default file permissions for the <code>.tar.gz</code>
         distribution so no files or directories are world readable by default.
@@ -235,11 +240,6 @@
         pick up the fix for CODEC-134. (markt)
       </update>
       <update>
-        <bug>63625</bug>: Update to Commons Daemon 1.2.1. This corrects several
-        regressions in Commons Daemon 1.2.0, most notably the Windows Service
-        crashing on start when using 32-bit JVMs. (markt)
-      </update>
-      <update>
         <bug>63648</bug>: Update the test TLS keys and certificates used in the
         test suite to replace the keys and certificates that are about to
         expire. (markt)
@@ -347,6 +347,22 @@
   <subsection name="Catalina">
     <changelog>
       <add>
+        <bug>43548</bug>: Add an XML schema for the tomcat-users.xml file.
+        (markt)
+      </add>
+      <fix>
+        <bug>63324</bug>: Refactor the <code>CrawlerSessionManagerValve</code>
+        so that the object placed in the session is compatible with session
+        serialization with mem-cached. Patch provided by Martin Lemanski.
+        (markt)
+      </fix>
+      <fix>
+        <bug>63531</bug>: Refactor authenticators so that the session last
+        accessed time is not updated if the cache attribute is set to
+        <code>false</code> and <code>FORM</code> authentication is not being
+        used. (markt)
+      </fix>
+      <add>
         <bug>63556</bug>: Mark request as forwarded in RemoteIpValve and
         RemoteIpFilter (michaelo)
       </add>
@@ -383,16 +399,6 @@
         defined in <code>server.xml</code> with a <code>docBase</code> but not
         the optional <code>path</code>. (markt)
       </fix>
-      <add>
-        <bug>43548</bug>: Add an XML schema for the tomcat-users.xml file.
-        (markt)
-      </add>
-      <fix>
-        <bug>63324</bug>: Refactor the <code>CrawlerSessionManagerValve</code>
-        so that the object placed in the session is compatible with session
-        serialization with mem-cached. Patch provided by Martin Lemanski.
-        (markt)
-      </fix>
       <fix>
         Ensure that the default servlet reads the entire global XSLT file if
         one is defined. Identified by Coverity Scan. (markt)
@@ -406,12 +412,6 @@
         <code>RequestDispatcher</code>. The requested target path is logged as a
         warning since this is an application error. (markt)
       </add>
-      <fix>
-        <bug>63531</bug>: Refactor authenticators so that the session last
-        accessed time is not updated if the cache attribute is set to
-        <code>false</code> and <code>FORM</code> authentication is not being
-        used. (markt)
-      </fix>
       <update>
         Modify the Default and WebDAV Servlets so that a 405 status code is
         returned for <code>PUT</code> and <code>DELETE</code> requests when
@@ -518,6 +518,12 @@
         JULI&apos;s <code>OneLineFormatter</code> to enable the format of the
         time stamp used in log messages to be configured. (markt)
       </add>
+      <update>
+        <bug>63310</bug>: Update to Commons Daemon 1.2.0. This provides improved
+        support for Java 11. This also changes the user configured by the
+        Windows installer for the Windows service from <code>Local System</code>
+        to the lower privileged <code>Local Service</code>. (markt)
+      </update>
       <fix>
         <bug>63335</bug>: Ensure that stack traces written by the
         <code>OneLineFormatter</code> are fully indented. The entire stack trace
@@ -542,18 +548,17 @@
       <update>
         Update Checkstyle to version 8.22. (markt)
       </update>
-      <update>
-        <bug>63310</bug>: Update to Commons Daemon 1.2.0. This provides improved
-        support for Java 11. This also changes the user configured by the
-        Windows installer for the Windows service from <code>Local System</code>
-        to the lower privileged <code>Local Service</code>. (markt)
-      </update>
     </changelog>
   </subsection>
 </section>
 <section name="Tomcat 7.0.94 (markt)" rtext="released 2019-04-12">
   <subsection name="Catalina">
     <changelog>
+      <fix>
+        <bug>63196</bug>: Provide a default (<code>X-Forwarded-Proto</code>) for
+        the <code>protocolHeader</code> attribute of the
+        <code>RemoteIpFilter</code> and <code>RemoteIpValve</code>. (markt)
+      </fix>
       <add>
         <bug>63206</bug>: Add a new attribute to <code>Context</code> -
         <code>createUploadTargets</code> which, if <code>true</code> enables
@@ -581,11 +586,6 @@
         calling <code>AsyncContext.dispatch()</code>. (markt)
       </fix>
       <fix>
-        <bug>63196</bug>: Provide a default (<code>X-Forwarded-Proto</code>) for
-        the <code>protocolHeader</code> attribute of the
-        <code>RemoteIpFilter</code> and <code>RemoteIpValve</code>. (markt)
-      </fix>
-      <fix>
         <bug>63249</bug>: Use a consistent log level (<code>WARN</code>) when
         logging the failure to register or deregister a JMX Bean. (markt)
       </fix>


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