You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2023/02/16 11:07:52 UTC

[maven-build-cache-extension] branch gha-maintenance updated (c5327f8 -> 68da8e6)

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

olamy pushed a change to branch gha-maintenance
in repository https://gitbox.apache.org/repos/asf/maven-build-cache-extension.git


    omit c5327f8  cleanup dav files and close the container
    omit 22a1262  force closing stream quietly
    omit da9fb72  could run on osx windows except if no docker
    omit 20cdef1  use our shared GHA buiid, add dependabot and release
     add 8922b8c  [MBUILDCACHE-40] Upgrade to released maven 3.9.0
     add f91a4d4  [MBUILDCACHE-37] Allow disabled-by-default configuration to be enabled on the CLI (#37)
     add 2b71980  [MBUILDCACHE-39] Upgrade to maven-parent pom 39
     add 42eb2ec  [MBUILDCACHE-39] Reformat
     add f9c8089  [MBUILDCACHE-39] Ignore reformat commit in git-blame
     add 0f324d4  use our shared GHA buiid, add dependabot and release
     add 54b19e7  could run on osx windows except if no docker
     add 2b0591c  force closing stream quietly
     add 68da8e6  cleanup dav files and close the container

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   (c5327f8)
            \
             N -- N -- N   refs/heads/gha-maintenance (68da8e6)

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:
 deploySite.sh => .git-blame-ignore-revs            |   6 +-
 pom.xml                                            | 830 +++++++++----------
 .../BuildCacheMojosExecutionStrategy.java          | 307 +++----
 .../org/apache/maven/buildcache/CacheContext.java  |  23 +-
 .../apache/maven/buildcache/CacheController.java   |  24 +-
 .../maven/buildcache/CacheControllerImpl.java      | 922 +++++++++------------
 .../org/apache/maven/buildcache/CacheDiff.java     | 261 +++---
 .../buildcache/CacheLifecycleParticipant.java      |  19 +-
 .../apache/maven/buildcache/CacheRepository.java   |  17 +-
 .../org/apache/maven/buildcache/CacheResult.java   |  86 +-
 .../org/apache/maven/buildcache/CacheUtils.java    | 202 ++---
 .../apache/maven/buildcache/ChainedListener.java   | 132 ++-
 .../buildcache/DefaultMultiModuleSupport.java      | 181 ++--
 .../buildcache/DefaultNormalizedModelProvider.java | 160 ++--
 .../maven/buildcache/DefaultPluginScanConfig.java  |  23 +-
 .../buildcache/DefaultProjectInputCalculator.java  |  75 +-
 .../buildcache/DefaultRestoredArtifactHandler.java | 117 ++-
 .../maven/buildcache/LifecyclePhasesHelper.java    | 179 ++--
 .../maven/buildcache/LocalCacheRepository.java     |  19 +-
 .../maven/buildcache/LocalCacheRepositoryImpl.java | 450 +++++-----
 .../maven/buildcache/MojoParametersListener.java   |  59 +-
 .../maven/buildcache/MultiModuleSupport.java       |  13 +-
 .../maven/buildcache/NormalizedModelProvider.java  |   8 +-
 .../apache/maven/buildcache/PluginScanConfig.java  |  12 +-
 .../maven/buildcache/PluginScanConfigImpl.java     | 106 +--
 .../maven/buildcache/ProjectInputCalculator.java   |   8 +-
 .../maven/buildcache/RemoteCacheRepository.java    |  15 +-
 .../buildcache/RemoteCacheRepositoryImpl.java      | 268 +++---
 .../buildcache/RemoteCacheRepositoryNoOp.java      |  43 +-
 .../buildcache/RemoteCacheRepositoryProvider.java  |  24 +-
 .../org/apache/maven/buildcache/RestoreStatus.java |   5 +-
 .../maven/buildcache/RestoredArtifactHandler.java  |  16 +-
 .../maven/buildcache/ScanConfigProperties.java     |  14 +-
 .../org/apache/maven/buildcache/Xpp3DomUtils.java  |  76 +-
 .../buildcache/artifact/RestoredArtifact.java      | 102 +--
 .../checksum/DependencyNotResolvedException.java   |  10 +-
 .../maven/buildcache/checksum/DigestUtils.java     | 146 ++--
 .../apache/maven/buildcache/checksum/KeyUtils.java |  87 +-
 .../buildcache/checksum/MavenProjectInput.java     | 751 ++++++++---------
 .../apache/maven/buildcache/checksum/WalkKey.java  |  44 +-
 .../maven/buildcache/hash/CloseableBuffer.java     | 115 +--
 .../org/apache/maven/buildcache/hash/Hash.java     |  22 +-
 .../maven/buildcache/hash/HashAlgorithm.java       |  18 +-
 .../apache/maven/buildcache/hash/HashChecksum.java |  35 +-
 .../apache/maven/buildcache/hash/HashFactory.java  |  52 +-
 .../org/apache/maven/buildcache/hash/HexUtils.java |  49 +-
 .../maven/buildcache/hash/ReflectionUtils.java     |  39 +-
 .../java/org/apache/maven/buildcache/hash/SHA.java |  51 +-
 .../maven/buildcache/hash/ThreadLocalBuffer.java   |  54 +-
 .../maven/buildcache/hash/ThreadLocalDigest.java   |  45 +-
 .../java/org/apache/maven/buildcache/hash/XX.java  |  50 +-
 .../org/apache/maven/buildcache/hash/XXMM.java     |  29 +-
 .../org/apache/maven/buildcache/xml/Build.java     | 146 ++--
 .../apache/maven/buildcache/xml/CacheConfig.java   |  29 +-
 .../maven/buildcache/xml/CacheConfigImpl.java      | 494 +++++------
 .../apache/maven/buildcache/xml/CacheSource.java   |   5 +-
 .../apache/maven/buildcache/xml/CacheState.java    |   5 +-
 .../org/apache/maven/buildcache/xml/DtoUtils.java  | 166 ++--
 .../apache/maven/buildcache/xml/XmlService.java    | 172 ++--
 src/site/markdown/usage.md                         |   7 +-
 .../BuildCacheMojosExecutionStrategyTest.java      | 177 ++--
 .../org/apache/maven/buildcache/BuildInfoTest.java |  90 +-
 .../buildcache/LifecyclePhasesHelperTest.java      | 437 +++++-----
 .../java/org/apache/maven/buildcache/TestMojo.java |  93 +--
 .../buildcache/checksum/MavenProjectInputTest.java |  53 +-
 .../maven/buildcache/checksum/SHAHashTest.java     |  63 +-
 .../maven/buildcache/checksum/XXHashTest.java      | 132 +--
 .../apache/maven/buildcache/hash/HexUtilsTest.java |  50 +-
 .../maven/buildcache/its/BuildExtensionTest.java   |  23 +-
 .../maven/buildcache/its/CoreExtensionTest.java    |  23 +-
 .../its/ForkedExecutionCoreExtensionTest.java      |  50 +-
 .../apache/maven/buildcache/its/Issue21Test.java   |  17 +-
 .../maven/buildcache/its/RemoteCacheDavTest.java   | 486 +++++------
 .../maven/buildcache/its/junit/BeforeEach.java     |  10 +-
 .../apache/maven/buildcache/its/junit/Inject.java  |  10 +-
 .../buildcache/its/junit/IntegrationTest.java      |  13 +-
 .../its/junit/IntegrationTestExtension.java        | 264 +++---
 .../apache/maven/buildcache/its/junit/Test.java    |  14 +-
 .../maven/buildcache/xml/XmlServiceTest.java       |  89 +-
 .../internal/stub/LifecyclesTestUtils.java         | 136 +--
 80 files changed, 4199 insertions(+), 5454 deletions(-)
 copy deploySite.sh => .git-blame-ignore-revs (88%)
 mode change 100755 => 100644