Skip to content

Commit 9a59c1c

Browse files
committed
Prepare for the next release candidate
1 parent 5f0cfd4 commit 9a59c1c

File tree

4 files changed

+64
-16
lines changed

4 files changed

+64
-16
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Apache Commons Codec
4646
[![Java CI](https://github.com/apache/commons-codec/actions/workflows/maven.yml/badge.svg)](https://github.com/apache/commons-codec/actions/workflows/maven.yml)
4747
[![Coverage Status](https://codecov.io/gh/apache/commons-codec/branch/master/graph/badge.svg)](https://app.codecov.io/gh/apache/commons-codec)
4848
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/commons-codec/commons-codec/badge.svg?gav=true)](https://maven-badges.herokuapp.com/maven-central/commons-codec/commons-codec/?gav=true)
49-
[![Javadocs](https://javadoc.io/badge/commons-codec/commons-codec/1.16.1.svg)](https://javadoc.io/doc/commons-codec/commons-codec/1.16.1)
49+
[![Javadocs](https://javadoc.io/badge/commons-codec/commons-codec/1.17.0.svg)](https://javadoc.io/doc/commons-codec/commons-codec/1.17.0)
5050
[![CodeQL](https://github.com/apache/commons-codec/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/apache/commons-codec/actions/workflows/codeql-analysis.yml)
5151
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/apache/commons-codec/badge)](https://api.securityscorecards.dev/projects/github.com/apache/commons-codec)
5252

@@ -72,7 +72,7 @@ Alternatively, you can pull it from the central Maven repositories:
7272
<dependency>
7373
<groupId>commons-codec</groupId>
7474
<artifactId>commons-codec</artifactId>
75-
<version>1.16.1</version>
75+
<version>1.17.0</version>
7676
</dependency>
7777
```
7878

RELEASE-NOTES.txt

+48
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,51 @@
1+
Apache Commons Codec 1.17.0 RELEASE NOTES
2+
-----------------------------------------
3+
4+
The Apache Commons Codec component contains encoder and decoders for
5+
various formats such as Base16, Base32, Base64, digest, and Hexadecimal. In addition to these
6+
widely used encoders and decoders, the codec package also maintains a
7+
collection of phonetic encoding utilities.
8+
9+
Feature and fix release. Requires a minimum of Java 8.
10+
11+
12+
New features
13+
------------
14+
15+
* Add override org.apache.commons.codec.language.bm.Rule.PhonemeExpr.size(). Thanks to Gary Gregory.
16+
* Add support for Base64 custom alphabets #266. Thanks to Chris Kocel, Gary Gregory.
17+
* Add Base64.Builder (allows custom alphabets). Thanks to Gary Gregory.
18+
* Add Base32.Builder (allows custom alphabets). Thanks to Gary Gregory.
19+
* Add Base64 support for a custom padding byte (like Base32). Thanks to Gary Gregory.
20+
21+
Fixed Bugs
22+
----------
23+
24+
* CODEC-320: Wrong output of DoubleMetaphone in 1.16.1. Thanks to Martin Frydl, Gary Gregory.
25+
* Optimize memory allocation in PhoneticEngine. Thanks to Gary Gregory.
26+
* BCodec and QCodec encode() methods throw UnsupportedCharsetException instead of EncoderException. Thanks to Gary Gregory.
27+
* Set Javadoc link to latest Java API LTS version. Thanks to Gary Gregory.
28+
* Base32 constructor fails-fast with a NullPointerException if the custom alphabet array is null. Thanks to Gary Gregory.
29+
* Base32 constructor makes a defensive copy of the line separator array. Thanks to Gary Gregory.
30+
* Base64 constructor makes a defensive copy of the line separator array. Thanks to Gary Gregory.
31+
* Base64 constructor makes a defensive copy of a custom alphabet array. Thanks to Gary Gregory.
32+
33+
Changes
34+
-------
35+
36+
* Bump org.apache.commons:commons-parent from 66 to 69 #250, #261. Thanks to Dependabot, Gary Gregory.
37+
* Bump commons-io:commons-io from 2.15.1 to 2.16.1 #258, #265. Thanks to Dependabot, Gary Gregory.
38+
39+
40+
For complete information on Apache Commons Codec, including instructions on how to submit bug reports,
41+
patches, or suggestions for improvement, see the Apache Commons Codec website:
42+
43+
https://commons.apache.org/proper/commons-codec/
44+
45+
Download page: https://commons.apache.org/proper/commons-codec/download_codec.cgi
46+
47+
---------------------------------------------------------------------------------
48+
149
Apache Commons Codec 1.16.1 RELEASE NOTES
250
-----------------------------------------
351

src/changes/changes.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The <action> type attribute can be add,update,fix,remove.
4343
<author>Apache Commons Developers</author>
4444
</properties>
4545
<body>
46-
<release version="1.17.0" date="YYYY-MM-DD" description="Feature and fix release. Requires a minimum of Java 8.">
46+
<release version="1.17.0" date="2024-04-20" description="Feature and fix release. Requires a minimum of Java 8.">
4747
<!-- FIX -->
4848
<action type="fix" issue="CODEC-320" dev="ggregory" due-to="Martin Frydl, Gary Gregory">Wrong output of DoubleMetaphone in 1.16.1.</action>
4949
<action type="fix" dev="ggregory" due-to="Gary Gregory">Optimize memory allocation in PhoneticEngine.</action>

src/site/xdoc/download_codec.xml

+13-13
Original file line numberDiff line numberDiff line change
@@ -113,32 +113,32 @@ limitations under the License.
113113
</p>
114114
</subsection>
115115
</section>
116-
<section name="Apache Commons Codec 1.16.1 ">
116+
<section name="Apache Commons Codec 1.17.0 ">
117117
<subsection name="Binaries">
118118
<table>
119119
<tr>
120-
<td><a href="[preferred]/commons/codec/binaries/commons-codec-1.16.1-bin.tar.gz">commons-codec-1.16.1-bin.tar.gz</a></td>
121-
<td><a href="https://downloads.apache.org/commons/codec/binaries/commons-codec-1.16.1-bin.tar.gz.sha512">sha512</a></td>
122-
<td><a href="https://downloads.apache.org/commons/codec/binaries/commons-codec-1.16.1-bin.tar.gz.asc">pgp</a></td>
120+
<td><a href="[preferred]/commons/codec/binaries/commons-codec-1.17.0-bin.tar.gz">commons-codec-1.17.0-bin.tar.gz</a></td>
121+
<td><a href="https://downloads.apache.org/commons/codec/binaries/commons-codec-1.17.0-bin.tar.gz.sha512">sha512</a></td>
122+
<td><a href="https://downloads.apache.org/commons/codec/binaries/commons-codec-1.17.0-bin.tar.gz.asc">pgp</a></td>
123123
</tr>
124124
<tr>
125-
<td><a href="[preferred]/commons/codec/binaries/commons-codec-1.16.1-bin.zip">commons-codec-1.16.1-bin.zip</a></td>
126-
<td><a href="https://downloads.apache.org/commons/codec/binaries/commons-codec-1.16.1-bin.zip.sha512">sha512</a></td>
127-
<td><a href="https://downloads.apache.org/commons/codec/binaries/commons-codec-1.16.1-bin.zip.asc">pgp</a></td>
125+
<td><a href="[preferred]/commons/codec/binaries/commons-codec-1.17.0-bin.zip">commons-codec-1.17.0-bin.zip</a></td>
126+
<td><a href="https://downloads.apache.org/commons/codec/binaries/commons-codec-1.17.0-bin.zip.sha512">sha512</a></td>
127+
<td><a href="https://downloads.apache.org/commons/codec/binaries/commons-codec-1.17.0-bin.zip.asc">pgp</a></td>
128128
</tr>
129129
</table>
130130
</subsection>
131131
<subsection name="Source">
132132
<table>
133133
<tr>
134-
<td><a href="[preferred]/commons/codec/source/commons-codec-1.16.1-src.tar.gz">commons-codec-1.16.1-src.tar.gz</a></td>
135-
<td><a href="https://downloads.apache.org/commons/codec/source/commons-codec-1.16.1-src.tar.gz.sha512">sha512</a></td>
136-
<td><a href="https://downloads.apache.org/commons/codec/source/commons-codec-1.16.1-src.tar.gz.asc">pgp</a></td>
134+
<td><a href="[preferred]/commons/codec/source/commons-codec-1.17.0-src.tar.gz">commons-codec-1.17.0-src.tar.gz</a></td>
135+
<td><a href="https://downloads.apache.org/commons/codec/source/commons-codec-1.17.0-src.tar.gz.sha512">sha512</a></td>
136+
<td><a href="https://downloads.apache.org/commons/codec/source/commons-codec-1.17.0-src.tar.gz.asc">pgp</a></td>
137137
</tr>
138138
<tr>
139-
<td><a href="[preferred]/commons/codec/source/commons-codec-1.16.1-src.zip">commons-codec-1.16.1-src.zip</a></td>
140-
<td><a href="https://downloads.apache.org/commons/codec/source/commons-codec-1.16.1-src.zip.sha512">sha512</a></td>
141-
<td><a href="https://downloads.apache.org/commons/codec/source/commons-codec-1.16.1-src.zip.asc">pgp</a></td>
139+
<td><a href="[preferred]/commons/codec/source/commons-codec-1.17.0-src.zip">commons-codec-1.17.0-src.zip</a></td>
140+
<td><a href="https://downloads.apache.org/commons/codec/source/commons-codec-1.17.0-src.zip.sha512">sha512</a></td>
141+
<td><a href="https://downloads.apache.org/commons/codec/source/commons-codec-1.17.0-src.zip.asc">pgp</a></td>
142142
</tr>
143143
</table>
144144
</subsection>

0 commit comments

Comments
 (0)