Repository: commons-pool Updated Branches: refs/heads/master bbc34c389 -> d4e0e8822
Preparing release 2.6.0 RC1. Project: http://git-wip-us.apache.org/repos/asf/commons-pool/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-pool/commit/d4e0e882 Tree: http://git-wip-us.apache.org/repos/asf/commons-pool/tree/d4e0e882 Diff: http://git-wip-us.apache.org/repos/asf/commons-pool/diff/d4e0e882 Branch: refs/heads/master Commit: d4e0e88227ad91d8c8ef36ba01d656f71c770f83 Parents: bbc34c3 Author: Gary Gregory <garydgreg...@gmail.com> Authored: Fri Aug 17 08:32:08 2018 -0600 Committer: Gary Gregory <garydgreg...@gmail.com> Committed: Fri Aug 17 08:32:08 2018 -0600 ---------------------------------------------------------------------- README.md | 4 ++-- RELEASE-NOTES.txt | 44 ++++++++++++++++++++++++++++++++++++ pom.xml | 4 ++-- src/changes/changes.xml | 2 +- src/site/xdoc/download_pool.xml | 26 ++++++++++----------- 5 files changed, 62 insertions(+), 18 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-pool/blob/d4e0e882/README.md ---------------------------------------------------------------------- diff --git a/README.md b/README.md index b4032ad..53a2861 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Apache Commons Pool [](https://travis-ci.org/apache/commons-pool) [](https://coveralls.io/r/apache/commons-pool) [](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-pool2/) -[](https://javadoc.io/doc/org.apache.commons/commons-pool2/2.6.0) +[](https://javadoc.io/doc/org.apache.commons/commons-pool2/2.6.1) The Apache Commons Object Pooling Library. @@ -67,7 +67,7 @@ Alternatively you can pull it from the central Maven repositories: <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-pool2</artifactId> - <version>2.6.0</version> + <version>2.6.1</version> </dependency> ``` http://git-wip-us.apache.org/repos/asf/commons-pool/blob/d4e0e882/RELEASE-NOTES.txt ---------------------------------------------------------------------- diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index d21f898..55c7d13 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -1,3 +1,47 @@ + Apache Commons Pool 2.6.1 RELEASE NOTES + +The Apache Commons Pool team is pleased to announce the release of Apache Commons Pool 2.6.1-SNAPSHOT. + +Apache Commons Pool provides an object-pooling API and a number of object pool implementations. +Version 2 contains a completely re-written pooling implementation compared to the 1.x series. +In addition to performance and scalability improvements, version 2 includes robust instance +tracking and pool monitoring. Version 2 requires JDK level 1.6 or above. + +No client code changes are required to migrate from versions 2.0-2.3 to version 2.4.3. +Users of version 1.x should consult the migration guide on the Commons Pool web site. + +NOTE: The MBean interfaces (DefaultPooledObjectInfoMBean, GenericKeyedObjectPoolMXBean + and GenericKeyedObjectPoolMXBean) exist only to define the attributes and methods + that will be made available via JMX. They must not be implemented by clients as + they are subject to change between major, minor and patch version releases of + Commons Pool. Clients that implement any of these interfaces may not, therefore, + be able to upgrade to a new minor or patch release without requiring code + changes. + +This is a maintenance release. + +Changes in version 2.6.1-SNAPSHOT include: + + +Fixed Bugs: +o POOL-347: borrowObject waits for maxWaitMillis over in pool full. Thanks to Shunsuke Nakamura. + +Changes: +o POOL-345: Update optional library cglib from 3.2.6 to 3.2.7. +o POOL-346: Move common configuration setter to BaseGenericObjectPool #9. Thanks to Michael Chen. +o POOL-349: Update optional library asm-util from 6.2 to 6.2.1. + + +For complete information on Apache Commons Pool, including instructions on how to submit bug reports, +patches, or suggestions for improvement, see the Apache Apache Commons Pool website: + +http://commons.apache.org/proper/commons-pool/ + +Download page: http://commons.apache.org/proper/commons-pool/download_pool.cgi + +----------------------------------------------------------------------------------------------- + + Apache Commons Pool 2.6.0 RELEASE NOTES The Apache Commons Pool team is pleased to announce the release of Apache Commons Pool 2.6.0. http://git-wip-us.apache.org/repos/asf/commons-pool/blob/d4e0e882/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 35f7a67..28ffcc4 100644 --- a/pom.xml +++ b/pom.xml @@ -156,7 +156,7 @@ <commons.componentid>pool</commons.componentid> <commons.module.name>org.apache.commons.pool2</commons.module.name> <!-- Java 7 --> - <commons.release.version>2.6.0</commons.release.version> + <commons.release.version>2.6.1</commons.release.version> <commons.release.desc>(Java 7)</commons.release.desc> <!-- Java 6 --> <commons.release.2.version>2.4.3</commons.release.2.version> @@ -173,7 +173,7 @@ <commons.animal-sniffer.version>1.16</commons.animal-sniffer.version> <!-- Commons Release Plugin --> - <commons.bc.version>2.5.0</commons.bc.version> + <commons.bc.version>2.6.0</commons.bc.version> <commons.release.isDistModule>true</commons.release.isDistModule> <commons.releaseManagerName>Gary Gregory</commons.releaseManagerName> <commons.releaseManagerKey>86fdc7e2a11262cb</commons.releaseManagerKey> http://git-wip-us.apache.org/repos/asf/commons-pool/blob/d4e0e882/src/changes/changes.xml ---------------------------------------------------------------------- diff --git a/src/changes/changes.xml b/src/changes/changes.xml index 2e61754..5f8e1a4 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -50,7 +50,7 @@ The <action> type attribute can be add,update,fix,remove. <action dev="ggregory" issue="POOL-346" type="update" due-to="Michael Chen"> Move common configuration setter to BaseGenericObjectPool #9. </action> - <action dev="ggregory" issue="POOL-347" type=fix" due-to="Shunsuke Nakamura"> + <action dev="ggregory" issue="POOL-347" type="fix" due-to="Shunsuke Nakamura"> borrowObject waits for maxWaitMillis over in pool full. </action> <action dev="ggregory" issue="POOL-349" type="update"> http://git-wip-us.apache.org/repos/asf/commons-pool/blob/d4e0e882/src/site/xdoc/download_pool.xml ---------------------------------------------------------------------- diff --git a/src/site/xdoc/download_pool.xml b/src/site/xdoc/download_pool.xml index 5b4f8cf..9a54d7e 100644 --- a/src/site/xdoc/download_pool.xml +++ b/src/site/xdoc/download_pool.xml @@ -111,32 +111,32 @@ limitations under the License. </p> </subsection> </section> - <section name="Apache Commons Pool 2.6.0 (Java 7)"> + <section name="Apache Commons Pool 2.6.1 (Java 7)"> <subsection name="Binaries"> <table> <tr> - <td><a href="[preferred]/commons/pool/binaries/commons-pool2-2.6.0-bin.tar.gz">commons-pool2-2.6.0-bin.tar.gz</a></td> - <td><a href="https://www.apache.org/dist/commons/pool/binaries/commons-pool2-2.6.0-bin.tar.gz.sha1">sha1</a></td> - <td><a href="https://www.apache.org/dist/commons/pool/binaries/commons-pool2-2.6.0-bin.tar.gz.asc">pgp</a></td> + <td><a href="[preferred]/commons/pool/binaries/commons-pool2-2.6.1-bin.tar.gz">commons-pool2-2.6.1-bin.tar.gz</a></td> + <td><a href="https://www.apache.org/dist/commons/pool/binaries/commons-pool2-2.6.1-bin.tar.gz.sha1">sha1</a></td> + <td><a href="https://www.apache.org/dist/commons/pool/binaries/commons-pool2-2.6.1-bin.tar.gz.asc">pgp</a></td> </tr> <tr> - <td><a href="[preferred]/commons/pool/binaries/commons-pool2-2.6.0-bin.zip">commons-pool2-2.6.0-bin.zip</a></td> - <td><a href="https://www.apache.org/dist/commons/pool/binaries/commons-pool2-2.6.0-bin.zip.sha1">sha1</a></td> - <td><a href="https://www.apache.org/dist/commons/pool/binaries/commons-pool2-2.6.0-bin.zip.asc">pgp</a></td> + <td><a href="[preferred]/commons/pool/binaries/commons-pool2-2.6.1-bin.zip">commons-pool2-2.6.1-bin.zip</a></td> + <td><a href="https://www.apache.org/dist/commons/pool/binaries/commons-pool2-2.6.1-bin.zip.sha1">sha1</a></td> + <td><a href="https://www.apache.org/dist/commons/pool/binaries/commons-pool2-2.6.1-bin.zip.asc">pgp</a></td> </tr> </table> </subsection> <subsection name="Source"> <table> <tr> - <td><a href="[preferred]/commons/pool/source/commons-pool2-2.6.0-src.tar.gz">commons-pool2-2.6.0-src.tar.gz</a></td> - <td><a href="https://www.apache.org/dist/commons/pool/source/commons-pool2-2.6.0-src.tar.gz.sha1">sha1</a></td> - <td><a href="https://www.apache.org/dist/commons/pool/source/commons-pool2-2.6.0-src.tar.gz.asc">pgp</a></td> + <td><a href="[preferred]/commons/pool/source/commons-pool2-2.6.1-src.tar.gz">commons-pool2-2.6.1-src.tar.gz</a></td> + <td><a href="https://www.apache.org/dist/commons/pool/source/commons-pool2-2.6.1-src.tar.gz.sha1">sha1</a></td> + <td><a href="https://www.apache.org/dist/commons/pool/source/commons-pool2-2.6.1-src.tar.gz.asc">pgp</a></td> </tr> <tr> - <td><a href="[preferred]/commons/pool/source/commons-pool2-2.6.0-src.zip">commons-pool2-2.6.0-src.zip</a></td> - <td><a href="https://www.apache.org/dist/commons/pool/source/commons-pool2-2.6.0-src.zip.sha1">sha1</a></td> - <td><a href="https://www.apache.org/dist/commons/pool/source/commons-pool2-2.6.0-src.zip.asc">pgp</a></td> + <td><a href="[preferred]/commons/pool/source/commons-pool2-2.6.1-src.zip">commons-pool2-2.6.1-src.zip</a></td> + <td><a href="https://www.apache.org/dist/commons/pool/source/commons-pool2-2.6.1-src.zip.sha1">sha1</a></td> + <td><a href="https://www.apache.org/dist/commons/pool/source/commons-pool2-2.6.1-src.zip.asc">pgp</a></td> </tr> </table> </subsection>