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 a46ccb4 New interface methods must be default methods to maintain BC new c81bda6 Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-parent.git a46ccb4 is described below commit a46ccb490f105696a541bd307f782b6d6931458e Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Oct 19 07:41:44 2022 -0400 New interface methods must be default methods to maintain BC --- pom.xml | 7 +++++++ src/changes/changes.xml | 1 + 2 files changed, 8 insertions(+) diff --git a/pom.xml b/pom.xml index c8eb849..ecd8527 100644 --- a/pom.xml +++ b/pom.xml @@ -625,6 +625,13 @@ <sourceCompatible>true</sourceCompatible> <semanticVersionLevel>PATCH</semanticVersionLevel> </overrideCompatibilityChangeParameter> + <!-- New interface methods must be default methods to maintain BC --> + <overrideCompatibilityChangeParameter> + <compatibilityChange>METHOD_ADDED_TO_INTERFACE</compatibilityChange> + <binaryCompatible>false</binaryCompatible> + <sourceCompatible>false</sourceCompatible> + <semanticVersionLevel>PATCH</semanticVersionLevel> + </overrideCompatibilityChangeParameter> </overrideCompatibilityChangeParameters> </parameter> </configuration> diff --git a/src/changes/changes.xml b/src/changes/changes.xml index 4d27dd5..b50a7f9 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -63,6 +63,7 @@ The <action> type attribute can be add,update,fix,remove. <release version="55" date="2022-MM-DD" description="Version 55: SBOMs"> <!-- FIX --> <action type="update" dev="ggregory" due-to="Gary Gregory">Make CycloneDX work better with multi-module projects.</action> + <action type="update" dev="ggregory" due-to="Gary Gregory">New interface methods must be default methods to maintain BC.</action> <!-- ADD --> <action type="update" dev="ggregory" due-to="Gary Gregory">Add property commons.javadoc19.java.link.</action> <!-- UPDATE -->