Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 24, 2025

Bumps the gradle group with 5 updates in the / directory:

Package From To
com.opencastsoftware:prettier4j 0.3.0 0.3.2
org.assertj:assertj-core 3.27.4 3.27.6
com.google.testing.compile:compile-testing 0.21.0 0.23.0
com.gradleup.shadow 9.0.2 9.2.1
org.jreleaser 1.19.0 1.20.0

Updates com.opencastsoftware:prettier4j from 0.3.0 to 0.3.2

Release notes

Sourced from com.opencastsoftware:prettier4j's releases.

0.3.2

0.3.1

  • Added Doc.margin to enable prefixing the lines of a Doc with a margin document.
  • Added Doc.wrapText to enable efficient line wrapping of Strings.
  • Added Doc.link to enable hyperlink escape sequences to be produced.
Commits
  • 48a56fc Merge pull request #155 from opencastsoftware/align-document
  • 7e33de9 Add .toString testing for Align
  • 2b26dc4 Apply suggestions provided by Federico, add an instance method for alignment ...
  • 006e6d4 Test .equals and .hashCode for Align
  • 699c6f9 Add a test case for the alignment example provided by @​FedericoPonzi
  • 5f846ce WIP: Add Doc.align that aligns subsequent line breaks to the current line pos...
  • 40a9cdf Update dependency org.apache.commons:commons-text to v1.14.0 (#149)
  • 9247dea Update dependency gradle to v8.14.3 (#148)
  • 9610e78 Update dependency gradle to v8.14.2 (#142)
  • dd570d4 Merge pull request #139 from opencastsoftware/renovate/gradle-actions-digest
  • Additional commits viewable in compare view

Updates org.assertj:assertj-core from 3.27.4 to 3.27.6

Release notes

Sourced from org.assertj:assertj-core's releases.

v3.27.6

🐛 Bug Fixes

Core

  • Add missing export for org.assertj.core.annotation #3951

❤️ Contributors

Thanks to all the contributors who worked on this release:

@​duponter

v3.27.5

⚡ Improvements

Core

  • ByteBuddy in AssertJ 3.27.4 not compatible with Java 25 #3946

🔨 Dependency Upgrades

Core

  • Upgrade to Byte Buddy 1.17.7 #3947
  • Upgrade to JUnit BOM 5.13.4 #3947

Guava

  • Upgrade to Guava 33.4.8-jre #3947
Commits
  • 716b1e0 [maven-release-plugin] prepare release assertj-build-3.27.6
  • e189652 Add missing export for org.assertj.core.annotation (#3951)
  • 0cb489e Update Maven Central URL
  • 7286309 [maven-release-plugin] prepare for next development iteration
  • dd4cc1d [maven-release-plugin] prepare release assertj-build-3.27.5
  • 1d0defc Add missing permission to release workflow
  • 844d5d0 Add missing GitHub Actions pinning to CodeQL workflow
  • bdd7106 Add CodeQL custom workflow
  • a93d7e6 Remove EOL Java 24
  • 26ea866 Update production dependencies (#3947)
  • Additional commits viewable in compare view

Updates com.google.testing.compile:compile-testing from 0.21.0 to 0.23.0

Release notes

Sourced from com.google.testing.compile:compile-testing's releases.

0.23.0

  • Bumped Compile-Testing's Truth dependency to 1.4.5, which depends on the same JSpecify version as Compile-Testing itself does (1.0.0).

0.22.0

  • With this release, users must pass three additional --add-exports lines:
    • --add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED
    • --add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED
    • --add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED
  • Improve handling of parse errors. (044a5a5)
  • Fixed Compiler.compile to ensure that it doesn't leak file descriptors. (972ac1e)
  • Removed the AutoValue processor from the runtime dependencies of Compile-Testing. (6d8ea27)
Commits
  • b403e86 Set version number for compile-testing to 0.23.0.
  • 3e70649 Bump Truth to 1.4.5.
  • ed71bbf Add a developer entry, as required by Sonatype in recent years.
  • 9a21460 Fix Javadoc problems under JDK 21.
  • 6d8ea27 Omit auto-value from runtime classpath
  • 578b79f Bump the github-actions group with 2 updates
  • 0595973 Don't bother to explicitly set [publishingServerId](https://central.sonatyp...
  • 52796da Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.11.2 to 3.11.3 in t...
  • 5c2484c Remove \<groupId>org.apache.maven.plugins\</groupId>.
  • f74b3d0 Migrate to central-publishing-maven-plugin and off oss-parent.
  • Additional commits viewable in compare view

Updates com.gradleup.shadow from 9.0.2 to 9.2.1

Release notes

Sourced from com.gradleup.shadow's releases.

9.2.1

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 Gradle 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. (#1722)
  • 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)

9.1.0

Added

... (truncated)

Commits
  • 75e4e0f Prepare version 9.2.1
  • 698ff03 Prepare next development version
  • 3ee7f82 Merge tag '9.2.0'
  • 637dd00 Prepare version 9.2.0
  • b613233 Allow overriding BUNDLING_ATTRIBUTE in GMM (#1773)
  • 2c0e8e6 Document embedding non-JAR dependencies (#1777)
  • 35c5fdb Revert "Create copilot-instructions.md with project details (#1761)"
  • 98262fe Update dependency org.apache.logging.log4j:log4j-core to v2.25.2 (#1775)
  • fbd4aac Delete .github/ISSUE_TEMPLATE.md
  • 42ac08a Remove outdated TODO for Gradle issue 22779
  • Additional commits viewable in compare view

Updates org.jreleaser from 1.19.0 to 1.20.0

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 commands and options

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies This issue is a problem in a dependency. java Pull requests that update java code labels Sep 24, 2025
@dependabot dependabot bot requested a review from a team as a code owner September 24, 2025 17:04
@dependabot dependabot bot added the dependencies This issue is a problem in a dependency. label Sep 24, 2025
@dependabot dependabot bot requested a review from JordonPhillips September 24, 2025 17:04
@dependabot dependabot bot added the java Pull requests that update java code label Sep 24, 2025
Bumps the gradle group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [com.opencastsoftware:prettier4j](https://github.com/opencastsoftware/prettier4j) | `0.3.0` | `0.3.2` |
| [org.assertj:assertj-core](https://github.com/assertj/assertj) | `3.27.4` | `3.27.6` |
| [com.google.testing.compile:compile-testing](https://github.com/google/compile-testing) | `0.21.0` | `0.23.0` |
| [com.gradleup.shadow](https://github.com/GradleUp/shadow) | `9.0.2` | `9.2.1` |
| org.jreleaser | `1.19.0` | `1.20.0` |



Updates `com.opencastsoftware:prettier4j` from 0.3.0 to 0.3.2
- [Release notes](https://github.com/opencastsoftware/prettier4j/releases)
- [Commits](opencastsoftware/prettier4j@v0.3.0...v0.3.2)

Updates `org.assertj:assertj-core` from 3.27.4 to 3.27.6
- [Release notes](https://github.com/assertj/assertj/releases)
- [Commits](assertj/assertj@assertj-build-3.27.4...assertj-build-3.27.6)

Updates `com.google.testing.compile:compile-testing` from 0.21.0 to 0.23.0
- [Release notes](https://github.com/google/compile-testing/releases)
- [Commits](google/compile-testing@v0.21.0...v0.23.0)

Updates `com.gradleup.shadow` from 9.0.2 to 9.2.1
- [Release notes](https://github.com/GradleUp/shadow/releases)
- [Commits](GradleUp/shadow@9.0.2...9.2.1)

Updates `org.jreleaser` from 1.19.0 to 1.20.0

---
updated-dependencies:
- dependency-name: com.opencastsoftware:prettier4j
  dependency-version: 0.3.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle
- dependency-name: org.assertj:assertj-core
  dependency-version: 3.27.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle
- dependency-name: com.google.testing.compile:compile-testing
  dependency-version: 0.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: com.gradleup.shadow
  dependency-version: 9.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: org.jreleaser
  dependency-version: 1.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/gradle/gradle-f89fe5feb8 branch from 01d40a8 to c3b12a2 Compare October 1, 2025 17:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies This issue is a problem in a dependency. java Pull requests that update java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants