Skip to content

Commit 4f45360

Browse files
committed
Update release notes for 1.16
1 parent 6776877 commit 4f45360

2 files changed

Lines changed: 22 additions & 266 deletions

File tree

RELEASE-NOTES.txt

Lines changed: 21 additions & 265 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
Apache Commons Codec 1.15 RELEASE NOTES
2-
September 1 2020
1+
Apache Apache Commons Codec 1.16 RELEASE NOTES
32

43
The Apache Commons Codec package contains simple encoder and decoders for
54
various formats such as Base64 and Hexadecimal. In addition to these
@@ -11,277 +10,34 @@ Feature and fix release.
1110
Changes in this version include:
1211

1312
New features:
14-
o CODEC-290: Base16Codec and Base16Input/OutputStream. Thanks to Adam Retter.
15-
o CODEC-291: Hex encode/decode with existing arrays. Thanks to Adam Retter.
13+
o CODEC-296: Add support for Blake3 family of hashes. Thanks to Matt Sicker.
1614

1715
Fixed Bugs:
18-
o CODEC-264: MurmurHash3: Ensure hash128 maintains the sign extension bug.
19-
Thanks to Andy Seaborne.
16+
o Remove duplicated words from Javadocs. Thanks to James Gan.
2017

2118
Changes:
22-
o CODEC-280: Base32/Base64/BCodec: Added strict decoding property to control
23-
handling of trailing bits. Default lenient mode discards them
24-
without error. Strict mode raise an exception.
25-
o CODEC-289: Base32/Base64 Input/OutputStream: Added strict decoding property
26-
to control handling of trailing bits. Default lenient mode
27-
discards them without error. Strict mode raise an exception.
28-
o Update tests from JUnit 4.12 to 4.13. Thanks to Gary Gregory.
29-
o Update actions/checkout from v1 to v2.3.2 #50, #56.
30-
Thanks to Dependabot.
31-
o Update actions/setup-java from v1.4.0 to v1.4.1 #57.
32-
Thanks to Dependabot.
33-
34-
35-
For complete information on Apache Commons Codec, including instructions on how
36-
to submit bug reports, patches, or suggestions for improvement, see the
37-
Apache Commons Codec website:
38-
39-
https://commons.apache.org/proper/commons-codec/
40-
41-
Download page: https://commons.apache.org/proper/commons-codec/download_codec.cgi
42-
43-
-------------------------------------------------------------------------------
44-
45-
Apache Commons Codec 1.14 RELEASE NOTES
46-
December 30 2019
47-
48-
The Apache Commons Codec package contains simple encoder and decoders for
49-
various formats such as Base64 and Hexadecimal. In addition to these
50-
widely used encoders and decoders, the codec package also maintains a
51-
collection of phonetic encoding utilities.
52-
53-
Feature and fix release.
54-
55-
Changes in this version include:
56-
57-
New features:
58-
o CODEC-264: Add MurmurHash3.hash128x64 methods to fix sign extension error during seeding in hash128 methods. Thanks to Claude Warren.
59-
o CODEC-267: Add MurmurHash3.hash32x86 methods and IncrementalHash32x86 to fix sign extension error in hash32 methods. Thanks to Claude Warren.
60-
o CODEC-272: Add RandomAccessFile digest methods #31. Thanks to Behrang, Alex Herbert, Gary Gregory.
61-
o CODEC-273: Add Path APIs to org.apache.commons.codec.digest.DigestUtils similar to File APIs. Thanks to Gary Gregory.
62-
o CODEC-274: Add SHA-512/224 and SHA-512/256 to DigestUtils for Java 9 and up. Thanks to Gary Gregory.
63-
o CODEC-275: Add missing note in javadoc when sign extension error is present #34. Thanks to Claude Warren.
64-
65-
Fixed Bugs:
66-
o CODEC-261: Hex: Allow encoding read-only ByteBuffer.
67-
o CODEC-259: Hex: Only use an available ByteBuffer backing array if the length equals the remaining byte count.
68-
o CODEC-265: BaseNCodec to expand buffer using overflow conscious code.
69-
o CODEC-270: Base32/64: Fixed decoding check that all the final trailing bits to discard are zero.
70-
o CODEC-269: Allow repeat calls to MurmurHash3.IncrementalHash32.end() to generate the same value.
71-
o CODEC-276: Reliance on default encoding in MurmurHash2 and MurmurHash3. Thanks to Gary Gregory.
72-
73-
Changes:
74-
o CODEC-268: MurmurHash3: Deprecate hash64 methods and hash methods accepting a String that use the default encoding.
75-
o CODEC-277: Don't reload standard Charsets in org.apache.commons.codec.Charsets. Thanks to Gary Gregory.
76-
o CODEC-278: Deprecate Charset constants in org.apache.commons.codec.Charsets in favor of java.nio.charset.StandardCharsets. Thanks to Gary Gregory.
19+
o CODEC-295: Minor improvements #67. Thanks to Arturo Bernal.
20+
o CODEC-301: Simplify assertion #84. Thanks to Alexander Pinske, Alex Herbert.
21+
o CODEC-300: Simplify assertion #84. Thanks to Arturo Bernal.
22+
o CODEC-298: Use Standard Charset object #82 Thanks to Arturo Bernal.
23+
o Bump actions/setup-java from v1.4.1 to v2 #60, #62. Thanks to Dependabot, Gary Gregory.
24+
o Bump actions/checkout from v2.3.2 to v2.4.0 #65, #98. Thanks to Dependabot.
25+
o Bump actions/cache from v2 to v2.1.7 #75, #99. Thanks to Dependabot.
26+
o Bump junit from 4.13.1 to 4.13.2 #76. Thanks to Dependabot.
27+
o Bump Java 7 to 8. Thanks to Gary Gregory.
28+
o Bump japicmp-maven-plugin from 0.14.3 to 0.15.3. Thanks to Gary Gregory.
29+
o Bump jacoco-maven-plugin from 0.8.5 to 0.9.7 (Fixes Java 15 builds). Thanks to Gary Gregory.
30+
o Bump maven-surefire-plugin from 2.22.2 to 3.0.0-M5. Thanks to Gary Gregory.
31+
o Bump maven-javadoc-plugin from 3.2.0 to 3.3.0. Thanks to Gary Gregory.
32+
o Bump animal-sniffer-maven-plugin from 1.19 to 1.20. Thanks to Gary Gregory.
33+
o Bump maven-pmd-plugin from 3.13.0 to 3.15.0. Thanks to Gary Gregory.
34+
o Bump maven-checkstyle-plugin from 2.17 to 3.1.2. Thanks to Gary Gregory.
35+
o Bump checkstyle from 8.45.1 to 9.2.1 #97, #100, #101. Thanks to Dependabot.
7736

7837

7938
For complete information on Apache Commons Codec, including instructions on how to submit bug reports,
80-
patches, or suggestions for improvement, see the Apache Commons Codec website:
39+
patches, or suggestions for improvement, see the Apache Apache Commons Codec website:
8140

8241
https://commons.apache.org/proper/commons-codec/
8342

8443
Download page: https://commons.apache.org/proper/commons-codec/download_codec.cgi
85-
86-
-------------------------------------------------------------------------------
87-
88-
Apache Commons Codec 1.13 RELEASE NOTES
89-
90-
The Apache Commons Codec package contains simple encoder and decoders for
91-
various formats such as Base64 and Hexadecimal. In addition to these
92-
widely used encoders and decoders, the codec package also maintains a
93-
collection of phonetic encoding utilities.
94-
95-
Feature and fix release.
96-
97-
Changes in this version include:
98-
99-
New features:
100-
o CODEC-236: MurmurHash2 for 32-bit or 64-bit value. Thanks to Viliam Holub.
101-
o CODEC-236: MurmurHash3 for 32-bit or 128-bit value. Thanks to Austin Appleby.
102-
103-
Fixed Bugs:
104-
o CODEC-255: ColognePhonetic handles x incorrectly Thanks to Holger Grote.
105-
o CODEC-254: ColognePhonetic does not treat the letter H correctly Thanks to Holger Grote.
106-
o CODEC-134: Reject any decode request for a value that is impossible to encode to for Base32/Base64 rather than blindly decoding.
107-
108-
Changes:
109-
o CODEC-236: Broken direct java.nio.ByteBuffer support in org.apache.commons.codec.binary.Hex. Thanks to Tomas Shestakov, Gary Gregory.
110-
111-
112-
For complete information on Apache Commons Codec, including instructions on how to submit bug reports,
113-
patches, or suggestions for improvement, see the Apache Commons Codec website:
114-
115-
Visit https://commons.apache.org/proper/commons-codec/
116-
Download from https://commons.apache.org/proper/commons-codec/download_codec.cgi
117-
118-
-------------------------------------------------------------------------------
119-
120-
Apache Commons Codec 1.12 RELEASE NOTES
121-
122-
The Apache Commons Codec team is pleased to announce the commons-codec-1.12 release!
123-
124-
The Apache Commons Codec package contains simple encoder and decoders for
125-
various formats such as Base64 and Hexadecimal. In addition to these
126-
widely used encoders and decoders, the codec package also maintains a
127-
collection of phonetic encoding utilities.
128-
129-
Changes in this version include:
130-
131-
New features:
132-
o Add Percent-Encoding Codec (described in RFC3986 and RFC7578) Issue: CODEC-240. Thanks to Ioannis Sermetziadis.
133-
o Add SHA-3 methods in DigestUtils Issue: CODEC-251. Thanks to Gary Gregory.
134-
135-
Fixed Bugs:
136-
o B64 salt generator: Random -> ThreadLocalRandom Issue: CODEC-252.
137-
o Wrong value calculated by Cologne Phonetic if a special character is placed between equal letters Issue: CODEC-250. Thanks to Alex Volodko.
138-
o ColognePhoneticTest.testIsEncodeEquals missing assertions Issue: CODEC-246. Thanks to Oscar Luis Vera Pérez.
139-
140-
Changes:
141-
o Update from Java 7 to Java 8 Issue: CODEC-253.
142-
143-
144-
Have fun!
145-
-Apache Commons Codec team
146-
147-
148-
-------------------------------------------------------------------------------
149-
150-
Apache Commons Codec 1.11 RELEASE NOTES
151-
152-
The Apache Commons Codec team is pleased to announce the commons-codec-1.11 release!
153-
154-
The Apache Commons Codec package contains simple encoder and decoders for
155-
various formats such as Base64 and Hexadecimal. In addition to these
156-
widely used encoders and decoders, the codec package also maintains a
157-
collection of phonetic encoding utilities.
158-
159-
Changes in this version include:
160-
161-
New features:
162-
o Add support for XXHash32 Issue: CODEC-241.
163-
o Fluent interface for DigestUtils Issue: CODEC-220.
164-
o Fluent interface for HmacUtils Issue: CODEC-222.
165-
o Add support for CRC32-C Issue: CODEC-171. Thanks to Brett Okken.
166-
o Add HmacAlgorithms.HMAC_SHA_224 (Java 8 only) Issue: CODEC-217. Thanks to Gary Gregory.
167-
o Support JEP 287: SHA-3 Hash Algorithms Issue: CODEC-213. Thanks to Gary Gregory.
168-
o Create a minimal Digest command line utility: org.apache.commons.codec.digest.Digest Issue: CODEC-212. Thanks to Gary Gregory.
169-
o Add DigestUtils.getDigest(String, MessageDigest) Issue: CODEC-210. Thanks to Gary Gregory.
170-
o Make some DigestUtils APIs public Issue: CODEC-208. Thanks to Gary Gregory.
171-
o Add java.io.File APIs to MessageDigestAlgorithm Issue: CODEC-206. Thanks to Gary Gregory.
172-
o BaseNCodecOutputStream only supports writing EOF on close() Issue: CODEC-183. Thanks to Steven Wurster.
173-
o Support SHA-224 in DigestUtils on Java 8 Issue: CODEC-195. Thanks to Gary Gregory.
174-
o Support java.nio.ByteBuffer in org.apache.commons.codec.binary.Hex Issue: CODEC-194. Thanks to Gary Gregory.
175-
o Support java.nio.ByteBuffer in DigestUtils Issue: CODEC-193. Thanks to Michael Donaghy.
176-
o Add BaseNCodec.encode(byte[], int, int) input with offset and length parameters for Base64 and Base32. Issue: CODEC-202. Thanks to Oleg Kalnichevski.
177-
o Add convenience method decodeHex(String). Issue: CODEC-203. Thanks to Gary Gregory.
178-
o Add faster CRC32 implementation. Issue: CODEC-205. Thanks to Gary Gregory.
179-
o Add convenience API org.apache.commons.codec.binary.Hex.encodeHexString(byte[]|ByteBuffer, boolean). Issue: CODEC-224. Thanks to Gary Gregory.
180-
o Add Automatic-Module-Name manifest entry for Java 9. Issue: CODEC-242. Thanks to Gary Gregory.
181-
182-
Fixed Bugs:
183-
o Base64.encodeBase64String could better use newStringUsAscii (ditto encodeBase64URLSafeString) Issue: CODEC-145. Thanks to Jesse Glick.
184-
o BaseNCodec: encodeToString and encodeAsString methods are identical Issue: CODEC-144.
185-
o URLCodec is neither immutable nor threadsafe Issue: CODEC-232.
186-
o StringUtils.equals(CharSequence cs1, CharSequence cs2) can fail with String Index OBE Issue: CODEC-231.
187-
o URLCodec.WWW_FORM_URL should be private Issue: CODEC-230.
188-
o StringUtils.newStringxxx(null) should return null, not NPE Issue: CODEC-229.
189-
o Fix minor resource leaks Issue: CODEC-225. Thanks to Svetlin Zarev.
190-
o Base32.HEX_DECODE_TABLE contains the wrong value 32 Issue: CODEC-200. Thanks to Luciano Vernaschi.
191-
o Charsets Javadoc breaks build when using Java 8 Issue: CODEC-207. Thanks to Gary Gregory.
192-
o Bug in HW rule in Soundex Issue: CODEC-199. Thanks to Yossi Tamari.
193-
o Javadoc for SHA-224 DigestUtils methods should mention Java 1.8.0 restriction instead of 1.4.0. Issue: CODEC-209. Thanks to Gary Gregory.
194-
o Don't deprecate Charsets Charset constants in favor of Java 7's java.nio.charset.StandardCharsets Issue: CODEC-219. Thanks to Gary Gregory, Sebb.
195-
196-
Changes:
197-
o Base32.decode should support lowercase letters Issue: CODEC-234. Thanks to Christopher Schultz, Sebb.
198-
o Soundex should support more algorithm variants Issue: CODEC-233. Thanks to Yossi Tamari.
199-
o HmacUtils.updateHmac calls reset() unnecessarily Issue: CODEC-221.
200-
201-
Removed:
202-
o Drop obsolete Ant build Issue: CODEC-223.
203-
204-
Have fun!
205-
-Apache Commons Codec team
206-
207-
208-
-------------------------------------------------------------------------------
209-
210-
Apache Commons Codec 1.10 RELEASE NOTES
211-
212-
The Apache Commons Codec team is pleased to announce the commons-codec-1.10 release!
213-
214-
The Apache Commons Codec package contains simple encoder and decoders for
215-
various formats such as Base64 and Hexadecimal. In addition to these
216-
widely used encoders and decoders, the codec package also maintains a
217-
collection of phonetic encoding utilities.
218-
219-
This feature and fix release requires a minimum of Java 1.6, same as 1.9.
220-
221-
Changes in this version include:
222-
223-
New features:
224-
225-
o Add Daitch-Mokotoff Soundex
226-
Issue: CODEC-192. Thanks to Thomas Neidhart.
227-
o QuotedPrintableCodec does not support soft line break per the 'quoted-printable' example on Wikipedia
228-
Issue: CODEC-121. Thanks to Thomas Neidhart, Java John.
229-
o Make possible to provide padding byte to BaseNCodec in constructor
230-
Issue: CODEC-181. Thanks to Ivan Martinez-Ortiz.
231-
232-
Fixed Bugs:
233-
234-
o Added clarification to Javadoc of Base64 concerning the use of the urlSafe parameter
235-
Issue: CODEC-185. Thanks to Sean Busbey.
236-
o Added clarification to the Javadoc of Base[32|64]OutputStream that it is mandatory to call close()
237-
Issue: CODEC-191. Thanks to Igor Savin.
238-
o Add support for HMAC Message Authentication Code (MAC) digests
239-
Issue: CODEC-188. Thanks to Hendrik Saly.
240-
o Beider Morse Phonetic Matching producing incorrect tokens
241-
Issue: CODEC-187. Thanks to Michael Tobias, Thomas Neidhart.
242-
o NullPointerException in DoubleMetaPhone.isDoubleMetaphoneEqual when using empty strings
243-
Issue: CODEC-184. Thanks to Cyrille Artho.
244-
o Fix Javadoc 1.8.0 errors
245-
Issue: CODEC-180. Thanks to Ville Skyttä.
246-
o Fix Java 8 build Javadoc errors
247-
Issue: CODEC-189.
248-
249-
Changes:
250-
251-
o Deprecate Charsets Charset constants in favor of Java 7's java.nio.charset.StandardCharsets
252-
Issue: CODEC-178.
253-
o Update from commons-parent 34 to 35
254-
Issue: CODEC-190.
255-
256-
257-
Have fun!
258-
-Apache Commons Codec team
259-
260-
261-
-------------------------------------------------------------------------------
262-
263-
Apache Commons Codec 1.9 RELEASE NOTES
264-
265-
The codec package contains simple encoder and decoders for
266-
various formats such as Base64 and Hexadecimal. In addition to these
267-
widely used encoders and decoders, the codec package also maintains a
268-
collection of phonetic encoding utilities.
269-
270-
This feature and fix release requires a minimum of Java 1.6, same as 1.8.
271-
272-
Changes in this version include:
273-
274-
Performance:
275-
o CODEC-174: Improve performance of Beider Morse encoder. Thanks to Thomas Champagne.
276-
277-
Fixed Bugs:
278-
o CODEC-175: Beider Morse does not close Scanners used to read config files.
279-
o CODEC-172: Base32 decode table has spurious value. Thanks to Matt Bishop.
280-
o CODEC-170: Link broken in Metaphone Javadoc. Thanks to Ron Wheeler, Henri Yandell.
281-
o CODEC-176: Spelling fixes in Javadoc and comments. Thanks to Ville Skyttä.
282-
283-
284-
For complete information on Apache Commons Codec, including instructions on how to submit bug reports,
285-
patches, or suggestions for improvement, see the Apache Commons Codec website:
286-
287-
https://commons.apache.org/proper/commons-codec/

src/changes/changes.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The <action> type attribute can be add,update,fix,remove.
4242
</properties>
4343
<body>
4444

45-
<release version="1.16" date="TBD" description="Feature and fix release.">
45+
<release version="1.16" date="2022-01-21" description="Feature and fix release.">
4646
<!-- FIX -->
4747
<action issue="CODEC-295" dev="ggregory" type="update" due-to="Arturo Bernal">Minor improvements #67.</action>
4848
<action dev="aherbert" type="fix" due-to="James Gan">Remove duplicated words from Javadocs.</action>

0 commit comments

Comments
 (0)