Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 41609 invoked from network); 23 Jul 2009 01:51:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 23 Jul 2009 01:51:06 -0000 Received: (qmail 87327 invoked by uid 500); 23 Jul 2009 01:52:11 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 87241 invoked by uid 500); 23 Jul 2009 01:52:11 -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 87232 invoked by uid 99); 23 Jul 2009 01:52:11 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jul 2009 01:52:11 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Thu, 23 Jul 2009 01:52:07 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 8CD8E23888C8; Thu, 23 Jul 2009 01:51:46 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r796924 - in /commons/proper/codec/trunk: RELEASE-NOTES.txt xdocs/changes.xml Date: Thu, 23 Jul 2009 01:51:46 -0000 To: commits@commons.apache.org From: niallp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090723015146.8CD8E23888C8@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: niallp Date: Thu Jul 23 01:51:46 2009 New Revision: 796924 URL: http://svn.apache.org/viewvc?rev=796924&view=rev Log: Update 1.4 release notes Modified: commons/proper/codec/trunk/RELEASE-NOTES.txt commons/proper/codec/trunk/xdocs/changes.xml Modified: commons/proper/codec/trunk/RELEASE-NOTES.txt URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/RELEASE-NOTES.txt?rev=796924&r1=796923&r2=796924&view=diff ============================================================================== --- commons/proper/codec/trunk/RELEASE-NOTES.txt (original) +++ commons/proper/codec/trunk/RELEASE-NOTES.txt Thu Jul 23 01:51:46 2009 @@ -11,16 +11,32 @@ New Features: -o +o [CODEC-60] Implement Caverphone. +o [CODEC-52] Digest on InputStreams. +o [CODEC-39] DigestUtils: Add methods for SHA-256, SHA-384, and SHA-512. +o [CODEC-69] Streaming Base64 (Base64InputStream and Base64OutputStream added). + Fixed bugs: -o Using US_ENGLISH in Soundex causes an NPE. Issue addressed and - test case added to SoundexTest. - Issue: 37894. Thanks to Reggie Riser. +o [CODEC-77] Base64 bug with empty input (new byte[0]). +o [CODEC-72] Soundex and RefinedSoundex issues with character arrays. +o [CODEC-71] Base64.isArrayByteBase64() method is inefficient for large byte arrays. +o [CODEC-70] Thread safety and malicious code safety improvements. +o [CODEC-68] isBase64 throws ArrayIndexOutOfBoundsException on some non-BASE64 bytes. +o [CODEC-65] Fix case-insensitive string handling. +o [CODEC-61] Base64.encodeBase64() throws NegativeArraySizeException on large files. +o [CODEC-58] Character set used by Base64 not documented. +o [CODEC-56] RefinedSoundex creates instance before al fields have been initialized. +o [CODEC-51] Test failures in SoundexTest +o [CODEC-10] Using US_ENGLISH in Soundex caused an NullPointerException. +o [CODEC-6] Source tarball spews files all over the place. +o [CODEC-22] Base64.isArrayByteBase64() throws an ArrayIndexOutOfBoundsException for negative octets Changes: -o +o [CODEC-75] Make Base64 URL-safe +o [CODEC-74] Allow for uppercase letters output in Hex.encodeHex(). +o [CODEC-40] Add crypto-compatible BigInteger encoding support to Base64. Have fun! -The commons-codec team Modified: commons/proper/codec/trunk/xdocs/changes.xml URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/xdocs/changes.xml?rev=796924&r1=796923&r2=796924&view=diff ============================================================================== --- commons/proper/codec/trunk/xdocs/changes.xml (original) +++ commons/proper/codec/trunk/xdocs/changes.xml Thu Jul 23 01:51:46 2009 @@ -23,10 +23,10 @@ - + Base64 bug with empty input (new byte[0]). - + Make Base64 URL-safe. @@ -50,7 +50,7 @@ Base64.encodeBase64() throws NegativeArraySizeException on large files. - + Implement Caverphone. @@ -77,6 +77,12 @@ Source tarball spews files all over the place. + + Base64.isArrayByteBase64() throws an ArrayIndexOutOfBoundsException for negative octets + + + Streaming Base64 (Base64InputStream and Base64OutputStream added). +