This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-dbcp.git
The following commit(s) were added to refs/heads/master by this push: new 1a3c8ac Prepare for the next release. 1a3c8ac is described below commit 1a3c8acf6e52e60c31885811d2ccb388d3023f67 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Wed Jul 31 07:51:14 2019 -0400 Prepare for the next release. --- RELEASE-NOTES.txt | 54 ++++++++++++++++++++++++++++++++++ src/changes/changes.xml | 78 ++++++++++++++++++++++++++----------------------- 2 files changed, 95 insertions(+), 37 deletions(-) diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index fb93d4d..626061e 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -1,4 +1,58 @@ Apache Apache Commons DBCP + Version 2.7.0 + RELEASE NOTES + 7 July 2019 + +The Apache Commons DBCP team is pleased to announce the release of Apache Apache Commons DBCP 2.7.0. + +Apache Commons DBCP software implements Database Connection Pooling. + +This is a minor release, including bug fixes and enhancements. + +Changes in this version include: + +New features: +o DBCP-539: ManagedDataSource#close() should declare used exceptions. Thanks to Jacques Le Roux. +o DBCP-547: Add a ConnectionFactory class name setting for BasicDataSource.createConnectionFactory() #33. Thanks to leechoongyon, Gary Gregory. +o Add missing Javadocs. Thanks to Gary Gregory. + +Fixed Bugs: +o DBCP-538: Wrong JMX base name derived in BasicDataSource#updateJmxName. Thanks to Ragnar Haugan, Gary Gregory. +o DBCP-546: Avoid NPE when calling DriverAdapterCPDS.toString(). Thanks to Sergey Chupov. +o DBCP-550: java.util.IllegalFormatException while building a message for a SQLFeatureNotSupportedException in Jdbc41Bridge.getObject(ResultSet,String,Class). Thanks to Gary Gregory. +o Fix Javadoc link in README.md #21. Thanks to LichKing-lee. + +Changes: +o DBCP-540: Close ObjectOutputStream before calling toByteArray() on underlying ByteArrayOutputStream #28. Thanks to emopers. +o DBCP-541: Upgrade to JUnit Jupiter #19. Thanks to Allon Murienik. +o DBCP-542: Fix tests on Java 11. Thanks to Zheng Feng, Gary Gregory. +o DBCP-543: Update Apache Commons Pool from 2.6.1 to 2.6.2. Thanks to Gary Gregory. +o DBCP-529: Add 'jmxName' property to web configuration parameters listing. Thanks to Yuri. +o DBCP-548: Update Apache Commons Pool from 2.6.2 to 2.7.0. Thanks to Gary Gregory. +o DBCP-549: Make org.apache.commons.dbcp2.AbandonedTrace.removeTrace(AbandonedTrace) null-safe. Thanks to Gary Gregory. +o DBCP-551: org.apache.commons.dbcp2.DelegatingStatement.close() should try to close ALL of its result sets even when an exception occurs. Thanks to Gary Gregory. +o DBCP-552: org.apache.commons.dbcp2.DelegatingConnection.passivate() should close ALL of its resources even when an exception occurs. Thanks to Gary Gregory. +o DBCP-553: org.apache.commons.dbcp2.PoolablePreparedStatement.passivate() should close ALL of its resources even when an exception occurs. Thanks to Gary Gregory. +o DBCP-554: org.apache.commons.dbcp2.PoolableCallableStatement.passivate() should close ALL of its resources even when an exception occurs. Thanks to Gary Gregory. +o Update tests from org.mockito:mockito-core 2.28.2 to 3.0.0. Thanks to Gary Gregory. +o Update tests from H2 1.4.198 to 1.4.199. Thanks to Gary Gregory. +o Update tests from com.h2database:h2 1.4.197 to 1.4.199. Thanks to Gary Gregory. +o Update tests from org.jboss.narayana.jta:narayana-jta 5.9.2.Final to 5.9.5.Final. Thanks to Gary Gregory. +o Update tests from org.jboss.logging:jboss-logging 3.3.2.Final to 3.4.0.Final. Thanks to Gary Gregory. +o Update tests from org.mockito:mockito-core 2.24.0 to 2.28.2. Thanks to Gary Gregory. +o Update tests from org.mockito:mockito-core 2.28.2 to 3.0.0. Thanks to Gary Gregory. + + +For complete information on Apache Commons DBCP, including instructions on how to submit bug reports, +patches, or suggestions for improvement, see the Apache Apache Commons DBCP website: + +https://commons.apache.org/dbcp/ + +Download page: https://commons.apache.org/dbcp/download_dbcp.cgi + +----------------------------------------------------------------------------- + + Apache Apache Commons DBCP Version 2.6.0 RELEASE NOTES diff --git a/src/changes/changes.xml b/src/changes/changes.xml index 66eb615..5358e5e 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -61,15 +61,30 @@ The <action> type attribute can be add,update,fix,remove. <body> <release version="2.7.0" date="2019-MM-DD" description="This is a minor release, including bug fixes and enhancements."> + <!-- add --> <action dev="jleroux" type="add" issue="DBCP-539" due-to="Jacques Le Roux"> ManagedDataSource#close() should declare used exceptions. </action> - <action dev="ggregory" type="add" issue="DBCP-538" due-to="Ragnar Haugan, Gary Gregory"> + <action dev="ggregory" type="add" issue="DBCP-547" due-to="leechoongyon, Gary Gregory"> + Add a ConnectionFactory class name setting for BasicDataSource.createConnectionFactory() #33. + </action> + <action dev="ggregory" type="add" due-to="Gary Gregory"> + Add missing Javadocs. + </action> + <!-- fix --> + <action dev="ggregory" type="fix" issue="DBCP-538" due-to="Ragnar Haugan, Gary Gregory"> Wrong JMX base name derived in BasicDataSource#updateJmxName. </action> - <action dev="ggregory" type="update" due-to="Gary Gregory"> - Update tests from H2 1.4.198 to 1.4.199. + <action dev="ggregory" type="fix" issue="DBCP-546" due-to="Sergey Chupov"> + Avoid NPE when calling DriverAdapterCPDS.toString(). </action> + <action dev="ggregory" type="fix" issue="DBCP-550" due-to="Gary Gregory"> + java.util.IllegalFormatException while building a message for a SQLFeatureNotSupportedException in Jdbc41Bridge.getObject(ResultSet,String,Class). + </action> + <action dev="ggregory" type="fix" due-to="LichKing-lee"> + Fix Javadoc link in README.md #21. + </action> + <!-- update --> <action dev="ggregory" type="update" issue="DBCP-540" due-to="emopers"> Close ObjectOutputStream before calling toByteArray() on underlying ByteArrayOutputStream #28. </action> @@ -82,48 +97,15 @@ The <action> type attribute can be add,update,fix,remove. <action dev="ggregory" type="update" issue="DBCP-543" due-to="Gary Gregory"> Update Apache Commons Pool from 2.6.1 to 2.6.2. </action> - <action dev="ggregory" type="update" issue="DBCP-546" due-to="Sergey Chupov"> - Avoid NPE when calling DriverAdapterCPDS.toString(). - </action> - <action dev="ggregory" type="update" issue="DBCP-547" due-to="leechoongyon, Gary Gregory"> - Add a ConnectionFactory class name setting for BasicDataSource.createConnectionFactory() #33. - </action> - <action dev="ggregory" type="update" due-to="LichKing-lee"> - Fix Javadoc link in README.md #21. - </action> <action dev="ggregory" type="update" issue="DBCP-529" due-to="Yuri"> Add 'jmxName' property to web configuration parameters listing. </action> - <action dev="ggregory" type="update" due-to="Gary Gregory"> - Update tests from com.h2database:h2 1.4.197 to 1.4.199. - </action> - <action dev="ggregory" type="update" due-to="Gary Gregory"> - Update tests from org.jboss.narayana.jta:narayana-jta 5.9.2.Final to 5.9.5.Final. - </action> - <action dev="ggregory" type="update" due-to="Gary Gregory"> - Update tests from org.jboss.logging:jboss-logging 3.3.2.Final to 3.4.0.Final. - </action> - <action dev="ggregory" type="update" due-to="Gary Gregory"> - Update tests from org.mockito:mockito-core 2.24.0 to 2.28.2. - </action> - <action dev="ggregory" type="update" due-to="Gary Gregory"> - Update tests from org.mockito:mockito-core 2.28.2 to 3.0.0. - </action> <action dev="ggregory" type="update" issue="DBCP-548" due-to="Gary Gregory"> - Update Apache Commons Pool from 2.6.1 to 2.7.0. + Update Apache Commons Pool from 2.6.2 to 2.7.0. </action> <action dev="ggregory" type="update" issue="DBCP-549" due-to="Gary Gregory"> Make org.apache.commons.dbcp2.AbandonedTrace.removeTrace(AbandonedTrace) null-safe. </action> - <action dev="ggregory" type="update" issue="DBCP-550" due-to="Gary Gregory"> - java.util.IllegalFormatException while building a message for a SQLFeatureNotSupportedException in Jdbc41Bridge.getObject(ResultSet,String,Class). - </action> - <action dev="ggregory" type="update" due-to="Gary Gregory"> - Add missing Javadocs. - </action> - <action dev="ggregory" type="update" due-to="Gary Gregory"> - Update tests from org.mockito:mockito-core 2.28.2 to 3.0.0. - </action> <action dev="ggregory" type="update" issue="DBCP-551" due-to="Gary Gregory"> org.apache.commons.dbcp2.DelegatingStatement.close() should try to close ALL of its result sets even when an exception occurs. </action> @@ -136,6 +118,28 @@ The <action> type attribute can be add,update,fix,remove. <action dev="ggregory" type="update" issue="DBCP-554" due-to="Gary Gregory"> org.apache.commons.dbcp2.PoolableCallableStatement.passivate() should close ALL of its resources even when an exception occurs. </action> + <!-- update, no Jira --> + <action dev="ggregory" type="update" due-to="Gary Gregory"> + Update tests from org.mockito:mockito-core 2.28.2 to 3.0.0. + </action> + <action dev="ggregory" type="update" due-to="Gary Gregory"> + Update tests from H2 1.4.198 to 1.4.199. + </action> + <action dev="ggregory" type="update" due-to="Gary Gregory"> + Update tests from com.h2database:h2 1.4.197 to 1.4.199. + </action> + <action dev="ggregory" type="update" due-to="Gary Gregory"> + Update tests from org.jboss.narayana.jta:narayana-jta 5.9.2.Final to 5.9.5.Final. + </action> + <action dev="ggregory" type="update" due-to="Gary Gregory"> + Update tests from org.jboss.logging:jboss-logging 3.3.2.Final to 3.4.0.Final. + </action> + <action dev="ggregory" type="update" due-to="Gary Gregory"> + Update tests from org.mockito:mockito-core 2.24.0 to 2.28.2. + </action> + <action dev="ggregory" type="update" due-to="Gary Gregory"> + Update tests from org.mockito:mockito-core 2.28.2 to 3.0.0. + </action> </release> <release version="2.6.0" date="2019-02-14" description="This is a minor release, including bug fixes and enhancements."> <action dev="chtompki" type="add" issue="DBCP-534" due-to="Peter Wicks">