fix(deps): update all non-major dependencies#195
Merged
renovate[bot] merged 1 commit intomainfrom Jul 27, 2025
Merged
Conversation
12a556d to
906d2a9
Compare
906d2a9 to
2663bdd
Compare
2663bdd to
13e0816
Compare
d4fecef to
00f6bd1
Compare
00f6bd1 to
53c21ef
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
8.14.2->8.14.33.2.1->3.2.23.5.3->3.5.45.13.2->5.13.45.13.2->5.13.45.13.2->5.13.49.0.0-beta17->9.0.0-rc2Release Notes
gradle/gradle (gradle)
v8.14.3: 8.14.3Compare Source
The Gradle team is excited to announce Gradle 8.14.3.
This is a patch release for 8.14. We recommend using 8.14.3 instead of 8.14.
Here are the highlights of this release:
Read the Release Notes
We would like to thank the following community members for their contributions to this release of Gradle:
Aurimas,
Ben Bader,
Björn Kautler,
chandre92,
Daniel Hammer,
Danish Nawab,
Florian Dreier,
Ivy Chen,
Jendrik Johannes,
jimmy1995-gu,
Madalin Valceleanu,
Na Minhyeok.
Upgrade instructions
Switch your build to use Gradle 8.14.3 by updating your wrapper:
See the Gradle 8.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.
ben-manes/caffeine (com.github.ben-manes.caffeine:caffeine)
v3.2.2: 3.2.2mariadb-corporation/mariadb-connector-j (org.mariadb.jdbc:mariadb-java-client)
v3.5.4Compare Source
Full Changelog
Key Enhancements
Issues Resolved
junit-team/junit-framework (org.junit.jupiter:junit-jupiter-engine)
v5.13.4GradleUp/shadow (com.gradleup.shadow:shadow-gradle-plugin)
v9.0.0-rc2Compare Source
Added
assembledepend onshadowJar. (#1524)Changed
It is still disabled by default, you can enable it by setting
com.gradleup.shadow.enableDevelocityIntegration = true.AbstractDependencyFilterfrominternaltopublic. (#1538)You can access it via
com.github.jengelman.gradle.plugins.shadow.tasks.DependencyFilter.AbstractDependencyFilter.Fixed
options.releasefor target JVM attribute. (#1502)v9.0.0-rc1Compare Source
Added
SimpleRelocatorchanges from maven-shade-plugin. (#1076)module-info.classin Multi-Release folders by default. (#1177)TargetJvmVersionattribute for Gradle Module Metadata. (#1199)ShadowApplicationPluginwithApplicationPlugin. (#1224)Multi-Releasemanifest attribute if any dependency contains it. (#1239)Transformeras throwingIOException. (#1248)ShadowJar.dependencies. (#1322)ShadowJar. (#1365)Changed
Transformers to using lazy properties. (#1036)ShadowJarto using lazy properties. (#1044)ShadowJar'sisEnableRelocationhas been renamed toenableRelocation. (#1044)Configurationdirectly inDependencyFilter. (#1045)SimpleRelocatorto using lazy properties. (#1047)SimpleRelocator. (#1079)ListPropertyusages toSetProperty. (#1103)Some public
Listparameters are also changed toSet.SelfResolvingDependencywithFileCollectionDependency. (#1114)separatorinAppendingTransformer. (#1169)This is useful for handling files like
resources/application.yml.Transformers cacheable. (#1210)ShadowJar.dependencyFilteras@Input. (#1206)ShadowSpec.statsis removed andShadowJar.statsisinternalfor now.startShadowScriptstask registering. (#1216)RelocatorRemapperasinternal. (#1227)ShadowCopyAction. (#1257)SimpleRelocatorto improve performance. (#1271)DependencyFilterintotaskspackage. (#1272)ShadowTask.fromwith Gradle'sAbstractCopyTask.from. (#1233)In the previous versions,
ShadowTask.fromwould always unzip the files before processing them, which caused serialissues that are hard to fix. Now it behaves like Gradle's
AbstractCopyTask.from, which means it will not unzipthe files, only copy the files as-is. If you still want to shadow the unzipped files, try out something like:
tasks.shadowJar { from(zipTree(files('path/to/your/file.zip'))) }dependencies { implementation(files('path/to/your/file.zip')) }StreamAction, handle file unzipping viaProject.zipTree. (#1233)TransformertoResourceTransformer. (#1288)Aims to better align with the name
org.apache.maven.plugins.shade.resource.ResourceTransformer.javaand to distinguish itself from
org.gradle.api.Transformer.java.DefaultInheritManifestasinternal. (#1303)ShadowSpec. (#1307)ShadowSpecfunctions are changed toUnitto avoid confusion.ShadowSpecno longer extendsCopySpec.relocate,transformand things for better usability in Kotlin.runShadowno longer depends oninstallShadowDist. (#1353)ShadowJarfromshadowtobuild. (#1355)Fixed
Log4j2PluginsCacheFileTransformernot working for mergingLog4j2Plugins.datfiles. (#1175)mainClassprovided byJavaApplication. (#1182)ShadowJarnot being successful afterincludesorexcludesare changed. (#1200)DuplicatesStrategy. (#1233)Shadow recognized
DuplicatesStrategy.EXCLUDEas the default, but the other strategies didn't work properly.Now we honor
DuplicatesStrategy.INCLUDEas the default, and align all the strategy behaviors with the Gradle side.from. (#1233)kotlin/kotlin.kotlin_builtins. (#1313)RelocateClassContextandRelocatePathContextto data classes. (#1445)Removed
SimpleRelocator. (#1079)JavaJarExec, now useJavaExecdirectly forrunShadowtask. (#1197)ServiceFileTransformer.ServiceStreamhas been removed. (#1218)KnowsTaskas it's useless. (#1236)BaseStreamAction. (#1258)ShadowStats. (#1264)ShadowCopyAction.ArchiveFileTreeElementandRelativeArchivePath. (#1233)TransformerContext.getEntryTimestamp. (#1245)DependencyFilter. (#1328)New Contributors
Full Changelog: GradleUp/shadow@8.3.8...9.0.0-rc1
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.