You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by th...@apache.org on 2017/07/07 02:06:13 UTC

[38/50] commons-dbutils git commit: Update changes file for recent updates Add rat to verify license headers Add myself as a developer

Update changes file for recent updates
Add rat to verify license headers
Add myself as a developer

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/dbutils/trunk@1673792 13f79535-47bb-0310-9956-ffa450edef68


Project: http://git-wip-us.apache.org/repos/asf/commons-dbutils/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-dbutils/commit/e5d6801d
Tree: http://git-wip-us.apache.org/repos/asf/commons-dbutils/tree/e5d6801d
Diff: http://git-wip-us.apache.org/repos/asf/commons-dbutils/diff/e5d6801d

Branch: refs/heads/master
Commit: e5d6801d20e55fdb3cdf8b081d43069fb9f5700b
Parents: 92c6d6d
Author: Carl Franklin Hall <th...@apache.org>
Authored: Wed Apr 15 14:43:54 2015 +0000
Committer: Carl Franklin Hall <th...@apache.org>
Committed: Wed Apr 15 14:43:54 2015 +0000

----------------------------------------------------------------------
 pom.xml                 | 22 ++++++++++++++++++++++
 src/changes/changes.xml |  9 +++++++++
 2 files changed, 31 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-dbutils/blob/e5d6801d/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index d20d8dd..9600b5d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -121,6 +121,15 @@
         <role>Java Developer</role>
       </roles>
     </developer>
+    <developer>
+      <name>Carl Hall</name>
+      <id>thecarlhall</id>
+      <email>thecarlhall@apache.org</email>
+      <organization />
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+    </developer>
   </developers>
 
   <contributors>
@@ -257,6 +266,19 @@
           <tarLongFileMode>gnu</tarLongFileMode>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <version>0.11</version>
+        <executions>
+          <execution>
+            <phase>verify</phase>
+            <goals>
+              <goal>check</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
     </plugins>
   </build>
 

http://git-wip-us.apache.org/repos/asf/commons-dbutils/blob/e5d6801d/src/changes/changes.xml
----------------------------------------------------------------------
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 0794f73..5c36d00 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -56,6 +56,15 @@ The <action> type attribute can be add,update,fix,remove.
       <action dev="thecarlhall" type="add" issue="DBUTILS-121">
         Add getWriteMethod to BeanProcessor to allow subclasses to influence which write method is used
       </action>
+      <action dev="thecarlhall" type="fix" issue="DBUTILS-82" due-to="Kenshi Toriumi">
+        Change method contracts to allow extended class types when returning a bean populated from a query
+      </action>
+      <action dev="thecarlhall" type="fix" issue="DBUTILS-89" due-to="Adam Dyga">
+        Add method in BeanProcessor to populate an existing bean
+      </action>
+      <action dev="thecarlhall" type="fix" issue="DBUTILS-70" due-to="Michael Akerman">
+        Add ability to configure statements used in QueryRunner
+      </action>
     </release>
 
     <release version="1.6" date="2014-07-20" description="Bugfixes and addition of insert methods">