You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by gi...@apache.org on 2022/01/19 01:12:30 UTC

[maven-surefire] branch dependabot/maven/org.apache.maven.shared-maven-common-artifact-filters-3.2.0 updated (e22074e -> fa6e3d4)

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

github-bot pushed a change to branch dependabot/maven/org.apache.maven.shared-maven-common-artifact-filters-3.2.0
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git.


 discard e22074e  Bump maven-common-artifact-filters from 3.1.0 to 3.2.0
     add 08e6357  Too long path for test on Windows
     add c76b794  Bump doxiaSitetoolsVersion from 1.9.2 to 1.11.1
     add c1a190c  Bump maven-docck-plugin from 1.0 to 1.1
     add 989a6c3  Bump assertj-core from 3.9.1 to 3.22.0
     add 17f0631  Use the latest release version of failsafe in ITs
     add 48551a6  Bump maven-invoker-plugin from 3.2.0 to 3.2.2
     add 909637c  [SUREFIRE-1967] Fix parallel test ordering to prevent high resource consumption
     add f8066dc  [SUREFIRE-1972] Use current version of surefire-shared-utils
     add 4b549e4  [github] max-parallel: 4, timeout-minutes: 7 hours
     add c48f2b2  removed maven-shade-plugin in maven-surefire-common
     add fa6e3d4  Bump maven-common-artifact-filters from 3.1.0 to 3.2.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   (e22074e)
            \
             N -- N -- N   refs/heads/dependabot/maven/org.apache.maven.shared-maven-common-artifact-filters-3.2.0 (fa6e3d4)

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                 |  8 ++-
 maven-failsafe-plugin/pom.xml                      |  4 +-
 maven-surefire-common/pom.xml                      | 20 +-----
 maven-surefire-plugin/pom.xml                      |  2 +-
 pom.xml                                            | 22 ++++--
 surefire-api/pom.xml                               |  2 +-
 .../maven/surefire/api/util/ReflectionUtils.java   | 12 ++++
 .../surefire/api/util/ReflectionUtilsTest.java     | 29 ++++++++
 surefire-booter/pom.xml                            |  3 +-
 .../surefire/booter/NewClassLoaderRunner.java      | 15 ++--
 surefire-extensions-api/pom.xml                    |  2 +-
 surefire-its/pom.xml                               |  6 +-
 ...urefire1914XmlReportingParameterizedTestIT.java |  2 +-
 ...ire1967CheckTestNgMethodParallelOrderingIT.java | 83 ++++++++++++++++++++++
 .../pom.xml                                        | 17 +++--
 .../test/java/testng/parallelOrdering/Base.java    | 58 +++++++++++++++
 .../java/testng/parallelOrdering/TestClass1.java   |  3 +
 .../java/testng/parallelOrdering/TestClass2.java   |  3 +
 .../java/testng/parallelOrdering/TestClass3.java   |  3 +
 .../java/testng/parallelOrdering/TestClass4.java   |  3 +
 surefire-providers/common-java5/pom.xml            |  2 +-
 .../maven/surefire/testng/TestNGExecutor.java      | 42 ++++++++++-
 surefire-report-parser/pom.xml                     |  2 +-
 surefire-shared-utils/pom.xml                      | 36 +++++++++-
 24 files changed, 320 insertions(+), 59 deletions(-)
 create mode 100644 surefire-its/src/test/java/org/apache/maven/surefire/its/jiras/Surefire1967CheckTestNgMethodParallelOrderingIT.java
 copy surefire-its/src/test/resources/{junit47-concurrency => surefire-1967-testng-method-parallel-ordering}/pom.xml (84%)
 create mode 100644 surefire-its/src/test/resources/surefire-1967-testng-method-parallel-ordering/src/test/java/testng/parallelOrdering/Base.java
 create mode 100644 surefire-its/src/test/resources/surefire-1967-testng-method-parallel-ordering/src/test/java/testng/parallelOrdering/TestClass1.java
 create mode 100644 surefire-its/src/test/resources/surefire-1967-testng-method-parallel-ordering/src/test/java/testng/parallelOrdering/TestClass2.java
 create mode 100644 surefire-its/src/test/resources/surefire-1967-testng-method-parallel-ordering/src/test/java/testng/parallelOrdering/TestClass3.java
 create mode 100644 surefire-its/src/test/resources/surefire-1967-testng-method-parallel-ordering/src/test/java/testng/parallelOrdering/TestClass4.java