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 12:49:55 UTC

svn commit: r1101829 - /commons/proper/dbcp/trunk/RELEASE-NOTES.txt

Author: markt
Date: Wed May 11 10:49:55 2011
New Revision: 1101829

URL: http://svn.apache.org/viewvc?rev=1101829&view=rev
Log:
Update the release notes for work completed to date on DBCP 2

Modified:
    commons/proper/dbcp/trunk/RELEASE-NOTES.txt

Modified: commons/proper/dbcp/trunk/RELEASE-NOTES.txt
URL: http://svn.apache.org/viewvc/commons/proper/dbcp/trunk/RELEASE-NOTES.txt?rev=1101829&r1=1101828&r2=1101829&view=diff
==============================================================================
--- commons/proper/dbcp/trunk/RELEASE-NOTES.txt (original)
+++ commons/proper/dbcp/trunk/RELEASE-NOTES.txt Wed May 11 10:49:55 2011
@@ -1,28 +1,29 @@
                         
 
-                    commons-dbcp-1.3.1/1.4.1 RELEASE NOTES
+                       commons-dbcp-2.0.0 RELEASE NOTES
 
-This release includes new features as well as bug fixes and enhancements.  The
-1.3.x and 1.4.x releases of DBCP are built from the same sources.  Version 1.4.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 1.4.x.
-Other than support for the added methods in JDBC 4, there is nothing new or
-different in DBCP 1.4.x vs. DBCP 1.3.x. The list of changes below since 1.3/1.4
-applies to both the 1.3.1 and 1.4 release.  All bug fixes or new features are
-included in both DBCP 1.3.x and 1.4.x.
+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.
 
 Changes since DBCP 1.3/1.4 include:
 
 New features:
-o  None
+o  Cache current values of autoCommit and readOnly so database queries are not
+   required for every call to the associated getters.
 
 Fixed Bugs:
-o  DBCP-333:  Correctly implemented the fix for DBCP-203 to allow the
-        configuration of the class loader to be used to load the JDBC driver. 
+o  DBCP-300: Removed unnecessary synchronisation in
+             BasicDataSource#createDataSource
 
 Changes:
-o  None
-
+o  The package has been changed from org.apache.commons.dbcp to
+   org.apache.commons.dbcp2.
+o  Update to Commons Pool 2 (based on java.util.concurrent) to provide
+   pooling functionality.
+o  Updated source code for Java 1.6 (added @Override annotations).
+o  Removed JOCL support.
  
 For complete information on commons-dbcp, including instructions on how to
 submit bug reports, patches, or suggestions for improvement, see the