Skip to content

Commit 07b8957

Browse files
committed
Prepare for the next release candidate
1 parent 70e6ef8 commit 07b8957

5 files changed

Lines changed: 79 additions & 19 deletions

File tree

CONTRIBUTING.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ Additional Resources
110110
+ [Contributor License Agreement][cla]
111111
+ [General GitHub documentation](https://help.github.com/)
112112
+ [GitHub pull request documentation](https://help.github.com/articles/creating-a-pull-request/)
113-
+ [Apache Commons Twitter Account](https://twitter.com/ApacheCommons)
114113

115114
[cla]:https://www.apache.org/licenses/#clas
116115
[jira]:https://issues.apache.org/jira/browse/CONFIGURATION

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,12 @@ Apache Commons Configuration
4545

4646
[![Java CI](https://github.com/apache/commons-configuration/actions/workflows/maven.yml/badge.svg)](https://github.com/apache/commons-configuration/actions/workflows/maven.yml)
4747
[![Maven Central](https://img.shields.io/maven-central/v/org.apache.commons/commons-configuration2?label=Maven%20Central)](https://search.maven.org/artifact/org.apache.commons/commons-configuration2)
48-
[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-configuration2/2.13.0.svg)](https://javadoc.io/doc/org.apache.commons/commons-configuration2/2.13.0)
48+
[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-configuration2/2.14.0.svg)](https://javadoc.io/doc/org.apache.commons/commons-configuration2/2.14.0)
4949
[![CodeQL](https://github.com/apache/commons-configuration/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/apache/commons-configuration/actions/workflows/codeql-analysis.yml)
5050
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/apache/commons-configuration/badge)](https://api.securityscorecards.dev/projects/github.com/apache/commons-configuration)
5151

52-
Tools to assist in the reading of configuration/preferences files in various formats; requires Java 8.
52+
The Commons Configuration software library provides a generic configuration interface that enables an application to read configuration data from
53+
various sources and requires Java 8.
5354

5455
Documentation
5556
-------------
@@ -68,7 +69,7 @@ Alternatively, you can pull it from the central Maven repositories:
6869
<dependency>
6970
<groupId>org.apache.commons</groupId>
7071
<artifactId>commons-configuration2</artifactId>
71-
<version>2.13.0</version>
72+
<version>2.14.0</version>
7273
</dependency>
7374
```
7475

@@ -111,7 +112,6 @@ Additional Resources
111112
+ [Apache Commons Homepage](https://commons.apache.org/)
112113
+ [Apache Issue Tracker (JIRA)](https://issues.apache.org/jira/browse/CONFIGURATION)
113114
+ [Apache Commons Slack Channel](https://the-asf.slack.com/archives/C60NVB8AD)
114-
+ [Apache Commons Twitter Account](https://twitter.com/ApacheCommons)
115115

116116
Apache Commons Components
117117
-------------------------

RELEASE-NOTES.txt

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,64 @@
1+
Apache Commons Configuration 2.14.0 Release Notes
2+
-------------------------------------------------
3+
4+
The Apache Commons Configuration team is pleased to announce the release of Apache Commons Configuration 2.14.0.
5+
6+
Introducing Apache Commons Configuration
7+
----------------------------------------
8+
9+
The Apache Commons Team is pleased to announce Commons Configuration 2.14.0.
10+
11+
The Commons Configuration software library provides a generic configuration interface that enables an application to read configuration data from
12+
various sources and requires Java 8.
13+
14+
Minor release with new features and updated dependencies; requires Java 8 or above.
15+
16+
Changes in this version include:
17+
18+
New features
19+
------------
20+
21+
* Add XMLConfiguration.read(Element). Thanks to Gary Gregory.
22+
* Add ConfigurationException.ConfigurationException(String, Object...). Thanks to Gary Gregory.
23+
* Add ConfigurationException.ConfigurationException(Throwable, String, Object...). Thanks to Gary Gregory.
24+
* Add ConversionException.ConversionException(String, Object...). Thanks to Gary Gregory.
25+
* Add ConversionException.ConversionException(Throwable, String, Object...). Thanks to Gary Gregory.
26+
* Add ConfigurationRuntimeException.ConfigurationRuntimeException(Throwable, String, Object...). Thanks to Gary Gregory.
27+
28+
Fixed Bugs
29+
----------
30+
31+
* Fix Apache RAT plugin console warnings. Thanks to Gary Gregory.
32+
* FMigrate from deprecated APIs. Thanks to Gary Gregory.
33+
34+
Changes
35+
-------
36+
37+
* Bump org.apache.commons:commons-parent from 92 to 97. Thanks to Gary Gregory.
38+
* Bump org.apache.commons:commons-text from 1.14.0 to 1.15.0. Thanks to Gary Gregory.
39+
* [test] Bump org.apache.commons:commons-pool2 from 2.12.1 to 2.13.1 #474. Thanks to Gary Gregory.
40+
* [test] Bump org.apache.commons:commons-dbcp2 from 2.13.0 to 2.14.0. Thanks to Gary Gregory.
41+
* Bump org.apache.logging.log4j:log4j-core from 2.25.2 to 2.25.4 #626. Thanks to Gary Gregory.
42+
* Bump commons-codec:commons-codec from 1.20.0 to 1.21.0. Thanks to Gary Gregory.
43+
* Bump com.fasterxml.jackson.core:jackson-databind from 2.20.1 to 2.21.2 #632. Thanks to Gary Gregory.
44+
* Bump commons-logging:commons-logging from 1.3.5 to 1.3.6. Thanks to Gary Gregory.
45+
* Bump org.yaml:snakeyaml from 2.5 to 2.6 #631. Thanks to Gary Gregory, Dependabot.
46+
47+
48+
Historical list of changes: https://commons.apache.org/proper/commons-configuration/changes.html
49+
50+
For complete information on Apache Commons Configuration, including instructions on how to submit bug reports,
51+
patches, or suggestions for improvement, see the Apache Apache Commons Configuration website:
52+
53+
https://commons.apache.org/proper/commons-configuration/
54+
55+
Download it from https://commons.apache.org/proper/commons-configuration//download_configuration.cgi
56+
57+
Enjoy!
58+
Apache Commons Team
59+
60+
-----------------------------------------------------------------------------
61+
162
Apache Commons Configuration 2.13.0 Release Notes
263
-------------------------------------------------
364

src/changes/changes.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<author email="dev@commons.apache.org">Apache Commons Community</author>
2424
</properties>
2525
<body>
26-
<release version="2.14.0" date="YYYY-MM-DD" description="Minor release with new features and updated dependencies; requires Java 8 or above.">
26+
<release version="2.14.0" date="2026-04-03" description="Minor release with new features and updated dependencies; requires Java 8 or above.">
2727
<!-- FIX -->
2828
<action type="fix" dev="ggregory" due-to="Gary Gregory">Fix Apache RAT plugin console warnings.</action>
2929
<action type="fix" dev="ggregory" due-to="Gary Gregory">FMigrate from deprecated APIs.</action>

src/site/xdoc/download_configuration.xml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -115,32 +115,32 @@ limitations under the License.
115115
</p>
116116
</subsection>
117117
</section>
118-
<section name="Apache Commons Configuration 2.13.0 (Java 8 or above)">
118+
<section name="Apache Commons Configuration 2.14.0 (Java 8 or above)">
119119
<subsection name="Binaries">
120120
<table>
121121
<tr>
122-
<td><a href="[preferred]/commons/configuration/binaries/commons-configuration2-2.13.0-bin.tar.gz">commons-configuration2-2.13.0-bin.tar.gz</a></td>
123-
<td><a href="https://downloads.apache.org/commons/configuration/binaries/commons-configuration2-2.13.0-bin.tar.gz.sha512">sha512</a></td>
124-
<td><a href="https://downloads.apache.org/commons/configuration/binaries/commons-configuration2-2.13.0-bin.tar.gz.asc">pgp</a></td>
122+
<td><a href="[preferred]/commons/configuration/binaries/commons-configuration2-2.14.0-bin.tar.gz">commons-configuration2-2.14.0-bin.tar.gz</a></td>
123+
<td><a href="https://downloads.apache.org/commons/configuration/binaries/commons-configuration2-2.14.0-bin.tar.gz.sha512">sha512</a></td>
124+
<td><a href="https://downloads.apache.org/commons/configuration/binaries/commons-configuration2-2.14.0-bin.tar.gz.asc">pgp</a></td>
125125
</tr>
126126
<tr>
127-
<td><a href="[preferred]/commons/configuration/binaries/commons-configuration2-2.13.0-bin.zip">commons-configuration2-2.13.0-bin.zip</a></td>
128-
<td><a href="https://downloads.apache.org/commons/configuration/binaries/commons-configuration2-2.13.0-bin.zip.sha512">sha512</a></td>
129-
<td><a href="https://downloads.apache.org/commons/configuration/binaries/commons-configuration2-2.13.0-bin.zip.asc">pgp</a></td>
127+
<td><a href="[preferred]/commons/configuration/binaries/commons-configuration2-2.14.0-bin.zip">commons-configuration2-2.14.0-bin.zip</a></td>
128+
<td><a href="https://downloads.apache.org/commons/configuration/binaries/commons-configuration2-2.14.0-bin.zip.sha512">sha512</a></td>
129+
<td><a href="https://downloads.apache.org/commons/configuration/binaries/commons-configuration2-2.14.0-bin.zip.asc">pgp</a></td>
130130
</tr>
131131
</table>
132132
</subsection>
133133
<subsection name="Source">
134134
<table>
135135
<tr>
136-
<td><a href="[preferred]/commons/configuration/source/commons-configuration2-2.13.0-src.tar.gz">commons-configuration2-2.13.0-src.tar.gz</a></td>
137-
<td><a href="https://downloads.apache.org/commons/configuration/source/commons-configuration2-2.13.0-src.tar.gz.sha512">sha512</a></td>
138-
<td><a href="https://downloads.apache.org/commons/configuration/source/commons-configuration2-2.13.0-src.tar.gz.asc">pgp</a></td>
136+
<td><a href="[preferred]/commons/configuration/source/commons-configuration2-2.14.0-src.tar.gz">commons-configuration2-2.14.0-src.tar.gz</a></td>
137+
<td><a href="https://downloads.apache.org/commons/configuration/source/commons-configuration2-2.14.0-src.tar.gz.sha512">sha512</a></td>
138+
<td><a href="https://downloads.apache.org/commons/configuration/source/commons-configuration2-2.14.0-src.tar.gz.asc">pgp</a></td>
139139
</tr>
140140
<tr>
141-
<td><a href="[preferred]/commons/configuration/source/commons-configuration2-2.13.0-src.zip">commons-configuration2-2.13.0-src.zip</a></td>
142-
<td><a href="https://downloads.apache.org/commons/configuration/source/commons-configuration2-2.13.0-src.zip.sha512">sha512</a></td>
143-
<td><a href="https://downloads.apache.org/commons/configuration/source/commons-configuration2-2.13.0-src.zip.asc">pgp</a></td>
141+
<td><a href="[preferred]/commons/configuration/source/commons-configuration2-2.14.0-src.zip">commons-configuration2-2.14.0-src.zip</a></td>
142+
<td><a href="https://downloads.apache.org/commons/configuration/source/commons-configuration2-2.14.0-src.zip.sha512">sha512</a></td>
143+
<td><a href="https://downloads.apache.org/commons/configuration/source/commons-configuration2-2.14.0-src.zip.asc">pgp</a></td>
144144
</tr>
145145
</table>
146146
</subsection>

0 commit comments

Comments
 (0)