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 409059249 for ; Sat, 26 Nov 2011 16:31:22 +0000 (UTC) Received: (qmail 55989 invoked by uid 500); 26 Nov 2011 16:31:22 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 55912 invoked by uid 500); 26 Nov 2011 16:31:22 -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 55905 invoked by uid 99); 26 Nov 2011 16:31:22 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 26 Nov 2011 16:31: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; Sat, 26 Nov 2011 16:31:18 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 5FAA82388993 for ; Sat, 26 Nov 2011 16:30:57 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1206481 - in /commons/proper/pool/branches/POOL_1_X: RELEASE-NOTES.txt pool-RC.sh src/site/xdoc/download_pool.xml Date: Sat, 26 Nov 2011 16:30:57 -0000 To: commits@commons.apache.org From: psteitz@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111126163057.5FAA82388993@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: psteitz Date: Sat Nov 26 16:30:56 2011 New Revision: 1206481 URL: http://svn.apache.org/viewvc?rev=1206481&view=rev Log: Prepare for 1.5.7 release. Modified: commons/proper/pool/branches/POOL_1_X/RELEASE-NOTES.txt commons/proper/pool/branches/POOL_1_X/pool-RC.sh commons/proper/pool/branches/POOL_1_X/src/site/xdoc/download_pool.xml Modified: commons/proper/pool/branches/POOL_1_X/RELEASE-NOTES.txt URL: http://svn.apache.org/viewvc/commons/proper/pool/branches/POOL_1_X/RELEASE-NOTES.txt?rev=1206481&r1=1206480&r2=1206481&view=diff ============================================================================== --- commons/proper/pool/branches/POOL_1_X/RELEASE-NOTES.txt (original) +++ commons/proper/pool/branches/POOL_1_X/RELEASE-NOTES.txt Sat Nov 26 16:30:56 2011 @@ -1,6 +1,6 @@ - commons-pool-1.5.6 RELEASE NOTES + commons-pool-1.5.7 RELEASE NOTES This is a patch release, including bugfixes only. @@ -8,16 +8,13 @@ Changes in this version include: Fixed Bugs: -o POOL-179: Correctly handle an InterruptedException when waiting for an object from - the pool. Thanks to Axel Grossmann. -o POOL-180: Only stop tracking objects for a key when there are no idle objects, no - active objects and no objects being processed. -o POOL-184: Correct bug that could lead to inappropriate pool starvation when evict() - and borrowObject() are called concurrently. -o Fix performance issues when object destruction has latency. Thanks to psteitz. +o POOL-189: Awaken threads waiting on borrowObject when a pool has been closed and have them throw + IllegalStateException. Prior to the fix for this issue, threads waiting in borrowObject when + close was invoked on GOP or GKOP would block indefinitely. Thanks to Bill Speirs. +o POOL-192: Corrected total internal processing counter update in destroy. Prior to the fix + for this issue, clear(key) was leaking capacity associated with elements in the + pool being cleared. Thanks to Helge Dannenberg. -Changes: -o POOL-181: Make BaseObjectPool.isClosed() public. For complete information on commons-pool, including instructions on how to submit bug reports, Modified: commons/proper/pool/branches/POOL_1_X/pool-RC.sh URL: http://svn.apache.org/viewvc/commons/proper/pool/branches/POOL_1_X/pool-RC.sh?rev=1206481&r1=1206480&r2=1206481&view=diff ============================================================================== --- commons/proper/pool/branches/POOL_1_X/pool-RC.sh (original) +++ commons/proper/pool/branches/POOL_1_X/pool-RC.sh Sat Nov 26 16:30:56 2011 @@ -22,8 +22,8 @@ # $Revision$ $Date$ # ----------------------------------------------------------------------------- # Set script variables -version=1.5.6 -rc=2 +version=1.5.7 +rc=1 repo_path=~/.m2/repository/commons-pool/commons-pool/${version} release_path=~/pool-${version}-rc${rc} # Modified: commons/proper/pool/branches/POOL_1_X/src/site/xdoc/download_pool.xml URL: http://svn.apache.org/viewvc/commons/proper/pool/branches/POOL_1_X/src/site/xdoc/download_pool.xml?rev=1206481&r1=1206480&r2=1206481&view=diff ============================================================================== --- commons/proper/pool/branches/POOL_1_X/src/site/xdoc/download_pool.xml (original) +++ commons/proper/pool/branches/POOL_1_X/src/site/xdoc/download_pool.xml Sat Nov 26 16:30:56 2011 @@ -95,32 +95,32 @@ limitations under the License.

-
+
- - - + + + - - - + + +
commons-pool-1.5.6-bin.tar.gzmd5pgpcommons-pool-1.5.7-bin.tar.gzmd5pgp
commons-pool-1.5.6-bin.zipmd5pgpcommons-pool-1.5.7-bin.zipmd5pgp
- - - + + + - - - + + +
commons-pool-1.5.6-src.tar.gzmd5pgpcommons-pool-1.5.7-src.tar.gzmd5pgp
commons-pool-1.5.6-src.zipmd5pgpcommons-pool-1.5.7-src.zipmd5pgp