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

github-bot pushed a change to branch 
dependabot/maven/org.xmlunit-xmlunit-core-2.11.0
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git


 discard a0136a5c9 Bump org.xmlunit:xmlunit-core from 2.10.4 to 2.11.0
     add c8f8ad6a3 Bump org.codehaus.mojo:animal-sniffer-maven-plugin from 1.24 
to 1.26 (#3202)
     add cfe85b929 Clarify how late placeholder replacement (@{...}) deals with 
unresolvable parameters
     add 6b9ac38b6 Bump org.htmlunit:htmlunit from 4.16.0 to 4.18.0 (#3213)
     add 722798f2f Bump org.codehaus.plexus:plexus-java from 1.5.0 to 1.5.1
     add 500a90a13 Bump 
org.apache.maven.plugin-testing:maven-plugin-testing-harness
     add f03593cef Bump commons-io:commons-io from 2.20.0 to 2.21.0
     add 1ae1bb3b5 Revert "Properly work with test failures caused during 
beforeAll phase (#3194)"
     add b4a53de9b Properly parse flake failures in beforeAll stages
     add e4d6296c0 Bump org.codehaus.plexus:plexus-i18n from 1.0.0 to 1.1.0 
(#3220)
     add 3f3743350 Bump org.codehaus.plexus:plexus-interpolation from 1.28 to 
1.29 (#3221)
     add e520b9c75 Bump org.apache.commons:commons-lang3 from 3.19.0 to 3.20.0 
(#3223)
     add 298e5076f Missing many files in the GH Artifacts of CI ex-post.
     add 4ebfcd3df Bump org.htmlunit:htmlunit from 4.18.0 to 4.19.0 (#3224)
     add 421f159c3 Bump org.htmlunit:htmlunit from 4.19.0 to 4.20.0 (#3228)
     add 30634fbae Bump org.apache.logging.log4j:log4j-core (#3234)
     add d29e30632 Reduce log level for skipped tests result to info (#3232)
     add 18f0c9f9d Remove long-deprecated unused encoding property (#3198)
     add 68aefe858 Bump org.codehaus.plexus:plexus-java from 1.5.1 to 1.5.2
     add 54621a7fe Bump org.htmlunit:htmlunit from 4.20.0 to 4.21.0 (#3236)
     add 6b67c8983 Bump org.codehaus.mojo:animal-sniffer-maven-plugin from 1.26 
to 1.27 (#3243)
     add a31484f47 Bump org.assertj:assertj-core from 3.27.6 to 3.27.7 (#3245)
     add ca4f62096 Bump org.assertj:assertj-core (#3246)
     add c67291400 [SUREFIRE-3239] allow override of statistics file checksum 
(#3247)
     add 30ffc12b5 pass slf4j context to spawned thread (#3241)
     add fcf1f3cc3 Use JUnit5 in failsafe ITs
     add 20930ead8 Bump parent from 44 to 47 (#3253)
     add 9c99e979d Fix Jenkin badges in README (#3254)
     add e5c01a698 Build only by the latest Maven on Jenkins (#3255)
     add 688f8c463 Use PowerShell instead of WMIC for detecting zombie process 
on Windows (#3258)
     add 0b190142a Replace runing external process and parsing output with 
simple ProcessHandle if available (Java9+) (#3252)
     add 68265e56e Bump 
org.apache.maven.plugin-testing:maven-plugin-testing-harness (#3260)
     add 0fe20723f Bump org.xmlunit:xmlunit-core from 2.10.4 to 2.11.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   (a0136a5c9)
            \
             N -- N -- N   
refs/heads/dependabot/maven/org.xmlunit-xmlunit-core-2.11.0 (0fe20723f)

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-verify.yml                 |  20 +-
 Jenkinsfile                                        |   2 +-
 README.md                                          |   5 +-
 maven-failsafe-plugin/pom.xml                      |  16 +
 .../src/it/jetty-war-test-failing/pom.xml          |   6 +-
 .../src/test/java/basic/BasicIT.java               |  38 +-
 .../src/it/jetty-war-test-passing/pom.xml          |   6 +-
 .../src/test/java/basic/BasicIT.java               |  38 +-
 .../src/it/multiple-summaries-failing/pom.xml      |   6 +-
 .../src/test/java/MyAT.java                        |  14 +-
 .../src/test/java/MyIT.java                        |  14 +-
 .../src/it/multiple-summaries/pom.xml              |   6 +-
 .../it/multiple-summaries/src/test/java/MyIT.java  |  14 +-
 maven-failsafe-plugin/src/it/settings.xml          |  35 +-
 .../src/it/working-directory/pom.xml               |   6 +-
 .../it/working-directory/src/test/java/MyIT.java   |  14 +-
 .../maven/plugin/failsafe/IntegrationTestMojo.java |  19 +
 .../apache/maven/plugin/failsafe/VerifyMojo.java   |   9 -
 maven-surefire-common/pom.xml                      |   1 -
 .../plugin/surefire/AbstractSurefireMojo.java      |  37 +-
 .../plugin/surefire/booterclient/Platform.java     |   9 +-
 .../output/ThreadedStreamConsumer.java             |  12 +-
 .../surefire/report/DefaultReporterFactory.java    |  58 ++-
 .../surefire/report/StatelessXmlReporter.java      | 112 +++++-
 .../AbstractSurefireMojoJava7PlusTest.java         |   8 +
 .../plugin/surefire/AbstractSurefireMojoTest.java  |   8 +
 .../maven/plugin/surefire/MojoMocklessTest.java    |  12 +-
 .../report/DefaultReporterFactoryTest.java         |   8 +-
 .../apache/maven/plugin/surefire/SurefireMojo.java |  19 +
 .../src/site/apt/examples/shutdown.apt.vm          |   6 +-
 maven-surefire-plugin/src/site/fml/faq.fml         |   6 +-
 maven-surefire-report-plugin/pom.xml               |   4 +-
 pom.xml                                            |  18 +-
 surefire-booter/pom.xml                            |   5 +
 .../apache/maven/surefire/booter/ForkedBooter.java |  12 +-
 .../apache/maven/surefire/booter/PpidChecker.java  |  59 ++-
 .../maven/surefire/booter/ProcessChecker.java      | 108 ++++++
 .../surefire/booter/ProcessHandleChecker.java      | 238 ++++++++++++
 .../apache/maven/surefire/booter/ProcessInfo.java  |  11 +
 .../apache/maven/surefire/booter/SystemUtils.java  |   1 +
 .../maven/surefire/booter/PpidCheckerTest.java     | 432 ---------------------
 .../maven/surefire/booter/ProcessCheckerTest.java  | 248 ++++++++++++
 .../surefire/booter/ProcessHandleCheckerTest.java  | 205 ++++++++++
 .../its/JUnitPlatformFailingBeforeAllRerunIT.java  |  64 +++
 .../maven/surefire/its/XmlReporterRunTimeIT.java   |  29 +-
 .../surefire/its/fixture/SurefireLauncher.java     |   5 +
 .../pom.xml                                        |   4 +-
 .../test/java/junitplatform/AlwaysFailingTest.java |  22 ++
 .../java/junitplatform/FlakyFirstTimeTest.java     |  15 +-
 .../src/test/java/junitplatform/PassingTest.java   |   0
 .../surefire-1659-stream-corruption/pom.xml        |   2 +-
 .../test/resources/surefire-1733-testng/pom.xml    |   2 +-
 .../maven/plugin/surefire/log/api/Level.java       |  14 +-
 .../maven/plugin/surefire/log/api/LevelTest.java   |   2 +-
 .../testng/conf/TestNGMapConfigurator.java         |   4 +-
 55 files changed, 1419 insertions(+), 649 deletions(-)
 create mode 100644 
surefire-booter/src/main/java/org/apache/maven/surefire/booter/ProcessChecker.java
 create mode 100644 
surefire-booter/src/main/java/org/apache/maven/surefire/booter/ProcessHandleChecker.java
 delete mode 100644 
surefire-booter/src/test/java/org/apache/maven/surefire/booter/PpidCheckerTest.java
 create mode 100644 
surefire-booter/src/test/java/org/apache/maven/surefire/booter/ProcessCheckerTest.java
 create mode 100644 
surefire-booter/src/test/java/org/apache/maven/surefire/booter/ProcessHandleCheckerTest.java
 create mode 100644 
surefire-its/src/test/java/org/apache/maven/surefire/its/JUnitPlatformFailingBeforeAllRerunIT.java
 copy surefire-its/src/test/resources/{junit-platform-rerun-failing-tests => 
junit-platform-rerun-failing-before-all}/pom.xml (95%)
 create mode 100644 
surefire-its/src/test/resources/junit-platform-rerun-failing-before-all/src/test/java/junitplatform/AlwaysFailingTest.java
 copy surefire-its/src/test/resources/{junit-platform-rerun-failing-tests => 
junit-platform-rerun-failing-before-all}/src/test/java/junitplatform/FlakyFirstTimeTest.java
 (69%)
 copy surefire-its/src/test/resources/{junit-platform-rerun-failing-tests => 
junit-platform-rerun-failing-before-all}/src/test/java/junitplatform/PassingTest.java
 (100%)

Reply via email to