This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-parent.git
The following commit(s) were added to refs/heads/master by this push: new f057616 Prepare for the next release candidate f057616 is described below commit f057616b975c9caa68a7668c61ae95d65160c015 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sun Apr 20 15:53:59 2025 +0000 Prepare for the next release candidate --- README.md | 6 +++--- RELEASE-NOTES.txt | 43 +++++++++++++++++++++++++++++++++++++++++++ src/changes/changes.xml | 2 +- 3 files changed, 47 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 492e9fc..aa7d249 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Apache Commons Parent [](https://github.com/apache/commons-parent/actions/workflows/maven.yml) [](https://search.maven.org/artifact/org.apache.commons/commons-parent) -[](https://javadoc.io/doc/org.apache.commons/commons-parent/81) +[](https://javadoc.io/doc/org.apache.commons/commons-parent/82) [](https://github.com/apache/commons-parent/actions/workflows/codeql-analysis.yml) [](https://api.securityscorecards.dev/projects/github.com/apache/commons-parent) @@ -68,7 +68,7 @@ Alternatively, you can pull it from the central Maven repositories: <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-parent</artifactId> - <version>81</version> + <version>82</version> </dependency> ``` @@ -90,7 +90,7 @@ There are some guidelines which will make applying PRs easier for us: + Create minimal diffs - disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted create a separate PR for this change. + Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running `mvn`. + Before you pushing a PR, run `mvn` (by itself), this runs the default goal, which contains all build checks. -+ To see the code coverage report, regardless of coverage failures, run `mvn clean site -Dcommons.jacoco.haltOnFailure=false` ++ To see the code coverage report, regardless of coverage failures, run `mvn clean site -Dcommons.jacoco.haltOnFailure=false -Pjacoco` If you plan to contribute on a regular basis, please consider filing a [contributor license agreement](https://www.apache.org/licenses/#clas). You can learn more about contributing via GitHub in our [contribution guidelines](CONTRIBUTING.md). diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index d5e2f87..fcb433b 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -1,3 +1,46 @@ +Apache Commons Parent 82 Release Notes +-------------------------------------- + +The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 82. + +The Apache Commons Parent POM provides common settings for all Apache Commons components. + +Version 82: This is a feature and maintenance release. Java 8 or later is required. + +Fixed Bugs +---------- +* Don't fork maven-jxr-plugin as it breaks in multi-module builds. Thanks to Gary Gregory. +* Use maven-bundle-plugin 6 on Java 17+ to generate MANIFEST.MF. Thanks to Gary Gregory. + +Changes +------- +* Bump org.apache.maven.plugins:maven-compiler-plugin from 3.13.0 to 3.14.0 #590. Thanks to Arnout Engelen, Dependabot. +* Bump com.puppycrawl.tools:checkstyle from 10.21.1 to 10.23.0 on Java 11+. Thanks to Gary Gregory. +* Bump commons.pmd-impl.version from 7.9.0 to 7.12.0 #583, #592, #605. Thanks to Gary Gregory, Dependabot. +* Bump org.junit:junit-bom from 5.11.4 to 5.12.2. Thanks to Gary Gregory, Dependabot. +* Bump com.github.spotbugs:spotbugs from 4.9.0 to 4.9.3. SB 4.9.1 fixes https://github.com/spotbugs/spotbugs/issues/3266: Exception analyzing org.apache.commons.io.input.BOMInputStream using detector edu.umd.cs.findbugs.detect.FindReturnRef. Thanks to Gary Gregory. +* Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.6.6 to 4.9.3.0. Thanks to Gary Gregory. +* Bump org.spdx:spdx-maven-plugin from 0.7.4 to 1.0.0, #593. Thanks to Gary Gregory, Dependabot. +* Bump org.apache.maven.plugins:maven-project-info-reports-plugin from 3.8.0 to 3.9.0. Thanks to Gary Gregory. +* Bump org.apache:apache from 33 to 34. Thanks to Gary Gregory. +* Bump org.ow2.asm:asm from 9.7.1 to 9.8 #609. Thanks to Gary Gregory, Dependabot. +* Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.2 to 3.5.3 #610. Thanks to Gary Gregory, Dependabot. +* Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.5.2 to 3.5.3 #606. Thanks to Gary Gregory, Dependabot. +* Bump org.apache.maven.plugins:maven-surefire-report-plugin from 3.5.2 to 3.5.3 #607. Thanks to Gary Gregory, Dependabot. +* Bump org.jacoco:jacoco-maven-plugin from 0.8.12 to 0.8.13 #613. Thanks to Gary Gregory, Dependabot. + + +Historical list of changes: https://commons.apache.org/proper/commons-parent/changes.html + +For complete information on Apache Commons Parent, including instructions on how to submit bug reports, +patches, or suggestions for improvement, see the Apache Commons Parent website: + +https://commons.apache.org/proper/commons-parent/ + +Enjoy! +Apache Commons Team + +----------------------------------------------------------------------------- Apache Commons Parent 81 Release Notes -------------------------------------- diff --git a/src/changes/changes.xml b/src/changes/changes.xml index d182591..33ac74f 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -57,7 +57,7 @@ The <action> type attribute can be add,update,fix,remove. The changes report outputs actions in the order they appear in this file. --> <body> - <release version="82" date="YYYY-MM-DD" description="Version 82: This is a feature and maintenance release. Java 8 or later is required."> + <release version="82" date="2025-04-20" description="Version 82: This is a feature and maintenance release. Java 8 or later is required."> <!-- FIX --> <action type="fix" dev="ggregory" due-to="Gary Gregory">Don't fork maven-jxr-plugin as it breaks in multi-module builds.</action> <action type="fix" dev="ggregory" due-to="Gary Gregory">Use maven-bundle-plugin 6 on Java 17+ to generate MANIFEST.MF.</action>