This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch dependabot/maven/org.junit-junit-bom-6.0.0
in repository https://gitbox.apache.org/repos/asf/maven.git


 discard bfa4ee2c04 Bump org.junit:junit-bom from 5.13.4 to 6.0.0
     add 7a40d3c01b Move documentation of Maven Mixins to site
     add 93567fe241 Bump ch.qos.logback:logback-classic from 1.5.18 to 1.5.19 
(#11190)
     add 60fdc47ab4 Bump org.codehaus.mojo:exec-maven-plugin from 3.5.1 to 
3.6.1 (#11202)
     add f49b95e806 Fix #10939: DefaultModelXmlFactory: make location tracking 
opt-in—disabled by def… (#11092) (#11198)
     add f032cfe067 Enable the search for `module-info.class` file in the 
`META-INF/versions/` sub-directories of a JAR file. (#11153)
     add d4b7e42b1c Bump asmVersion from 9.8 to 9.9 (#11201)
     add 210dbdcb7e Allow repository URL interpolation with improved validation 
(#11140)
     add c46df0da30 Improve mvn usage message (#11211)
     add 416b5b9318 Update to Mimir 0.9.4 (#11218)
     add 9bc69624fc Rename cache keys (#11222)
     add fc44a97d26 Add dump on OOM (#11223)
     add 4b7a1df191 Fix StackOverflowError in parent resolution with 
relativePath cycles (#11106)
     add 02de10f88e Fix CI-friendly version processing with profile properties 
(fix #11196)
     add 3660924fc2 Add phase upgrade support for Maven 4.1.0 model upgrades
     add 1376aa9ea4 Use Maven API constants for phase names instead of 
hardcoded strings
     add 49d7f016f2 Fix GH-11199: Maven 4.0.0-rc-4 ignores defaultLogLevel
     add d4336c6475 Fix dependency groupId inference for Maven 4.1.0 model 
version (#11228)
     add c81df9d482 Fix repository ID interpolation in Maven 4 (#11224)
     add c44c8de116 Bump com.github.siom79.japicmp:japicmp-maven-plugin (#11207)
     add f6343606de Introduce RepositoryAwareRequest interface to consolidate 
repository handling (#11238)
     add 2afe3864d5 Bump org.junit:junit-bom from 5.13.4 to 6.0.0

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (bfa4ee2c04)
            \
             N -- N -- N   
refs/heads/dependabot/maven/org.junit-junit-bom-6.0.0 (2afe3864d5)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/maven.yml                        |  25 +-
 .../api/services/ArtifactResolverRequest.java      |   7 +-
 .../api/services/DependencyResolverRequest.java    |  54 ++-
 .../maven/api/services/ModelBuilderRequest.java    |   7 +-
 .../maven/api/services/ProjectBuilderRequest.java  |   4 +-
 .../maven/api/services/RepositoryAwareRequest.java | 117 +++++
 .../api/services/VersionRangeResolverRequest.java  |   7 +-
 .../maven/api/services/VersionResolverRequest.java |   7 +-
 .../maven/cling/invoker/CommonsCliOptions.java     |   2 +-
 .../apache/maven/cling/invoker/LookupInvoker.java  |  10 +-
 .../mvnup/goals/CompatibilityFixStrategy.java      |  22 +-
 .../invoker/mvnup/goals/ModelUpgradeStrategy.java  | 122 +++++
 .../invoker/mvnup/goals/UpgradeConstants.java      |   2 +
 .../logging/impl/MavenSimpleConfiguration.java     |   4 +-
 .../cling/invoker/LookupInvokerLoggingTest.java    | 173 +++++++
 .../mvnup/goals/ModelUpgradeStrategyTest.java      | 461 ++++++++++++++++++
 .../maven/project/DefaultProjectBuilder.java       |  48 +-
 .../maven/project/RepositoryLeakageTest.java       | 214 +++++++++
 .../org/apache/maven/impl/AbstractSession.java     |   6 +
 .../apache/maven/impl/DefaultArtifactResolver.java |   2 +-
 .../maven/impl/DefaultDependencyResolver.java      |  40 +-
 .../impl/DefaultDependencyResolverResult.java      |   7 +-
 .../apache/maven/impl/DefaultModelXmlFactory.java  |  22 +-
 .../maven/impl/DefaultVersionRangeResolver.java    |   2 +-
 .../apache/maven/impl/DefaultVersionResolver.java  |   2 +-
 .../org/apache/maven/impl/InternalSession.java     |   2 +
 .../org/apache/maven/impl/PathModularization.java  |   7 +-
 .../apache/maven/impl/PathModularizationCache.java |  18 +-
 .../maven/impl/model/DefaultModelBuilder.java      | 408 ++++++++++++----
 .../maven/impl/model/DefaultModelValidator.java    | 144 +++---
 .../maven/impl/DefaultModelXmlFactoryTest.java     |  62 +++
 .../maven/impl/model/DefaultModelBuilderTest.java  | 134 ++++++
 .../impl/model/DefaultModelValidatorTest.java      |  37 +-
 .../maven/impl/model/ParentCycleDetectionTest.java | 276 +++++++++++
 ...s-grand-parent.xml => ci-friendly-profiles.xml} |  27 +-
 .../poms/factory/directory-properties-profiles.xml |  53 +++
 .../factory/missing-dependency-groupId-41-app.xml  |  24 +-
 .../missing-dependency-groupId-41-service.xml      |  11 +-
 .../poms/factory/missing-dependency-groupId-41.xml |  16 +-
 ...rand-parent.xml => repository-url-profiles.xml} |  38 +-
 .../repository-with-uninterpolated-id.xml          |  31 +-
 .../repository-with-unsupported-expression.xml     |  34 +-
 .../maven/slf4j/SimpleLoggerConfigurationTest.java | 128 +++++
 ...ava => MavenITgh11140RepoDmUnresolvedTest.java} |  26 +-
 .../it/MavenITgh11140RepoInterpolationTest.java    |  90 ++++
 .../it/MavenITgh11196CIFriendlyProfilesTest.java   |  84 ++++
 ...Tmng11009StackOverflowParentResolutionTest.java |  71 +++
 .../pom.xml                                        |  30 +-
 .../resources/gh-11140-repo-interpolation/pom.xml  |  51 ++
 .../pom.xml                                        |  56 ++-
 .../parent/pom.xml                                 |  13 +-
 .../pom.xml                                        |  21 +-
 pom.xml                                            |  10 +-
 src/site/markdown/mixins.md                        | 527 ---------------------
 src/site/site.xml                                  |   1 -
 55 files changed, 2905 insertions(+), 892 deletions(-)
 create mode 100644 
api/maven-api-core/src/main/java/org/apache/maven/api/services/RepositoryAwareRequest.java
 create mode 100644 
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/LookupInvokerLoggingTest.java
 create mode 100644 
impl/maven-core/src/test/java/org/apache/maven/project/RepositoryLeakageTest.java
 create mode 100644 
impl/maven-impl/src/test/java/org/apache/maven/impl/model/ParentCycleDetectionTest.java
 copy 
impl/maven-impl/src/test/resources/poms/factory/{props-and-profiles-grand-parent.xml
 => ci-friendly-profiles.xml} (60%)
 create mode 100644 
impl/maven-impl/src/test/resources/poms/factory/directory-properties-profiles.xml
 copy 
its/core-it-suite/src/test/resources/mng-6957-buildconsumer/simple-parent/simple-weather/pom.xml
 => 
impl/maven-impl/src/test/resources/poms/factory/missing-dependency-groupId-41-app.xml
 (74%)
 copy 
its/core-it-suite/src/test/resources/mng-6957-buildconsumer/simple-parent/simple-testutils/pom.xml
 => 
impl/maven-impl/src/test/resources/poms/factory/missing-dependency-groupId-41-service.xml
 (82%)
 copy 
its/core-it-suite/src/test/resources/mng-6957-buildconsumer/expected/parent-build.pom
 => 
impl/maven-impl/src/test/resources/poms/factory/missing-dependency-groupId-41.xml
 (80%)
 copy 
impl/maven-impl/src/test/resources/poms/factory/{props-and-profiles-grand-parent.xml
 => repository-url-profiles.xml} (51%)
 copy 
compat/maven-model-builder/src/test/resources/poms/validation/raw-model/repository-with-basedir-expression.xml
 => 
impl/maven-impl/src/test/resources/poms/validation/raw-model/repository-with-uninterpolated-id.xml
 (73%)
 copy compat/maven-embedder/src/examples/simple-project/pom.xml => 
impl/maven-impl/src/test/resources/poms/validation/raw-model/repository-with-unsupported-expression.xml
 (67%)
 create mode 100644 
impl/maven-logging/src/test/java/org/apache/maven/slf4j/SimpleLoggerConfigurationTest.java
 copy 
its/core-it-suite/src/test/java/org/apache/maven/it/{MavenITmng6330RelativePath.java
 => MavenITgh11140RepoDmUnresolvedTest.java} (60%)
 create mode 100644 
its/core-it-suite/src/test/java/org/apache/maven/it/MavenITgh11140RepoInterpolationTest.java
 create mode 100644 
its/core-it-suite/src/test/java/org/apache/maven/it/MavenITgh11196CIFriendlyProfilesTest.java
 create mode 100644 
its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng11009StackOverflowParentResolutionTest.java
 copy its/core-it-suite/src/test/resources/{mng-6330-relative-path => 
gh-11140-repo-dm-unresolved}/pom.xml (57%)
 create mode 100644 
its/core-it-suite/src/test/resources/gh-11140-repo-interpolation/pom.xml
 copy its/core-it-suite/src/test/resources/{mng-7464-mojo-read-only-params => 
gh-11196-ci-friendly-profiles}/pom.xml (50%)
 copy its/core-it-suite/src/test/resources/{mng-2124 => 
mng-11009-stackoverflow-parent-resolution}/parent/pom.xml (72%)
 copy 
its/core-it-suite/src/test/resources/{mng-5760-resume-feature/four-modules/module-b
 => mng-11009-stackoverflow-parent-resolution}/pom.xml (74%)
 delete mode 100644 src/site/markdown/mixins.md

Reply via email to