Skip to content

fix(deps): update dependency com.gradleup.shadow:com.gradleup.shadow.gradle.plugin to v9.4.0#58

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/com.gradleup.shadow-com.gradleup.shadow.gradle.plugin-9.x
Open

fix(deps): update dependency com.gradleup.shadow:com.gradleup.shadow.gradle.plugin to v9.4.0#58
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/com.gradleup.shadow-com.gradleup.shadow.gradle.plugin-9.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Aug 29, 2025

This PR contains the following updates:

Package Change Age Confidence
com.gradleup.shadow:com.gradleup.shadow.gradle.plugin 9.0.29.4.0 age confidence

Release Notes

GradleUp/shadow (com.gradleup.shadow:com.gradleup.shadow.gradle.plugin)

v9.4.0

Compare Source

Added
Changed
  • Allow opting out of adding shadowJar into assemble lifecycle. (#​1939)
    shadow {
      // Disable making `assemble` task depend on `shadowJar`. This is enabled by default.
      addShadowJarToAssembleLifecycle = false
    }
  • Stop catching ZipException when writing entries. (#​1970)
Fixed
  • Fix interaction with Gradle artifact transforms. (#​1345)
  • Fix skipStringConstants per-relocator behavior in mapName. (#​1968)
  • Fix failing for non-existent class directories. (#​1976)

v9.3.2

Compare Source

Changed
  • Stop moving gradleApi dependency from api to compileOnly for Gradle 9.4+. (#​1919)
  • Log warnings for duplicates in the final JAR. (#​1931)
Fixed
  • Fix relocation patterns not included in task fingerprint. (#​1933)

v9.3.1

Compare Source

Fixed
  • Use ASM from jdependency embedded. (#​1898)
    This fixes potential classpath conflicts when using Shadow with other plugins that also use ASM.

v9.3.0

Compare Source

Added
  • Add PatternFilterableResourceTransformer to simplify pattern based ResourceTransformers. (#​1849)
  • Expose patternSet of ServiceFileTransformer as public. (#​1849)
  • Expose patternSet of ApacheLicenseResourceTransformer as public. (#​1850)
  • Expose patternSet of ApacheNoticeResourceTransformer as public. (#​1850)
  • Expose patternSet of PreserveFirstFoundResourceTransformer as public. (#​1855)
  • Support overriding output path of ApacheNoticeResourceTransformer. (#​1851)
  • Add new merge strategy Fail to PropertiesFileTransformer. (#​1856)
  • Add FindResourceInClasspath task to help with debugging issues with merged duplicate resources. (#​1860)
  • Add MergeLicenseResourceTransformer. (#​1858)
  • Add DeduplicatingResourceTransformer to deduplicate on path and content. (#​1859)
  • Support disabling Kotlin module metadata remapping. (#​1875)
    tasks.shadowJar {
      // Disable remapping of Kotlin module metadata (`.kotlin_module`) files. This is enabled by default.
      enableKotlinModuleRemapping = false
    }
Changed
  • Change the group of startShadowScripts from application to other. (#​1797)
  • Update ASM and jdependency to support Java 26. (#​1799)
  • Bump min Gradle requirement to 9.0.0. (#​1801)
  • Deprecate PreserveFirstFoundResourceTransformer.resources. (#​1855)
  • Make the output of PropertiesFileTransformer reproducible. (#​1861)
  • Deprecate ShadowCopyAction. (#​1876)
    It should not be used as a public API. Will be made internal in a future release.
Fixed
  • Fix Develocity integration when Isolated Projects enabled. (#​1836)

v9.2.2

Compare Source

Fixed
  • Fix the regression of registering ShadowJar tasks without ShadowPlugin applied. (#​1787)

v9.2.1

Compare Source

Added
  • Support relocating Groovy extensions in Module descriptors. (#​1705)
  • Add extensions for Iterable<Relocator>. (#​1710)
  • Support relocating list of types in RelocatorRemapper. (#​1714)
  • Add mainClass property into ShadowJar. (#​1722)
    tasks.shadowJar {
      // This property will be used as a fallback if there is no explicit `Main-Class` attribute set.
      mainClass = "my.Main"
    }
  • Honor executableDir and applicationName in application extension. (#​1740)
    This is useful when you want to customize the output directory of the start scripts and the application distribution.
  • Provide more task accessors in ShadowApplicationPlugin.Companion. (#​1771)
  • Support relocating Kotlin module files. (#​1539)
    The current implementation relocates all properties in KotlinModuleMetadata but KmModule.optionalAnnotationClasses due to very limited usage of it. See more discussion here.
  • Allow overriding BUNDLING_ATTRIBUTE in GMM. (#​1773)
    The org.gradle.dependency.bundling in shadowed JAR's Gradle Module Metadata is set to shadowed by default. You can override it for now by:
    shadow {
      bundlingAttribute = Bundling.EMBEDDED
    }
Changed
  • Merge Groovy Module descriptors into the modern META-INF path. (#​1706)
    The Gradle Module descriptors (org.codehaus.groovy.runtime.ExtensionModule files) defined under META-INF/services/
    and META-INF/groovy will be merged into META-INF/groovy/org.codehaus.groovy.runtime.ExtensionModule.
  • Move injecting Class-Path manifest attr logic from doFirst into copy. (#​1720)
  • Move injecting Main-Class manifest attr logic from doFirst into copy. (#​1724)
  • Deprecate InheritManifest and inheritFrom. (#​1722)
    tasks.shadowJar {
      // Before (deprecated):
      manifest.inheritFrom(tasks.jar.get().manifest)
      // After (recommended):
      manifest.from(tasks.jar.get().manifest)
    
      // Note: You don't need to inherit the manifest from `jar` task as it's done by default for the `shadowJar` task.
      // But if you want to inherit the manifest for your custom `ShadowJar` task, you still need to do it explicitly.
    }
  • Use default JavaExec error message when main class is not set. (#​1725)
  • Update RelocatorRemapper class pattern to cover more Java method descriptors. (#​1731)
  • Stop using start script templates bundled in Shadow. (#​1738)
  • Bump min Java requirement to 17. (#​1744)
  • Require most optional properties non-null. (#​1745)
  • Make assemble depend on shadowJar even if it is added later. (#​1766)
Fixed
  • Fix excluding dependencies whose versions contain +. (#​1597)

v9.2.0

Compare Source

v9.1.0

Compare Source

Added
  • Allow opting out of shadowRuntimeElements variant. (#​1662)
    shadow {
      // Disable publishing `shadowRuntimeElements` as an optional variant of the `java` component.
      addShadowVariantIntoJavaComponent = false
    }
    
    // configuration must be done in the `afterEvaluate` phase, you cannot access `shadowRuntimeElements` before that.
    val javaComponent = components["java"] as AdhocComponentWithVariants
    javaComponent.withVariantsFromConfiguration(configurations["shadowRuntimeElements"]) {
      // See more details in https://github.com/GradleUp/shadow/pull/1662.
      skip()
    }
  • Allow opting out of TARGET_JVM_VERSION_ATTRIBUTE. (#​1674)
    shadow {
      // Disable adding `TargetJvmVersion` attribute into the Gradle Module Metadata of the shadowed jar.
      addTargetJvmVersionAttribute = false
    }
  • Allow opting out of Multi-Release attribute. (#​1675)
    tasks.shadowJar {
      // Disable adding `Multi-Release` attribute into the manifest of the shadowed jar.
      addMultiReleaseAttribute = false
    }
Changed
  • Don't inject TargetJvmVersion attribute when automatic JVM targeting is disabled. (#​1666)
  • Do not write modified class files for no-op relocations. (#​1694)
  • BREAKING CHANGE: The introduction of some afterEvaluate usages may cause configuration issues in rare cases.

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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • 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 changed the title fix(deps): update dependency com.gradleup.shadow:com.gradleup.shadow.gradle.plugin to v9.1.0 fix(deps): update dependency com.gradleup.shadow:com.gradleup.shadow.gradle.plugin to v9.2.1 Sep 24, 2025
@renovate renovate bot force-pushed the renovate/com.gradleup.shadow-com.gradleup.shadow.gradle.plugin-9.x branch from ae3c2a6 to 63678c3 Compare September 24, 2025 10:41
@renovate renovate bot changed the title fix(deps): update dependency com.gradleup.shadow:com.gradleup.shadow.gradle.plugin to v9.2.1 fix(deps): update dependency com.gradleup.shadow:com.gradleup.shadow.gradle.plugin to v9.2.2 Sep 26, 2025
@renovate renovate bot force-pushed the renovate/com.gradleup.shadow-com.gradleup.shadow.gradle.plugin-9.x branch from 63678c3 to ce813b1 Compare September 26, 2025 09:47
@renovate renovate bot force-pushed the renovate/com.gradleup.shadow-com.gradleup.shadow.gradle.plugin-9.x branch 2 times, most recently from 2b11338 to 540c519 Compare October 12, 2025 18:00
@renovate renovate bot changed the title fix(deps): update dependency com.gradleup.shadow:com.gradleup.shadow.gradle.plugin to v9.2.2 fix(deps): update dependency com.gradleup.shadow:com.gradleup.shadow.gradle.plugin to v9.3.0 Dec 5, 2025
@renovate renovate bot force-pushed the renovate/com.gradleup.shadow-com.gradleup.shadow.gradle.plugin-9.x branch from 6a97261 to 1926e41 Compare December 5, 2025 17:51
@renovate renovate bot force-pushed the renovate/com.gradleup.shadow-com.gradleup.shadow.gradle.plugin-9.x branch from 1926e41 to f245f8f Compare December 30, 2025 14:31
@renovate renovate bot changed the title fix(deps): update dependency com.gradleup.shadow:com.gradleup.shadow.gradle.plugin to v9.3.0 fix(deps): update dependency com.gradleup.shadow:com.gradleup.shadow.gradle.plugin to v9.3.1 Jan 6, 2026
@renovate renovate bot force-pushed the renovate/com.gradleup.shadow-com.gradleup.shadow.gradle.plugin-9.x branch from f245f8f to 958eced Compare January 6, 2026 08:31
@renovate renovate bot changed the title fix(deps): update dependency com.gradleup.shadow:com.gradleup.shadow.gradle.plugin to v9.3.1 fix(deps): update dependency com.gradleup.shadow:com.gradleup.shadow.gradle.plugin to v9.3.2 Feb 27, 2026
@renovate renovate bot force-pushed the renovate/com.gradleup.shadow-com.gradleup.shadow.gradle.plugin-9.x branch from 958eced to f2719f6 Compare February 27, 2026 12:37
@renovate renovate bot force-pushed the renovate/com.gradleup.shadow-com.gradleup.shadow.gradle.plugin-9.x branch from f2719f6 to 6b7398d Compare March 15, 2026 05:06
@renovate renovate bot changed the title fix(deps): update dependency com.gradleup.shadow:com.gradleup.shadow.gradle.plugin to v9.3.2 fix(deps): update dependency com.gradleup.shadow:com.gradleup.shadow.gradle.plugin to v9.4.0 Mar 15, 2026
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.

0 participants