You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ni...@apache.org on 2009/07/23 03:51:46 UTC

svn commit: r796924 - in /commons/proper/codec/trunk: RELEASE-NOTES.txt xdocs/changes.xml

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 @@
 	</properties>
 	<body>
 		<release version="1-4-SNAPSHOT" date="13 July 2009" description="Feature and fix release.">
-			<action dev="ggregory" type="add" issue="CODEC-77" due-to="Julius Davies">
+			<action dev="ggregory" type="fix" issue="CODEC-77" due-to="Julius Davies">
              Base64 bug with empty input (new byte[0]).
              </action>
-			<action dev="ggregory" type="add" issue="CODEC-75" due-to="Julius Davies">
+			<action dev="ggregory" type="fix" issue="CODEC-75" due-to="Julius Davies">
              Make Base64 URL-safe.
              </action>
 			<action dev="ggregory" type="add" issue="CODEC-74">
@@ -50,7 +50,7 @@
 			<action dev="ggregory" type="fix" issue="CODEC-61" due-to="Igor Slepchin">
 			Base64.encodeBase64() throws NegativeArraySizeException on large files.
 			</action>
-			<action dev="bayard" type="fix" issue="CODEC-60">
+			<action dev="bayard" type="add" issue="CODEC-60">
 			Implement Caverphone.
 			</action>
 			<action dev="ggregory" type="fix" issue="CODEC-58" due-to="Julius Davies">
@@ -77,6 +77,12 @@
 			<action dev="tobrien" type="fix" issue="CODEC-6" due-to="David Tonhofer">
 			Source tarball spews files all over the place.
 			</action>
+             <action dev="ggregory" type="fix" issue="CODEC-22" due-to="Piero Ottuzzi">
+                 Base64.isArrayByteBase64() throws an ArrayIndexOutOfBoundsException for negative octets
+             </action>
+             <action dev="jochen" type="add" issue="CODEC-69" due-to="Julius Davies">
+                  Streaming Base64 (Base64InputStream and Base64OutputStream added).
+             </action>
 		</release>
 		<release version="1.3" date="10 July 2004" description="Feature and fix release.">
 			<action dev="ggregory, tobrien" type="add" issue="CODEC-21" due-to="Alex Karasulu">