dependabot[bot] opened a new pull request, #36310:
URL: https://github.com/apache/beam/pull/36310

   Bumps 
[com.gradleup.shadow:shadow-gradle-plugin](https://github.com/GradleUp/shadow) 
from 8.3.8 to 9.2.2.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/GradleUp/shadow/releases";>com.gradleup.shadow:shadow-gradle-plugin's
 releases</a>.</em></p>
   <blockquote>
   <h2>9.2.2</h2>
   <h3>Fixed</h3>
   <ul>
   <li>Fix the regression of registering <code>ShadowJar</code> tasks without 
<code>ShadowPlugin</code> applied. (<a 
href="https://redirect.github.com/GradleUp/shadow/pull/1787";>#1787</a>)</li>
   </ul>
   <h2>9.2.1</h2>
   <h3>Added</h3>
   <ul>
   <li>Support relocating Groovy extensions in Module descriptors. (<a 
href="https://redirect.github.com/GradleUp/shadow/pull/1705";>#1705</a>)</li>
   <li>Add extensions for <code>Iterable&lt;Relocator&gt;</code>. (<a 
href="https://redirect.github.com/GradleUp/shadow/pull/1710";>#1710</a>)</li>
   <li>Support relocating list of types in <code>RelocatorRemapper</code>. (<a 
href="https://redirect.github.com/GradleUp/shadow/pull/1714";>#1714</a>)</li>
   <li>Add <code>mainClass</code> property into <code>ShadowJar</code>. (<a 
href="https://redirect.github.com/GradleUp/shadow/pull/1722";>#1722</a>)
   <pre lang="kotlin"><code>tasks.shadowJar {
     // This property will be used as a fallback if there is no explicit 
`Main-Class` attribute set.
     mainClass = &quot;my.Main&quot;
   }
   </code></pre>
   </li>
   <li>Honor <code>executableDir</code> and <code>applicationName</code> in 
<code>application</code> extension. (<a 
href="https://redirect.github.com/GradleUp/shadow/pull/1738";>#1740</a>)<br />
   This is useful when you want to customize the output directory of the start 
scripts and the application distribution.</li>
   <li>Provide more task accessors in 
<code>ShadowApplicationPlugin.Companion</code>. (<a 
href="https://redirect.github.com/GradleUp/shadow/pull/1771";>#1771</a>)</li>
   <li>Support relocating Kotlin module files. (<a 
href="https://redirect.github.com/GradleUp/shadow/pull/1539";>#1539</a>)<br />
   The current implementation relocates all properties in 
<code>KotlinModuleMetadata</code> but 
<code>KmModule.optionalAnnotationClasses</code>
   due to very limited usage of it. See more discussion <a 
href="https://redirect.github.com/GradleUp/shadow/pull/1539#discussion_r2344237151";>here</a>.</li>
   <li>Allow overriding <code>BUNDLING_ATTRIBUTE</code> in GMM. (<a 
href="https://redirect.github.com/GradleUp/shadow/pull/1773";>#1773</a>)<br />
   The <code>org.gradle.dependency.bundling</code> in shadowed JAR's Gradle 
Module Metadata is set to <code>shadowed</code> by default.
   You can override it for now by:
   <pre lang="kotlin"><code>shadow {
     bundlingAttribute = Bundling.EMBEDDED
   }
   </code></pre>
   </li>
   </ul>
   <h3>Changed</h3>
   <ul>
   <li>Merge Gradle Module descriptors into the modern <code>META-INF</code> 
path. (<a 
href="https://redirect.github.com/GradleUp/shadow/pull/1706";>#1706</a>)<br />
   The Gradle Module descriptors 
(<code>org.codehaus.groovy.runtime.ExtensionModule</code> files) defined under 
<code>META-INF/services/</code>
   and <code>META-INF/groovy</code> will be merged into 
<code>META-INF/groovy/org.codehaus.groovy.runtime.ExtensionModule</code>.</li>
   <li>Move injecting <code>Class-Path</code> manifest attr logic from 
<code>doFirst</code> into <code>copy</code>. (<a 
href="https://redirect.github.com/GradleUp/shadow/pull/1720";>#1720</a>)</li>
   <li>Move injecting <code>Main-Class</code> manifest attr logic from 
<code>doFirst</code> into <code>copy</code>. (<a 
href="https://redirect.github.com/GradleUp/shadow/pull/1724";>#1724</a>)</li>
   <li>Deprecate <code>InheritManifest</code> and <code>inheritFrom</code>. (<a 
href="https://redirect.github.com/GradleUp/shadow/pull/1722";>#1722</a>)
   <pre lang="kotlin"><code>tasks.shadowJar {
     // Before (deprecated):
     manifest.inheritFrom(tasks.jar.get().manifest)
     // After (recommended):
     manifest.from(tasks.jar.get().manifest)
   <p>// Note: You don't need to inherit the manifest from <code>jar</code> 
task as it's done by default for the <code>shadowJar</code> task.<br />
   // But if you want to inherit the manifest for your custom 
<code>ShadowJar</code> task, you still need to do it explicitly.<br />
   </code></pre></p>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/GradleUp/shadow/commit/1245cda0c17f10c9da73abb5ede230d556df90bd";><code>1245cda</code></a>
 Prepare version 9.2.2</li>
   <li><a 
href="https://github.com/GradleUp/shadow/commit/a9bf7b5e4b8cbf5b87a4ff044904c60f11a3ffe4";><code>a9bf7b5</code></a>
 Fix the link for 9.2.1</li>
   <li><a 
href="https://github.com/GradleUp/shadow/commit/722b9b883acba387edc15b7195828e5aeb2ab4ea";><code>722b9b8</code></a>
 Fix the regression of registering ShadowJar tasks without ShadowPlugin 
applie...</li>
   <li><a 
href="https://github.com/GradleUp/shadow/commit/f36fadf19065bd4c4db235b5f5bad4a1b7ec4dca";><code>f36fadf</code></a>
 Tweak manifest attribute tests (<a 
href="https://redirect.github.com/GradleUp/shadow/issues/1786";>#1786</a>)</li>
   <li><a 
href="https://github.com/GradleUp/shadow/commit/21f26132bf75b83c390c6ed1c21b12b73ed620c5";><code>21f2613</code></a>
 Document more about deprecated inheritFrom (<a 
href="https://redirect.github.com/GradleUp/shadow/issues/1783";>#1783</a>)</li>
   <li><a 
href="https://github.com/GradleUp/shadow/commit/bd7f137e0123c093302befa1ff204e64c76ede45";><code>bd7f137</code></a>
 Inline suppressions for InternalGradleApiUsage (<a 
href="https://redirect.github.com/GradleUp/shadow/issues/1780";>#1780</a>)</li>
   <li><a 
href="https://github.com/GradleUp/shadow/commit/3474bea07dd46bcea31d55e1a9e81a29315734de";><code>3474bea</code></a>
 Update plugin spotless to v8 (<a 
href="https://redirect.github.com/GradleUp/shadow/issues/1778";>#1778</a>)</li>
   <li><a 
href="https://github.com/GradleUp/shadow/commit/8f3a5e725f3befaec26ac821a22a93852b672675";><code>8f3a5e7</code></a>
 Prepare next development version</li>
   <li><a 
href="https://github.com/GradleUp/shadow/commit/75e4e0fb205da2b0c4d2574a89f3bd779b654da4";><code>75e4e0f</code></a>
 Prepare version 9.2.1</li>
   <li><a 
href="https://github.com/GradleUp/shadow/commit/698ff03689526ba51bbdecdc67e0df1f66e5ab7f";><code>698ff03</code></a>
 Prepare next development version</li>
   <li>Additional commits viewable in <a 
href="https://github.com/GradleUp/shadow/compare/8.3.8...9.2.2";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.gradleup.shadow:shadow-gradle-plugin&package-manager=gradle&previous-version=8.3.8&new-version=9.2.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show <dependency name> ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to