Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 14, 2025

Bumps the build-dependencies group with 4 updates: net.bytebuddy:byte-buddy, com.puppycrawl.tools:checkstyle, com.github.siom79.japicmp:japicmp-maven-plugin and org.jacoco:jacoco-maven-plugin.

Updates net.bytebuddy:byte-buddy from 1.17.7 to 1.17.8

Release notes

Sourced from net.bytebuddy:byte-buddy's releases.

Byte Buddy 1.17.8

  • Avoid use of types that are deprecated as of Java 26.
  • Include ASM 9.9 that offers ASM support for Java 26.
  • Make sure that generated code internal to Byte Buddy supports CDS if available.
  • Update version of ASM to JDK Class File API bridge to fix some minor bugs related to type annotations.
Changelog

Sourced from net.bytebuddy:byte-buddy's changelog.

8. October 2025: version 1.17.8

  • Avoid use of types that are deprecated as of Java 26.
  • Include ASM 9.9 that offers ASM support for Java 26.
  • Make sure that generated code internal to Byte Buddy supports CDS if available.
  • Update version of ASM to JDK Class File API bridge to fix some minor bugs related to type annotations.
Commits
  • ffd89ff [maven-release-plugin] prepare release byte-buddy-1.17.8
  • 06e63f6 [release] Release new version
  • 2ec5f08 Update checksums.
  • 8b7c507 Update ASM 9.9.
  • 96e6a13 Add missing checksum.
  • a73b91f Add findbugs warning.
  • d5ac122 Write invoker in most recent JVM version to support CDS.
  • e45c1fb Fix code level and add checksums.
  • 203d51b Fix method name for reading super class name.
  • 8b8ef56 Avoid use of types that are deprecated for removal, and add profiles for Java...
  • Additional commits viewable in compare view

Updates com.puppycrawl.tools:checkstyle from 11.1.0 to 12.0.1

Release notes

Sourced from com.puppycrawl.tools:checkstyle's releases.

checkstyle-12.0.1

Checkstyle 12.0.1 - https://checkstyle.org/releasenotes.html#Release_12.0.1

Bug fixes:

#17131 - SARIF report does not contain information about the failing rules

checkstyle-12.0.0

Checkstyle 12.0.0 - https://checkstyle.org/releasenotes.html#Release_12.0.0

Breaking backward compatibility:

#17514 - New ANTLR Grammar for Javadoc Comments

Commits
  • 8f0f4d4 [maven-release-plugin] prepare release checkstyle-12.0.1
  • 69e719e doc: release notes for 12.0.1
  • d0e3833 dependency: bump org.openrewrite.recipe:rewrite-migrate-java from 3.18.0 to 3...
  • 6c06955 Issue #17131: Enhance SARIF output with rules metadata and message IDs
  • 321779f Issue #17882: Update HIDDEN_BLOCK_TAG of JavadocCommentsTokenTypes to the new...
  • 775f75e Issue #16361: Updated testCloseStream
  • 6a37de8 Issue #17882: Update EXCEPTION_BLOCK_TAG of JavadocCommentsTokenTypes
  • 3ed3cf4 Issue #16360: Updated testFileFinished to use verifyWithInlineConfigParserAnd...
  • 140cd4d Issue #17882: Update RETURN_BLOCK_TAG of JavadocCommentsTokenTypes to new AST...
  • 2fc5508 Issue #17882: Update THROWS_BLOCK_TAG of JavadocCommentsTokenTypes to new AST...
  • Additional commits viewable in compare view

Updates com.github.siom79.japicmp:japicmp-maven-plugin from 0.24.1 to 0.24.2

Commits
  • 9954b2c [maven-release-plugin] prepare release japicmp-base-0.24.2
  • 0f19373 upgraded version in *.md files to 0.24.2
  • 253e615 #439 ReleaseNotes.md
  • d486a99 #439 remove phase for maven goal helpmojo
  • c625d4d Merge pull request #440 from siom79/438-failure-with-method_abstract_added_in...
  • ea1ddf0 #438 add another test in GenericsTest
  • 831085c #438 add GenericsTest
  • 1b4792b #438 hasSameParameter() uses template parameter
  • a54a58d Merge pull request #437 from siom79/426-snapshot
  • 6b35dd5 [maven-release-plugin] prepare for next development iteration
  • Additional commits viewable in compare view

Updates org.jacoco:jacoco-maven-plugin from 0.8.13 to 0.8.14

Release notes

Sourced from org.jacoco:jacoco-maven-plugin's releases.

0.8.14

New Features

  • JaCoCo now officially supports Java 25 (GitHub #1950).
  • Experimental support for Java 26 class files (GitHub #1870).
  • Branches added by the Kotlin compiler for default argument number 33 or higher are filtered out during generation of report (GitHub #1655).
  • Part of bytecode generated by the Kotlin compiler for elvis operator that follows safe call operator is filtered out during generation of report (GitHub #1814, #1954).
  • Part of bytecode generated by the Kotlin compiler for more cases of chained safe call operators is filtered out during generation of report (GitHub #1956).
  • Part of bytecode generated by the Kotlin compiler for invocations of suspendCoroutineUninterceptedOrReturn intrinsic is filtered out during generation of report (GitHub #1929).
  • Part of bytecode generated by the Kotlin compiler for suspending lambdas with parameters is filtered out during generation of report (GitHub #1945).
  • Part of bytecode generated by the Kotlin compiler for suspending functions and lambdas with suspension points that return inline value class is filtered out during generation of report (GitHub #1871).
  • Part of bytecode generated by the Kotlin Compose compiler plugin for pausable composition is filtered out during generation of report (GitHub #1911).
  • Methods generated by the Kotlin serialization compiler plugin are filtered out (GitHub #1885, #1970, #1971).

Fixed bugs

  • Fixed handling of implicit else clause of when with String subject in Kotlin (GitHub #1813, #1940).
  • Fixed handling of implicit default clause of switch by String in Java when compiled by ECJ (GitHub #1813, #1940). Fixed handling of exceptions in chains of safe call operators in Kotlin (GitHub #1819).

Non-functional Changes

  • JaCoCo now depends on ASM 9.9 (GitHub #1965).
Commits
  • 2eb2483 Prepare release v0.8.14
  • de76181 KotlinSerializableFilter should filter more methods (#1971)
  • 89c4bd5 Fix NPE in KotlinSerializableFilter (#1970)
  • 0981128 Migrate release staging to the Central Publisher Portal (#1968)
  • d07bc6b Add filter for bytecode generated by Kotlin serialization compiler plugin (#1...
  • 5e35fd5 Upgrade maven-dependency-plugin to 3.9.0 (#1966)
  • c2fe5cc Upgrade ASM to 9.9 (#1965)
  • b0f8e23 KotlinSafeCallOperatorFilter should filter "unoptimized" safe call followed b...
  • c7bd3f4 Upgrade spotless-maven-plugin to 3.0.0 (#1961)
  • faa289d KotlinSafeCallOperatorFilter should not be affected by presence of pseudo ins...
  • Additional commits viewable in compare view

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

Bumps the build-dependencies group with 4 updates: [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy), [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle), [com.github.siom79.japicmp:japicmp-maven-plugin](https://github.com/siom79/japicmp) and [org.jacoco:jacoco-maven-plugin](https://github.com/jacoco/jacoco).


Updates `net.bytebuddy:byte-buddy` from 1.17.7 to 1.17.8
- [Release notes](https://github.com/raphw/byte-buddy/releases)
- [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md)
- [Commits](raphw/byte-buddy@byte-buddy-1.17.7...byte-buddy-1.17.8)

Updates `com.puppycrawl.tools:checkstyle` from 11.1.0 to 12.0.1
- [Release notes](https://github.com/checkstyle/checkstyle/releases)
- [Commits](checkstyle/checkstyle@checkstyle-11.1.0...checkstyle-12.0.1)

Updates `com.github.siom79.japicmp:japicmp-maven-plugin` from 0.24.1 to 0.24.2
- [Release notes](https://github.com/siom79/japicmp/releases)
- [Changelog](https://github.com/siom79/japicmp/blob/master/release.py)
- [Commits](siom79/japicmp@japicmp-base-0.24.1...japicmp-base-0.24.2)

Updates `org.jacoco:jacoco-maven-plugin` from 0.8.13 to 0.8.14
- [Release notes](https://github.com/jacoco/jacoco/releases)
- [Commits](jacoco/jacoco@v0.8.13...v0.8.14)

---
updated-dependencies:
- dependency-name: net.bytebuddy:byte-buddy
  dependency-version: 1.17.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: build-dependencies
- dependency-name: com.puppycrawl.tools:checkstyle
  dependency-version: 12.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: build-dependencies
- dependency-name: com.github.siom79.japicmp:japicmp-maven-plugin
  dependency-version: 0.24.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: build-dependencies
- dependency-name: org.jacoco:jacoco-maven-plugin
  dependency-version: 0.8.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: build-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Oct 14, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update Java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant