| <?xml version="1.0"?> |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one or more |
| contributor license agreements. See the NOTICE file distributed with |
| this work for additional information regarding copyright ownership. |
| The ASF licenses this file to You under the Apache License, Version 2.0 |
| (the "License"); you may not use this file except in compliance with |
| the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| |
| <!-- |
| This file is used by the maven-changes-plugin to generate the release notes. |
| Useful ways of finding items to add to this file are: |
| |
| 1. Add items when you fix a bug or add a feature (this makes the |
| release process easy :-). |
| |
| 2. Do a bugzilla search for tickets closed since the previous release. |
| |
| 3. Use the report generated by the maven-changelog-plugin to see all |
| CVS commits. Set the project.properties' maven.changelog.range |
| property to the number of days since the last release. |
| |
| To regenerate the RELEASE-NOTES.txt: |
| |
| mvn changes:announcement-generate -Prelease-notes [-Dchanges.version=m.n] |
| |
| The <action> type attribute can be add,update,fix,remove. |
| --> |
| |
| <document xmlns="http://maven.apache.org/changes/1.0.0" |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 http://maven.apache.org/plugins/maven-changes-plugin/xsd/changes-1.0.0.xsd"> |
| <properties> |
| <title>Release Notes</title> |
| </properties> |
| <body> |
| <release version="2.0" date="2013-??-??" description="Backwards incompatible update of Commons DBUtils |
| |
| This is the first release of the 2.x branch of the Commons DbUtils package, DbUtils2. |
| The motivation for creating DbUtils2 was two-fold: a number of deprecated methods in the original DbUtils, and the desire to support named parameters (DBUTILS-105). |
| "> |
| <action dev="sebb" type="update" issue="DBUTILS-85"> |
| In BeanProcessor#isCompatibleType, can Integer.class.isInstance(value) be replaced by value instanceof Integer (etc)? |
| Simplified code by using instanceof. |
| </action> |
| <action dev="sebb" type="fix" issue="DBUTILS-106"> |
| DBUtils can't build using JDK 1.7 - DriverProxy needs to implement getParentLogger() |
| Add dynamic invocation. |
| </action> |
| <action dev="sebb" type="fix" issue="DBUTILS-109"> |
| AbstractExecutor.currentPosition should be an int |
| </action> |
| <action dev="wspeirs" type="add" issue="DBUTILS-105"> |
| Added named parameter support with fluent API |
| </action> |
| </release> |
| |
| </body> |
| </document> |