renovate-bot opened a new pull request, #2661:
URL: https://github.com/apache/polaris/pull/2661

   This PR contains the following updates:
   
   | Package | Change | Age | Confidence |
   |---|---|---|---|
   | 
[com.gradleup.shadow:shadow-gradle-plugin](https://redirect.github.com/GradleUp/shadow)
 | `9.1.0` -> `9.2.1` | 
[![age](https://developer.mend.io/api/mc/badges/age/maven/com.gradleup.shadow:shadow-gradle-plugin/9.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
 | 
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/com.gradleup.shadow:shadow-gradle-plugin/9.1.0/9.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
 |
   
   ---
   
   > [!WARNING]
   > Some dependencies could not be looked up. Check the Dependency Dashboard 
for more information.
   
   ---
   
   ### Release Notes
   
   <details>
   <summary>GradleUp/shadow (com.gradleup.shadow:shadow-gradle-plugin)</summary>
   
   ### 
[`v9.2.1`](https://redirect.github.com/GradleUp/shadow/releases/tag/9.2.1)
   
   ##### Added
   
   - Support relocating Groovy extensions in Module descriptors. 
([#&#8203;1705](https://redirect.github.com/GradleUp/shadow/pull/1705))
   - Add extensions for `Iterable<Relocator>`. 
([#&#8203;1710](https://redirect.github.com/GradleUp/shadow/pull/1710))
   - Support relocating list of types in `RelocatorRemapper`. 
([#&#8203;1714](https://redirect.github.com/GradleUp/shadow/pull/1714))
   - Add `mainClass` property into `ShadowJar`. 
([#&#8203;1722](https://redirect.github.com/GradleUp/shadow/pull/1722))
     ```kotlin
     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. 
([#&#8203;1740](https://redirect.github.com/GradleUp/shadow/pull/1738))\
     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`. 
([#&#8203;1771](https://redirect.github.com/GradleUp/shadow/pull/1771))
   - Support relocating Kotlin module files. 
([#&#8203;1539](https://redirect.github.com/GradleUp/shadow/pull/1539))\
     The current implementation relocates all properties in 
`KotlinModuleMetadata` but `KmModule.optionalAnnotationClasses`
     due to very limited usage of it. See more discussion 
[here](https://redirect.github.com/GradleUp/shadow/pull/1539#discussion_r2344237151).
   - Allow overriding `BUNDLING_ATTRIBUTE` in GMM. 
([#&#8203;1773](https://redirect.github.com/GradleUp/shadow/pull/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:
     ```kotlin
     shadow {
       bundlingAttribute = Bundling.EMBEDDED
     }
     ```
   
   ##### Changed
   
   - Merge Gradle Module descriptors into the modern `META-INF` path. 
([#&#8203;1706](https://redirect.github.com/GradleUp/shadow/pull/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`. ([#&#8203;1720](https://redirect.github.com/GradleUp/shadow/pull/1720))
   - Move injecting `Main-Class` manifest attr logic from `doFirst` into 
`copy`. ([#&#8203;1724](https://redirect.github.com/GradleUp/shadow/pull/1724))
   - Deprecate `InheritManifest`. 
([#&#8203;1722](https://redirect.github.com/GradleUp/shadow/pull/1722))
   - Use default `JavaExec` error message when main class is not set. 
([#&#8203;1725](https://redirect.github.com/GradleUp/shadow/pull/1725))
   - Update `RelocatorRemapper` class pattern to cover more Java method 
descriptors. 
([#&#8203;1731](https://redirect.github.com/GradleUp/shadow/pull/1731))
   - Stop using start script templates bundled in Shadow. 
([#&#8203;1738](https://redirect.github.com/GradleUp/shadow/pull/1738))
   - Bump min Java requirement to 17. 
([#&#8203;1744](https://redirect.github.com/GradleUp/shadow/pull/1744))
   - Require most optional properties non-null. 
([#&#8203;1745](https://redirect.github.com/GradleUp/shadow/pull/1745))
   - Make assemble depend on shadowJar even if it is added later. 
([#&#8203;1766](https://redirect.github.com/GradleUp/shadow/pull/1766))
   
   ##### Fixed
   
   - Fix excluding dependencies whose versions contain `+`. 
([#&#8203;1597](https://redirect.github.com/GradleUp/shadow/pull/1597))
   
   ### 
[`v9.2.0`](https://redirect.github.com/GradleUp/shadow/releases/tag/9.2.0)
   
   [Compare 
Source](https://redirect.github.com/GradleUp/shadow/compare/9.1.0...9.2.0)
   
   ##### Added
   
   - Support relocating Groovy extensions in Module descriptors. 
([#&#8203;1705](https://redirect.github.com/GradleUp/shadow/pull/1705))
   - Add extensions for `Iterable<Relocator>`. 
([#&#8203;1710](https://redirect.github.com/GradleUp/shadow/pull/1710))
   - Support relocating list of types in `RelocatorRemapper`. 
([#&#8203;1714](https://redirect.github.com/GradleUp/shadow/pull/1714))
   - Add `mainClass` property into `ShadowJar`. 
([#&#8203;1722](https://redirect.github.com/GradleUp/shadow/pull/1722))
     ```kotlin
     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. 
([#&#8203;1740](https://redirect.github.com/GradleUp/shadow/pull/1738))\
     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`. 
([#&#8203;1771](https://redirect.github.com/GradleUp/shadow/pull/1771))
   - Support relocating Kotlin module files. 
([#&#8203;1539](https://redirect.github.com/GradleUp/shadow/pull/1539))\
     The current implementation relocates all properties in 
`KotlinModuleMetadata` but `KmModule.optionalAnnotationClasses`
     due to very limited usage of it. See more discussion 
[here](https://redirect.github.com/GradleUp/shadow/pull/1539#discussion_r2344237151).
   
   ##### Changed
   
   - Merge Gradle Module descriptors into the modern `META-INF` path. 
([#&#8203;1706](https://redirect.github.com/GradleUp/shadow/pull/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`. ([#&#8203;1720](https://redirect.github.com/GradleUp/shadow/pull/1720))
   - Move injecting `Main-Class` manifest attr logic from `doFirst` into 
`copy`. ([#&#8203;1724](https://redirect.github.com/GradleUp/shadow/pull/1724))
   - Deprecate `InheritManifest`. 
([#&#8203;1722](https://redirect.github.com/GradleUp/shadow/pull/1722))
   - Use default `JavaExec` error message when main class is not set. 
([#&#8203;1725](https://redirect.github.com/GradleUp/shadow/pull/1725))
   - Update `RelocatorRemapper` class pattern to cover more Java method 
descriptors. 
([#&#8203;1731](https://redirect.github.com/GradleUp/shadow/pull/1731))
   - Stop using start script templates bundled in Shadow. 
([#&#8203;1738](https://redirect.github.com/GradleUp/shadow/pull/1738))
   - Bump min Java requirement to 17. 
([#&#8203;1744](https://redirect.github.com/GradleUp/shadow/pull/1744))
   - Require most optional properties non-null. 
([#&#8203;1745](https://redirect.github.com/GradleUp/shadow/pull/1745))
   - Make assemble depend on shadowJar even if it is added later. 
([#&#8203;1766](https://redirect.github.com/GradleUp/shadow/pull/1766))
   
   ##### Fixed
   
   - Fix excluding dependencies whose versions contain `+`. 
([#&#8203;1597](https://redirect.github.com/GradleUp/shadow/pull/1597))
   
   </details>
   
   ---
   
   ### 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.
   
   ---
   
    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this 
box
   
   ---
   
   This PR was generated by [Mend Renovate](https://mend.io/renovate/). View 
the [repository job log](https://developer.mend.io/github/apache/polaris).
   
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45Ny4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjk3LjEwIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJyZW5vdmF0ZS1wb2xhcmlzIl19-->
   


-- 
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