You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by kk...@apache.org on 2014/08/12 22:10:56 UTC

svn commit: r1617576 - in /tomcat/trunk: modules/jdbc-pool/doc/changelog.xml webapps/docs/changelog.xml

Author: kkolinko
Date: Tue Aug 12 20:10:56 2014
New Revision: 1617576

URL: http://svn.apache.org/r1617576
Log:
Move jdbc-pool changes for 8.0.11 from modules/jdbc-pool/doc/changelog.xml into main webapps/docs/changelog.xml.
Sort by issue number.

In JDBC Pool changelog file:
- Add a note that this changelog file is obsolete.
- Add XSLT stylesheet reference so that the file is viewable in a web browser (such as Firefox).
- Fix a pair of markup errors.

Modified:
    tomcat/trunk/modules/jdbc-pool/doc/changelog.xml
    tomcat/trunk/webapps/docs/changelog.xml

Modified: tomcat/trunk/modules/jdbc-pool/doc/changelog.xml
URL: http://svn.apache.org/viewvc/tomcat/trunk/modules/jdbc-pool/doc/changelog.xml?rev=1617576&r1=1617575&r2=1617576&view=diff
==============================================================================
--- tomcat/trunk/modules/jdbc-pool/doc/changelog.xml (original)
+++ tomcat/trunk/modules/jdbc-pool/doc/changelog.xml Tue Aug 12 20:10:56 2014
@@ -18,6 +18,7 @@
 <!DOCTYPE document [
   <!ENTITY project SYSTEM "@TOMCAT_PROJECT_DEST@">
 ]>
+<?xml-stylesheet type="text/xsl" href="package.xsl"?>
 <document url="changelog.html">
 
   &project;
@@ -29,22 +30,13 @@
 
 <body>
 
-<section name="Tomcat JDBC Connection Pool - Apache Tomcat 8.0.10">
-  <subsection name="pool">
-    <changelog>
-      <fix><rev>1616760</rev> <bug>54227</bug> Evaluate max age upon borrow (fhanik)</fix>
-      <fix><rev>1616644</rev> <bug>56318</bug> Ability to trace statement creation in StatementFinalizer (fhanik)</fix>
-      <fix><rev>1616639</rev> <bug>53088</bug> More identifiable thread name (fhanik)</fix>
-      <fix><rev>1616629</rev> <bug>56789</bug> getPool() returns the actual pool, always (fhanik)</fix>
-      <fix><rev>1616625</rev> <bug>54978</bug> Make sure proper connection validation always happens, regardless of config (fhanik)</fix>
-      <fix><rev>1616602</rev> <bug>54537</bug> Performance improvement in StatementFinalizer (fhanik)</fix>
-      <fix><rev>1616599</rev> <bug>54395</bug> Fix JDBC interceptor parsing bug (fhanik)</fix>
-      <fix><rev>1616595</rev> <bug>54235</bug> Disallow nested pools exploitating using data source (fhanik)</fix>
-      <fix><rev>1616592</rev> <bug>54225</bug> Disallow empty init SQL (fhanik)</fix>
-      <fix><rev>1616584</rev> <bug>53853</bug> More flexible classloading (fhanik)</fix>
-      <fix><rev>1616570</rev> <bug>53200</bug> Selective logging for slow versus failed queries (fhanik)</fix>
-    </changelog>
-  </subsection>
+<section name="Tomcat JDBC Connection Pool - Apache Tomcat 7.0.19 and later">
+  <p>
+    Starting with Apache Tomcat 7.0.19 in July 2011, Tomcat JDBC Connection Pool
+    is built and released as a component in official releases of Tomcat.
+    The changes are now listed in "jdbc-pool" sections of Apache Tomcat
+    changelog file. This changelog file is obsolete.
+  </p>
 </section>
 
 <section name="Tomcat JDBC Connection Pool 1.1.0.0">
@@ -83,12 +75,12 @@
 <section name="Tomcat JDBC Connection Pool 1.0.9.0">
   <subsection name="pool">
     <changelog>
-      <fix><rev>997321</rev></fix> Ensure threads borrowing connections do not
+      <fix><rev>997321</rev> Ensure threads borrowing connections do not
       get stuck waiting for a new connection if a connection is released in
-      another thread. (markt)
-      <fix><rev>995432</rev></fix> Make interceptor class names, property names
+      another thread. (markt)</fix>
+      <fix><rev>995432</rev> Make interceptor class names, property names
       and property values tolerant of whitespace by trimming the values before
-      use. (markt)
+      use. (markt)</fix>
       <fix><rev>995091</rev> <bug>49831</bug> Make sure pooled XAConnections are
       closed when the connection pool shuts down. Patch provided by Daniel
       Mikusa. (markt)</fix>

Modified: tomcat/trunk/webapps/docs/changelog.xml
URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1617576&r1=1617575&r2=1617576&view=diff
==============================================================================
--- tomcat/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/trunk/webapps/docs/changelog.xml Tue Aug 12 20:10:56 2014
@@ -32,7 +32,7 @@
 <!--
   Subsection ordering:
   General, Catalina, Coyote, Jasper, Cluster, WebSocket, Web applications,
-  Extras, Tribes, Other
+  Extras, Tribes, jdbc-pool, Other
 
   Item Ordering:
 
@@ -210,6 +210,48 @@
       </fix>
     </changelog>
   </subsection>
+  <subsection name="jdbc-pool">
+    <changelog>
+      <fix>
+        <bug>53088</bug>: More identifiable thread name. (fhanik)
+      </fix>
+      <fix>
+        <bug>53200</bug>: Selective logging for slow versus failed queries.
+        (fhanik)
+      </fix>
+      <fix>
+        <bug>53853</bug>: More flexible classloading. (fhanik)
+      </fix>
+      <fix>
+        <bug>54225</bug>: Disallow empty init SQL. (fhanik)
+      </fix>
+      <fix>
+        <bug>54227</bug>: Evaluate max age upon borrow. (fhanik)
+      </fix>
+      <fix>
+        <bug>54235</bug>: Disallow nested pools exploitating using data source.
+        (fhanik)
+      </fix>
+      <fix>
+        <bug>54395</bug>: Fix JDBC interceptor parsing bug. (fhanik)
+      </fix>
+      <fix>
+        <bug>54537</bug>: Performance improvement in
+        <code>StatementFinalizer</code>. (fhanik)
+      </fix>
+      <fix>
+        <bug>54978</bug>: Make sure proper connection validation always happens,
+        regardless of config. (fhanik)
+      </fix>
+      <fix>
+        <bug>56318</bug>: Ability to trace statement creation in
+        <code>StatementFinalizer</code>. (fhanik)
+      </fix>
+      <fix>
+        <bug>56789</bug>: getPool() returns the actual pool, always. (fhanik)
+      </fix>
+    </changelog>
+  </subsection>
   <subsection name="Other">
     <changelog>
       <add>



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