Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id CE91D10ED5 for ; Tue, 4 Jun 2013 00:38:21 +0000 (UTC) Received: (qmail 85136 invoked by uid 500); 4 Jun 2013 00:38:21 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 85086 invoked by uid 500); 4 Jun 2013 00:38:21 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 85079 invoked by uid 99); 4 Jun 2013 00:38:21 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Jun 2013 00:38:21 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Jun 2013 00:38:18 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 62F1C23888E3; Tue, 4 Jun 2013 00:37:58 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1489259 - in /commons/proper/dbutils/trunk: RELEASE-NOTES.txt pom.xml Date: Tue, 04 Jun 2013 00:37:58 -0000 To: commits@commons.apache.org From: wspeirs@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130604003758.62F1C23888E3@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: wspeirs Date: Tue Jun 4 00:37:57 2013 New Revision: 1489259 URL: http://svn.apache.org/r1489259 Log: More changes for 1.6-RC1 Modified: commons/proper/dbutils/trunk/RELEASE-NOTES.txt commons/proper/dbutils/trunk/pom.xml Modified: commons/proper/dbutils/trunk/RELEASE-NOTES.txt URL: http://svn.apache.org/viewvc/commons/proper/dbutils/trunk/RELEASE-NOTES.txt?rev=1489259&r1=1489258&r2=1489259&view=diff ============================================================================== --- commons/proper/dbutils/trunk/RELEASE-NOTES.txt (original) +++ commons/proper/dbutils/trunk/RELEASE-NOTES.txt Tue Jun 4 00:37:57 2013 @@ -1,31 +1,32 @@ Apache Commons DbUtils - Version 1.5 + Version 1.6 RELEASE NOTES -The Commons DbUtils team is pleased to announce the release of Commons DbUtils 1.5 +The Commons DbUtils team is pleased to announce the release of Commons DbUtils 1.6 The Apache Commons-DbUtils package is a set of Java utility classes for easing JDBC development. -Bugfixes and addition of BeanMapHandler - Changes in this version include: New features: -o DBUTILS-67: Added BeanMapHandler Thanks to Michael Osipov. +o Create functionality to return auto-generated keys in batches of SQL inserts Issue: DBUTILS-108. Thanks to Micah Huff. +o Patch QueryLoader to also load from XML properties files Issue: DBUTILS-107. Thanks to PB. +o Add missing JavaDoc to QueryRunner#insert Issue: DBUTILS-98. Thanks to Moandji Ezana. +o Add an Abstract ResultSetHandler implementation in order to reduce redundant 'resultSet' variable invocation Issue: DBUTILS-97. +o Added insert methods to QueryRunner and AsyncQueryRunner that return the generated key. Issue: DBUTILS-87. Thanks to Moandji Ezana. Fixed Bugs: -o DBUTILS-93: Source assembly artifact fails to build a site because of missing pmd-ruleset.xml Thanks to Stevo Slavic. -o DBUTILS-84: BeanProcessor method processColumn should take SQLXML in consideration Thanks to Tiago Cavaleiro. -o DBUTILS-73: Added a fixed Locale (Locale.ENGLISH) to all toLowerCase calls in BasicRowProcessor Thanks to Sebb. +o DBUtils can't build using JDK 1.7 - DriverProxy needs to implement getParentLogger() + Add dynamic invocation. Issue: DBUTILS-106. Thanks to Niall Pemberton. +o Updated the use of getColumnName to try getColumnLabel first Issue: DBUTILS-100. Thanks to xiaofei.xu. +o DbUtils#loadDriver(ClassLoader,String) makes DriverManager throwing "No suitable driver found for jdbc" + if ClassLoader is not the System's one Issue: DBUTILS-96. Thanks to yuyf. Changes: -o DBUTILS-94: Provide test coverage for org.apache.commons.dbutils.DbUtils Thanks to Benedikt Ritter. -o DBUTILS-91: Enhance BasicRowProcessor to have row mapping easier to configure Thanks to Stevo Slavic. -o Updated pom.xml: Java 1.6 now required, clirr and compiler plugin removed Thanks to wspeirs. -o DBUTILS-77: Updated documentation to better reflect the use of pmdKnownBroken -o DBUTILS-66: Added generics to ScalarHandler, ColumnHandler, and KeyedHandler Thanks to Michael Osipov. +o In BeanProcessor#isCompatibleType, can Integer.class.isInstance(value) be replaced by value instanceof Integer (etc)? + Simplified code by using instanceof. Issue: DBUTILS-85. For complete information on Commons DbUtils, including instructions on how to submit bug reports, Modified: commons/proper/dbutils/trunk/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/dbutils/trunk/pom.xml?rev=1489259&r1=1489258&r2=1489259&view=diff ============================================================================== --- commons/proper/dbutils/trunk/pom.xml [utf-8] (original) +++ commons/proper/dbutils/trunk/pom.xml [utf-8] Tue Jun 4 00:37:57 2013 @@ -24,7 +24,7 @@ 4.0.0 commons-dbutils commons-dbutils - 1.6-SNAPSHOT + 1.6 Commons DbUtils 2002