Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all non-major dependencies #90

Merged
merged 1 commit into from
Sep 7, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 25, 2022

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
actions/cache action minor v3.0.11 -> v3.3.3 age adoption passing confidence
actions/checkout action minor v3.1.0 -> v3.6.0 age adoption passing confidence
actions/setup-java action minor v3.6.0 -> v3.13.0 age adoption passing confidence
gradle (source) minor 7.5.1 -> 7.6.4 age adoption passing confidence
gradle/wrapper-validation-action action minor v1.0.5 -> v1.1.0 age adoption passing confidence
net.fabricmc:intermediary dependencies minor 1.15.2 -> 1.21.1 age adoption passing confidence
net.fabricmc:yarn dependencies minor 1.15.2+build.9 -> 1.21.1+build.3 age adoption passing confidence
org.ow2.asm:asm-util (source) dependencies minor 9.4 -> 9.7 age adoption passing confidence
org.ow2.asm:asm-analysis (source) dependencies minor 9.4 -> 9.7 age adoption passing confidence
org.ow2.asm:asm-tree (source) dependencies minor 9.4 -> 9.7 age adoption passing confidence
org.ow2.asm:asm (source) dependencies minor 9.4 -> 9.7 age adoption passing confidence
org.checkerframework:checker-qual (source) dependencies minor 3.26.0 -> 3.47.0 age adoption passing confidence
org.junit.jupiter:junit-jupiter-engine (source) dependencies minor 5.9.1 -> 5.11.0 age adoption passing confidence
org.junit.jupiter:junit-jupiter-api (source) dependencies minor 5.9.1 -> 5.11.0 age adoption passing confidence
org.projectlombok:lombok (source) dependencies patch 1.18.24 -> 1.18.34 age adoption passing confidence
net.fabricmc:tiny-remapper dependencies minor 0.8.6 -> 0.10.4 age adoption passing confidence
org.jetbrains:annotations dependencies minor 23.0.0 -> 23.1.0 age adoption passing confidence
dev.minco.gradle.defaults-plugin plugin patch 0.2.62 -> 0.2.67 age adoption passing confidence
com.gradle.plugin-publish plugin minor 1.0.0 -> 1.2.2 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

actions/cache (actions/cache)

v3.3.3

Compare Source

What's Changed

New Contributors

Full Changelog: actions/cache@v3...v3.3.3

v3.3.2

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v3...v3.3.2

v3.3.1

Compare Source

What's Changed

Full Changelog: actions/cache@v3...v3.3.1

v3.3.0

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v3...v3.3.0

v3.2.6

Compare Source

What's Changed

Full Changelog: actions/cache@v3...v3.2.6

v3.2.5

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v3...v3.2.5

v3.2.4

Compare Source

What's Changed

New Contributors

Full Changelog: actions/cache@v3...v3.2.4

v3.2.3

Compare Source

What's Changed

New Contributors

Full Changelog: actions/cache@v3...v3.2.3

v3.2.2

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v3.2.1...v3.2.2

v3.2.1

Compare Source

What's Changed

Full Changelog: actions/cache@v3.2.0...v3.2.1

v3.2.0

Compare Source

What's Changed
New Contributors

Full Changelog: actions/cache@v3...v3.2.0

actions/checkout (actions/checkout)

v3.6.0

Compare Source

v3.5.3

Compare Source

v3.5.2

Compare Source

v3.5.1

Compare Source

v3.5.0

Compare Source

v3.4.0

Compare Source

v3.3.0

Compare Source

v3.2.0

Compare Source

actions/setup-java (actions/setup-java)

v3.13.0

Compare Source

What's changed

In the scope of this release, support for Dragonwell JDK was added by @​Accelerator1996 in https://github.com/actions/setup-java/pull/532

steps:
 - name: Checkout
   uses: actions/checkout@v3
 - name: Setup-java
   uses: actions/setup-java@v3
   with:
     distribution: 'dragonwell'
     java-version: '17'

Several inaccuracies were also fixed:

New Contributors

Full Changelog: actions/setup-java@v3...v3.13.0

v3.12.0

Compare Source

In scope of this release the following changes were made:

Bug fixes:

Feature implementations:

Resolving dependencies issues:

Infrastructure updates:

Documentation changes:

New Contributors

Full Changelog: actions/setup-java@v3...v3.12.0

v3.11.0

Compare Source

In scope of this release we added support for IBM Semeru (OpenJ9) JDK (https://github.com/actions/setup-java/pull/289).

steps:
 - name: Checkout
   uses: actions/checkout@v3
 - name: Setup-java
   uses: actions/setup-java@v3
   with:
     distribution: semeru
     java-version: 17
Supported distributions

Currently, the following distributions are supported:

Keyword Distribution Official site License
temurin Eclipse Temurin Link Link
zulu Azul Zulu OpenJDK Link Link
adopt or adopt-hotspot AdoptOpenJDK Hotspot Link Link
adopt-openj9 AdoptOpenJDK OpenJ9 Link Link
liberica Liberica JDK Link Link
microsoft Microsoft Build of OpenJDK Link Link
corretto Amazon Corretto Build of OpenJDK Link Link
semeru IBM Semeru Runtime Open Edition Link Link
oracle Oracle JDK Link Link

v3.10.0

Compare Source

In scope of this release we added support for Oracle JDK (https://github.com/actions/setup-java/pull/450).

steps:
 - name: Checkout
  uses: actions/checkout@v3
 - name: Setup-java
  uses: actions/setup-java@v3
  with:
   distribution: oracle
   java-version: 17
Supported distributions

Currently, the following distributions are supported:

Keyword Distribution Official site License
temurin Eclipse Temurin Link Link
zulu Azul Zulu OpenJDK Link Link
adopt or adopt-hotspot AdoptOpenJDK Hotspot Link Link
adopt-openj9 AdoptOpenJDK OpenJ9 Link Link
liberica Liberica JDK Link Link
microsoft Microsoft Build of OpenJDK Link Link
corretto Amazon Corretto Build of OpenJDK Link Link
oracle Oracle JDK Link Link

v3.9.0

Compare Source

In scope of this release we add support for .java-version file (https://github.com/actions/setup-java/pull/426). For more information about its usage please refer to the documentation.

    steps:
      - uses: actions/checkout@v3
      - name: Setup java
        uses: actions/setup-java@v3
        with:
          distribution: '<distribution>'
          java-version-file: .java-version
      - run: java HelloWorldApp.java

v3.8.0

Compare Source

In scope of this release we added logic to pass the token input through on GHES for Microsoft Build of OpenJDK (https://github.com/actions/setup-java/pull/395) and updated minimatch dependency.

gradle/gradle (gradle)

v7.6.4: 7.6.4

Compare Source

This is a patch release for 7.6. We recommend using 7.6.4 instead of 7.6.

Read the Release Notes

Upgrade instructions

Switch your build to use Gradle 7.6.4 by updating your wrapper:

./gradlew wrapper --gradle-version=7.6.4

See the Gradle 7.x upgrade guide to learn about deprecations, breaking changes and other considerations when upgrading.

For Java, Groovy, Kotlin and Android compatibility, see the full compatibility notes.

Reporting problems

If you find a problem with this release, please file a bug on GitHub Issues adhering to our issue guidelines.
If you're not sure you're encountering a bug, please use the forum.

We hope you will build happiness with Gradle, and we look forward to your feedback via Twitter or on GitHub.

v7.6.3: 7.6.3

Compare Source

This is a patch release for 7.6. We recommend using 7.6.3 instead of 7.6.

This release addresses two security vulnerabilities:

It also fixes the following issues:

  • #​25781 Backport finalized task performance fix to 7.6.x
  • #​25802 Backport cgroups fix to 7.6.x

Read the Release Notes

Upgrade Instructions

Switch your build to use Gradle 7.6.3 by updating your wrapper:

./gradlew wrapper --gradle-version=7.6.3

See the Gradle 7.x upgrade guide to learn about deprecations, breaking changes and other considerations when upgrading to Gradle 7.6.3.

Reporting Problems

If you find a problem with this release, please file a bug on GitHub Issues adhering to our issue guidelines.
If you're not sure you're encountering a bug, please use the forum.

v7.6.2: 7.6.2

Compare Source

This is a patch release for 7.6. We recommend using 7.6.2 instead of 7.6.

This release addresses two security vulnerabilities:

It also fixes the following issues:

  • #​23201 Backport dependency upgrades to 7.x
  • #​23202 Backport Scala incremental compilation fixes
  • #​23325 Backport JSoup update to resolve CVE-2022-36033
  • #​23458 Backport JUnit5 dynamic test logging bug fix
  • #​23681 Dependency graph resolution: Equivalent excludes can cause un-necessary graph mutations [backport 7.x]
  • #​23922 Backport "Use Compiler API data for incremental compilation after a failure" to 7.x
  • #​23951 Exclude rule merging: missing optimization [Backport 7.x]
  • #​24132 Extending an already resolved configuration no longer works correctly [backport 7.x]
  • #​24234 7.6.1 breaks gradle-consistent-versions
  • #​24390 Gradle 7.4 fails on multi release jar's with JDK 19 code
  • #​24439 Gradle complains about invalid tool chain - picking up the source package location - it should just ignore them [Backport]
  • #​24443 Maven artifact referenced only in dependency constraints raises IllegalStateException: Corrupt serialized resolution result [backport]
  • #​24901 Backport fix for test exception that cannot be deserialized to 7.x

Read the Release Notes

Upgrade Instructions

Switch your build to use Gradle 7.6.2 by updating your wrapper:

./gradlew wrapper --gradle-version=7.6.2

See the Gradle 7.x upgrade guide to learn about deprecations, breaking changes and other considerations when upgrading to Gradle 7.6.2.

Reporting Problems

If you find a problem with this release, please file a bug on GitHub Issues adhering to our issue guidelines.
If you're not sure you're encountering a bug, please use the forum.

v7.6.1: 7.6.1

Compare Source

This is a patch release for 7.6. We recommend using 7.6.1 instead of 7.6.

It fixes the following issues:

  • #​19065 Platform dependencies not possible in dependency block of test suite plugin
  • #​22688 Increased memory usage (with -p option)
  • #​22796 Building gradle itself fails during toolchain download: permission denied copying a file within .gradle/jdks
  • #​22875 Regression with 7.6: @​​pom artifact in JVM library project is no longer found
  • #​22937 Remove safe credentials reference
  • #​22973 Kotlin MPP plugin broken with Gradle 7.6 due to signature change in TestResultProcessor
  • #​23016 toolchainManagement.jvm.javaRepositories should not expose the full surface of NamedDomainObjectList
  • #​23025 Back-port toolchain related fixes to 7.6.1
  • #​23053 Auto-provisioning/auto-detection of IBM Semeru toolchains is broken with Gradle 7.6
  • #​23074 Docs: Build Lifecycle starts halfway through a point
  • #​23096 Classifiers of version catalog are discarded while copied to anothor dependency
  • #​23111 Ant closures are broken with Gradle 7.6
  • #​23178 Mention the Foojay Toolchain Resolver plugin in the Gradle manual
  • #​23215 Gradle 7.6: high memory usage (android project)
  • [#​23224](https://redirect.g

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 16 times, most recently from cc969a9 to f167d9a Compare November 29, 2022 17:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 47d7855 to b0f00d1 Compare December 7, 2022 18:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from fd3aca9 to 3856ed3 Compare December 14, 2022 14:20
@renovate renovate bot changed the title Update all non-major dependencies chore(deps): update all non-major dependencies Dec 20, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from b69e1ab to 12d123e Compare May 4, 2024 14:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 441717f to 48dde5d Compare May 23, 2024 14:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 85ce1e0 to 66fad55 Compare June 5, 2024 14:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 2393f9f to b9d626f Compare June 13, 2024 16:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 40e0ab8 to 4579d4c Compare July 3, 2024 17:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4579d4c to df6855a Compare July 21, 2024 03:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 616ccf6 to db10912 Compare August 8, 2024 15:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 08c4fd1 to 73c0e14 Compare August 14, 2024 10:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 73c0e14 to 872b0cc Compare August 29, 2024 11:32
@LunNova LunNova merged commit a582f97 into main Sep 7, 2024
3 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch September 7, 2024 18:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant