File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ $Id: RELEASE-NOTES-1.2.txt,v 1.1 2003/12/09 23:32:19 ggregory Exp $
2+
3+ Commons Codec Package
4+ Version 1.2
5+ Release Notes
6+
7+
8+ INTRODUCTION:
9+
10+ This document contains the release notes for this version of the Commons
11+ Codec package, and highlights changes since the previous version. Version
12+ 1.2 contains bug fixes for the 1.1 release.
13+
14+ NEW FEATURES:
15+
16+ * URLCodec - Implements the 'www-form-urlencoded' encoding scheme
17+
18+ * DigestUtils - Simple utility class that provides static convenience
19+ methods for calculating md5 and hex digests.
20+
21+
22+ BUG FIXES:
23+
24+ * Fix for Bug 19860: Modified Base64 to remedy non-compliance with RFC
25+ 2045. Non-Base64 characters were not being discarded during the
26+ decode. RFC 2045 explicitly states that all characters outside of the
27+ base64 alphabet are to be ignored.
28+
29+ * Fix for Bug 24360: Hex.decode(Object) throws a ClassCastException
30+ when a String argument is passed in.
31+
32+ * Fix for Bug 24471: Soundex: The HW rule is not applied; hyphens and
33+ apostrophes are not ignored.
34+
35+ * Fix for Bug 24484: Soundex.setMaxLength causes bugs and is not needed.
36+ Calling Soundex.setMaxLength() with a value of 2 or less causes the wrong
37+ answer to be returned. Since the encoding returned by Soundex is always
38+ of length 4 by definition (we do not use the '-' in as a letter-nnn
39+ separator) the need for a maxLength attribute is not needed. Deprecate
40+ the field and accessor methods.
41+
42+ * Fix in Metaphone relating to the handling of the maximum code length.
You can’t perform that action at this time.
0 commit comments