Skip to content

Commit b4c96fa

Browse files
committed
Fix alignment and update release notes
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1309183 13f79535-47bb-0310-9956-ffa450edef68
1 parent 3976e6d commit b4c96fa

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

RELEASE-NOTES.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ o CODEC-130: Base64InputStream.skip skips underlying stream, not output Thanks
1414
o CODEC-63: Implement NYSIIS Thanks to bayard.
1515

1616
Fixed Bugs:
17+
o CODEC-96: Base64 encode() method is no longer thread-safe, breaking clients using it as a shared BinaryEncoder.
18+
Note: the fix breaks binary compatibility, however the changes are to a class (BaseNCodec) which is
19+
intended for internal use. Thanks to sebb.
1720
o CODEC-138: Complete FilterInputStream interface for BaseNCodecInputStream
1821
o CODEC-136: Use Charset objects when possible, create Charsets for required character encodings
1922
o CODEC-132: BeiderMorseEncoder OOM issues Thanks to rcmuir.
@@ -33,7 +36,7 @@ Time elapsed: 0.004 sec <<< ERROR!
3336
sun.io.MalformedInputException
3437
at sun.io.ByteToCharUTF8.convert(ByteToCharUTF8.java:310)
3538
at sun.nio.cs.StreamDecoder$ConverterSD.convertInto(StreamDecoder.java:316)
36-
at sun.nio.cs.StreamDecoder ConverterSD.implRead(StreamDecoder.java:366)
39+
at sun.nio.cs.StreamDecoder$ConverterSD.implRead(StreamDecoder.java:366)
3740
at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:252)
3841
at java.io.InputStreamReader.read(InputStreamReader.java:212)
3942
at java.io.BufferedReader.fill(BufferedReader.java:157)

src/changes/release-notes.vm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ $release.description.replaceAll(" ", "
2727

2828
## Fix up indentation for multi-line action descriptions
2929
#macro ( indent )
30-
#set($action=$action.replaceAll("(?m)^ +"," "))
30+
#set($action=$action.replaceAll("(?m)^ +"," "))
3131
#end
3232
#if ($release.getActions().size() == 0)
3333
No changes defined in this version.

0 commit comments

Comments
 (0)