You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ma...@apache.org on 2011/05/11 13:48:39 UTC

svn commit: r1101843 - /commons/proper/dbcp/trunk/src/changes/changes.xml

Author: markt
Date: Wed May 11 11:48:38 2011
New Revision: 1101843

URL: http://svn.apache.org/viewvc?rev=1101843&view=rev
Log:
Update changes rather than release notes (which are auto-generated).

Modified:
    commons/proper/dbcp/trunk/src/changes/changes.xml

Modified: commons/proper/dbcp/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/dbcp/trunk/src/changes/changes.xml?rev=1101843&r1=1101842&r2=1101843&view=diff
==============================================================================
--- commons/proper/dbcp/trunk/src/changes/changes.xml (original)
+++ commons/proper/dbcp/trunk/src/changes/changes.xml Wed May 11 11:48:38 2011
@@ -38,8 +38,33 @@ The <action> type attribute can be add,u
     <title>Commons DBCP Release Notes</title>
   </properties>
   <body>
-    <release version="2.0" date="TBD" description="TBD">
+    <release version="2.0" date="TBD" description="This release includes new
+     features as well as bug fixes and enhancements. Version 2.0.x supports JDBC
+     4, so requires JDK 1.6.  Applications running under JDK 1.4-1.5 must use
+     DBCP 1.3.x. Applications running under JDK 1.6 should use DBCP 2.0.x.">
+      <action dev="markt" type="add">
+        Provide a new option (cacheState) to cache current values of autoCommit
+        and readOnly so database queries are not required for every call to the
+        associated getters. This option is enabled by default.
+      </action>
+      <action dev="markt" issue="DBCP-300" type="fix">
+        Removed unnecessary synchronisation in BasicDataSource#createDataSource.
+      </action>
+      <action dev="markt" type="update">
+        The Java package name has been changed from org.apache.commons.dbcp to
+        org.apache.commons.dbcp2.
+      </action>
+      <action dev="markt" type="update">
+        Update to Commons Pool 2 (based on java.util.concurrent) to provide
+        pooling functionality.
+      </action>
     </release>
+      <action dev="markt" type="update">
+        Updated source code for Java 1.6 (added @Override annotations).
+      </action>
+      <action dev="markt" type="update">
+        Removed JOCL support.
+      </action>
     <release version="1.4.1" date="TBD" description="TBD">
       <action dev="psteitz" issue="DBCP-334" type="update" due-to="Alberto Mozzone">
         Exposed GenericObjectPool's softMinEvictableIdleTimeMillis property for