Skip to content

Bump the dev-dependencies group with 7 updates#1

Merged
github-actions[bot] merged 1 commit intomainfrom
dependabot/gradle/dev-dependencies-73444031b1
Mar 6, 2026
Merged

Bump the dev-dependencies group with 7 updates#1
github-actions[bot] merged 1 commit intomainfrom
dependabot/gradle/dev-dependencies-73444031b1

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 6, 2026

Bumps the dev-dependencies group with 7 updates:

Package From To
com.google.dagger:dagger 2.55 2.59.2
com.google.dagger:dagger-compiler 2.55 2.59.2
com.h2database:h2 2.3.232 2.4.240
org.jdbi:jdbi3-core 3.45.4 3.51.0
com.zaxxer:HikariCP 5.1.0 7.0.2
com.gradleup.shadow 8.3.6 9.3.2
gradle-wrapper 9.3.1 9.4.0

Updates com.google.dagger:dagger from 2.55 to 2.59.2

Release notes

Sourced from com.google.dagger:dagger's releases.

Dagger 2.59.2

Bug fixes:

  • Fixed #5116,#5099: Replaced Hilt's "android-classes" transform with attribute rules (f7e31b857)
  • Fixed #5122: Fixed issue with slow incremental builds introduced by HiltSyncTask in AGP 9 support (1be57655b)

Dagger 2.59.1

Bug fixes:

  • Fixed #5099: Fixes compilation error with jetifierEnabled=true in AGP 9 (8dcce8790)
  • Fixed #5098: Updated minimum required AGP version to 9.0.0 to make it clearer this is a requirement when using the Hilt Gradle plugin. (141e5941a)

Dagger 2.59

Breaking changes:

(If you do not use Hilt or the Hilt Gradle plugin, this change does not affect you.)

This release adds AGP 9 support for the Hilt Gradle plugin. This means that if you use the Hilt Gradle Plugin, AGP 9 is now a requirement along with AGP 9’s own requirements like Gradle 9.1+ (https://developer.android.com/build/releases/agp-9-0-0-release-notes).

Note: AGP 9 also seems to cause issues with enableJetifier=true (see #5099). This will be fixed in a follow-up release.

Bug fixes/features:

  • Fixed #4944, #4979: Support AGP 9 in HiltGradlePlugin (6afd7ea5a0fb84a38f2d23c990ddbd95e728a39d)

Dagger 2.58

Note: AGP 9 support was held back from this release (google/dagger#5061) because it forces users onto AGP 9. It will be available in the next Dagger release (e92e3f392).

Potential breaking changes:

  • Flipped default for dagger.useBindingGraphFix to enabled (d41e8362b). See https://dagger.dev/dev-guide/compiler-options#useBindingGraphFix. Fix: If this change breaks you it’s likely due to providing a binding in an incorrect module, (e.g. the binding requests an Activity but is installed in the SingletonComponent). The fix is to move the @Provides so that it is installed into the correct component (e.g. the ActivityComponent instead of SingletonComponent). You can also set dagger.useBindingGraphFix=disabled but note that this flag is only temporary and will eventually be removed.
  • The use of abstract var in components is now banned in super types. The reason for this change is that an abstract var property creates both a getter and a setter on the component which is almost always unintentional. Fix: If this change breaks you, use either an abstract val foo: Foo if you need a getter or abstract fun inject(foo: Foo) if you need an inject method. Note that abstract var is already banned if it is declared directly on the @Component class/interface, but this change fixes the check so that it’s banned even if it’s inherited from a super type.

Bug fixes/features:

  • Fixes #1116, #1630, Supported Map<K, Lazy<V>> as a multibinding request type. (7f981a4c3)
  • Fixes #3601. No longer adds a deprecation warning for unused dependencies on setters on the component builder. (1cf9dfc96)
  • Fixes #4982:
    • Added validation to prevent using Java keywords in Dagger-generated code (72e21a828)
    • Added error for binding elements names that are Java keywords. (38071c5ae)
    • Java keyword validation is now performed earlier during the superficial validation stage. (7f6f7bda7)

Dagger 2.57.2

Bug fixes

  • Fixed #4847: Fixed an issue with the Hilt Gradle Plugin registered transforms on projects using Gradle 9.0.0 (ea570e7)
  • Fixes #4898: Fixed an issue with backwards compatibility handling for libraries that export Hilt roots. (85c470ca4)
  • Fixes #4937: Fixed the incorrectly declared version of the Kotlin stdlib dependency in the Hilt Gradle Plugin. (deefd9a2d)
  • Updated ASM dependency to 9.8 (365bc499d)

... (truncated)

Commits
  • 118f2e5 2.59.2 release
  • 1be5765 Change HiltSyncTask to extend DefaultTask instead of Sync.
  • f7e31b8 Replace Hilt's "android-classes" transform with attribute rules.
  • 5909005 Automated Code Change
  • 3507b0d Support nullability in Switching Providers
  • 1900560 Internal changes
  • 8c69595 Update Dagger yml and README with new latest version number.
  • 1dbb1dd Internal refactoring
  • 62b5423 Internal changes
  • 8dcce87 Add AggregatedPackagesTransform for "android-classes" artifact type.
  • Additional commits viewable in compare view

Updates com.google.dagger:dagger-compiler from 2.55 to 2.59.2

Release notes

Sourced from com.google.dagger:dagger-compiler's releases.

Dagger 2.59.2

Bug fixes:

  • Fixed #5116,#5099: Replaced Hilt's "android-classes" transform with attribute rules (f7e31b857)
  • Fixed #5122: Fixed issue with slow incremental builds introduced by HiltSyncTask in AGP 9 support (1be57655b)

Dagger 2.59.1

Bug fixes:

  • Fixed #5099: Fixes compilation error with jetifierEnabled=true in AGP 9 (8dcce8790)
  • Fixed #5098: Updated minimum required AGP version to 9.0.0 to make it clearer this is a requirement when using the Hilt Gradle plugin. (141e5941a)

Dagger 2.59

Breaking changes:

(If you do not use Hilt or the Hilt Gradle plugin, this change does not affect you.)

This release adds AGP 9 support for the Hilt Gradle plugin. This means that if you use the Hilt Gradle Plugin, AGP 9 is now a requirement along with AGP 9’s own requirements like Gradle 9.1+ (https://developer.android.com/build/releases/agp-9-0-0-release-notes).

Note: AGP 9 also seems to cause issues with enableJetifier=true (see #5099). This will be fixed in a follow-up release.

Bug fixes/features:

  • Fixed #4944, #4979: Support AGP 9 in HiltGradlePlugin (6afd7ea5a0fb84a38f2d23c990ddbd95e728a39d)

Dagger 2.58

Note: AGP 9 support was held back from this release (google/dagger#5061) because it forces users onto AGP 9. It will be available in the next Dagger release (e92e3f392).

Potential breaking changes:

  • Flipped default for dagger.useBindingGraphFix to enabled (d41e8362b). See https://dagger.dev/dev-guide/compiler-options#useBindingGraphFix. Fix: If this change breaks you it’s likely due to providing a binding in an incorrect module, (e.g. the binding requests an Activity but is installed in the SingletonComponent). The fix is to move the @Provides so that it is installed into the correct component (e.g. the ActivityComponent instead of SingletonComponent). You can also set dagger.useBindingGraphFix=disabled but note that this flag is only temporary and will eventually be removed.
  • The use of abstract var in components is now banned in super types. The reason for this change is that an abstract var property creates both a getter and a setter on the component which is almost always unintentional. Fix: If this change breaks you, use either an abstract val foo: Foo if you need a getter or abstract fun inject(foo: Foo) if you need an inject method. Note that abstract var is already banned if it is declared directly on the @Component class/interface, but this change fixes the check so that it’s banned even if it’s inherited from a super type.

Bug fixes/features:

  • Fixes #1116, #1630, Supported Map<K, Lazy<V>> as a multibinding request type. (7f981a4c3)
  • Fixes #3601. No longer adds a deprecation warning for unused dependencies on setters on the component builder. (1cf9dfc96)
  • Fixes #4982:
    • Added validation to prevent using Java keywords in Dagger-generated code (72e21a828)
    • Added error for binding elements names that are Java keywords. (38071c5ae)
    • Java keyword validation is now performed earlier during the superficial validation stage. (7f6f7bda7)

Dagger 2.57.2

Bug fixes

  • Fixed #4847: Fixed an issue with the Hilt Gradle Plugin registered transforms on projects using Gradle 9.0.0 (ea570e7)
  • Fixes #4898: Fixed an issue with backwards compatibility handling for libraries that export Hilt roots. (85c470ca4)
  • Fixes #4937: Fixed the incorrectly declared version of the Kotlin stdlib dependency in the Hilt Gradle Plugin. (deefd9a2d)
  • Updated ASM dependency to 9.8 (365bc499d)

... (truncated)

Commits
  • 118f2e5 2.59.2 release
  • 1be5765 Change HiltSyncTask to extend DefaultTask instead of Sync.
  • f7e31b8 Replace Hilt's "android-classes" transform with attribute rules.
  • 5909005 Automated Code Change
  • 3507b0d Support nullability in Switching Providers
  • 1900560 Internal changes
  • 8c69595 Update Dagger yml and README with new latest version number.
  • 1dbb1dd Internal refactoring
  • 62b5423 Internal changes
  • 8dcce87 Add AggregatedPackagesTransform for "android-classes" artifact type.
  • Additional commits viewable in compare view

Updates com.h2database:h2 from 2.3.232 to 2.4.240

Release notes

Sourced from com.h2database:h2's releases.

Version 2.4.240

... (truncated)

Commits
  • c8eb81b in preparation for a release
  • 7ff5ee5 Merge pull request #4260 from JackPGreen/update-maven-central-url
  • da4c337 Merge pull request #4271 from IrisesD/master
  • d053544 feat: allow CATALOG in CREATE SCHEMA and DROP SCHEMA (#4277)
  • a448d91 Merge pull request #4273 from naive924/feat/compactThreads
  • 6672123 fix: change log
  • 858e74a fix: MVStore.compact: run map copy in parallel by default (¼ cores, override ...
  • bce0ec1 feat: parallel map copy option for MVStore.compact()
  • d8a6cc3 Fix command syntax in help.csv
  • c45413c Merge pull request #4266 from andreitokar/issue-4208-2
  • Additional commits viewable in compare view

Updates org.jdbi:jdbi3-core from 3.45.4 to 3.51.0

Release notes

Sourced from org.jdbi:jdbi3-core's releases.

3.51.0

  • Add new jackson3 artifact for Jackson 3 ( #2878 )

  • Support configuring log level for SqlLogger (#2901, thanks @​phinjensen! )

  • Update to SLF4J 2, to allow for configurable log levels in SqlLogger (#2902)

  • Deprecate for removal installPlugins plugin discovery. It's too easy to get yourself into trouble.

  • Support TYPE_USE @Nullable annotations like JSpecify ( #2899, thanks @​protocol7 ! )

  • Allow @GetGeneratedKeys on @SqlUpdate methods to return multiple results as Lists or arrays (#2897, original PR by @​aharin, thank you!)

3.50.0

JDK Baseline Update

3.50.0 is the first release of Jdbi to require Java 17. Thank you Java 11 for your service! We intend to do occasional bug patches for significant bugs or security issues but there will be no further active development work.

Experimental Java Native support

3.50.0 is the first release to support using Jdbi directly in native compilation. We only support using the Java 25+ GraalVM toolchain and fully expect that there are bugs, breakages and things that are not working well. If you use Jdbi in a native environment and find any problems, we would be thrilled to get bug reports!

  • CI verifies Jdbi runs well in GraalVM native-image (#2476, thanks @​Eng-Fouad !)
  • 3.50.0 contains no bug fixes, user visible code or API changes compared to 3.49.6.

3.49.6

We have some problems with our upstream parent POM. There are changes to Maven Central that require us to roll the parent POM into the Jdbi project. This is a temporary thing and will go away as soon as uploading parent poms to Central has been reenabled.

  • Add support for PGvector types (#2830)
  • Improve concurrency of statement cache loading (#2834)
  • ExtensionHandler interface pulls out handling of target object into new AttachedExtensionHandler interface (#2828)
  • collectInto supports types that do not implement Collection ( #2849, thanks @​mattbertolini !)

Note that with the release of Java 25, this will be the last release to support Java 11!

3.49.5

  • Fix SerializableTransactionRunner retry with failures wrapped in batch exceptions

Jdbi3 3.49.4

  • Add experimental support for Kotlin Value types as arguments and columns (#2790, suggested and aided by @​SpyMachine)

3.49.3

  • Only use JFR if the flight recorder was registered (#2736)

3.49.2

  • Fix returning long update count from update statements (#2778)
  • Fix JFR usage on GraalVM (#2736)
  • Fix SBOM creation

3.49.1

... (truncated)

Changelog

Sourced from org.jdbi:jdbi3-core's changelog.

3.51.0

  • Add new jackson3 artifact for Jackson 3 ( #2878 )

  • Support configuring log level for SqlLogger (#2901, thanks @​phinjensen! )

  • Update to SLF4J 2, to allow for configurable log levels in SqlLogger (#2902)

  • Deprecate for removal installPlugins plugin discovery. It's too easy to get yourself into trouble.

  • Support TYPE_USE @Nullable annotations like JSpecify ( #2899, thanks @​protocol7 ! )

  • Allow @GetGeneratedKeys on @SqlUpdate methods to return multiple results as Lists or arrays (#2897, original PR by @​aharin, thank you!)

3.50.0

JDK Baseline Update

3.50.0 is the first release of Jdbi to require Java 17. Thank you Java 11 for your service! We intend to do occasional bug patches for significant bugs or security issues but there will be no further active development work.

Experimental Java Native support 3.50.0 is the first release to support using Jdbi directly in native compilation. We only support using the Java 25+ GraalVM toolchain and fully expect that there are bugs, breakages and things that are not working well. If you use Jdbi in a native environment and find any problems, we would be thrilled to get bug reports!

  • CI verifies Jdbi runs well in GraalVM native-image (#2476, thanks @​Eng-Fouad !)
  • 3.50.0 contains no bug fixes, user visible code or API changes compared to 3.49.6.

3.49.6

We have some problems with our upstream parent POM. There are changes to Maven Central that require us to roll the parent POM into the Jdbi project. This is a temporary thing and will go away as soon as uploading parent poms to Central has been reenabled.

  • Add support for PGvector types (#2830)
  • Improve concurrency of statement cache loading (#2834)
  • ExtensionHandler interface pulls out handling of target object into new AttachedExtensionHandler interface (#2828)
  • collectInto supports types that do not implement Collection ( #2849, thanks @​mattbertolini !)

3.49.5

  • Fix SerializableTransactionRunner retry with failures wrapped in batch exceptions
  • Add Oracle-Free tests

3.49.4

  • Add experimental support for Kotlin Value types as arguments and columns (#2790, suggested and aided by @​SpyMachine)

3.49.3

... (truncated)

Commits
  • 094374e [maven-release-plugin] prepare release v3.51.0
  • ec689a6 add 3.51.0 release information
  • 167a311 code review feedback changes
  • 13346e6 native-image: reorganize tests to run in a single executable
  • cc06139 Merge pull request #2904 from hgschmie/get_generated_keys_list
  • cc26724 add release notes
  • 68231fb Update fix for #1807
  • fd8ebc0 Fix GetGeneratedKeys when return is a List
  • 98dd3bc release notes #2901
  • 093bb61 Make Slf4JSqlLogger level final
  • Additional commits viewable in compare view

Updates com.zaxxer:HikariCP from 5.1.0 to 7.0.2

Changelog

Sourced from com.zaxxer:HikariCP's changelog.

HikariCP Changes

Changes in 7.0.2

  • decrease thread yield frequency in ConcurrentBag.unreserve()

Changes in 7.0.1

  • merged #2346 fix regression with setSchema behavior

  • decrease thread yield frequency in ConcurrentBag.requite()

Changes in 7.0.0

  • merged #2340 NoSuchMethodException error that is thrown when setting a metric registry, fixes to UtilityElf reflection code to use the correct method signature.

  • fixed #1294 add support for HikariCredentialsProvider class

  • fixed #2265 bail out of the pool filling loop if the thread is interrupted

Changes in 6.3.3

  • backport #2340 NoSuchMethodException error that is thrown when setting a metric registry, fixes to UtilityElf reflection code to use the correct method signature.

Changes in 6.3.2

  • fixed #2342 restore module-info.class to jar file, which was lost in 6.3.1

  • fixed #2256 add support for legacy override of getUsername()/getPassword() of HikariDataSource. See project page for documentation of system property com.zaxxer.hikari.legacy.supportUserPassDataSourceOverride.

  • fixed #2323 right or wrong (wrt driver behavior) return to previous Connection.get/setSchema behavior

  • fixed #2288 upgrade dependencies and fix build warnings

Changes in 6.3.1

  • fixed #2315 source jar contains also binary .class files and missing some .java files

  • fixed #2307 remove improper hardcoded timout, use validationTimeout

  • fixed #2305 keep properties key and values as is rather than forcing stringification. Also fixes #2286 and #2304

  • upgraded various maven plugin dependencies to latest versions

Changes in 6.3.0

  • increase keepaliveTime variance from 10% to 20%

... (truncated)

Commits
  • 80c46ae [maven-release-plugin] prepare release HikariCP-7.0.2
  • cba7ebe decrease thread yield frequency in ConcurrentBag.unreserve()
  • 22cc9bd Update README.md
  • 86915ee [maven-release-plugin] prepare for next development iteration
  • 217bcc8 [maven-release-plugin] prepare release HikariCP-7.0.1
  • 29ad2f4 update changes log
  • b81bbc9 fixes #2323 always reset schema upon connection retrieval (#2346)
  • ee5328d decrease yield() frequency during direct hand-off attempts
  • 1da3a33 Update README.md
  • 17c4b33 Update README.md
  • Additional commits viewable in compare view

Updates com.gradleup.shadow from 8.3.6 to 9.3.2

Release notes

Sourced from com.gradleup.shadow's releases.

9.3.2

Changed

  • Log warnings for duplicates in the final JAR. (#1931)

Fixed

  • Fix relocation patterns not included in task fingerprint. (#1933)

9.3.1

Fixed

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

9.3.0

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)

... (truncated)

Commits

Updates gradle-wrapper from 9.3.1 to 9.4.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 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 dev-dependencies group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [com.google.dagger:dagger](https://github.com/google/dagger) | `2.55` | `2.59.2` |
| [com.google.dagger:dagger-compiler](https://github.com/google/dagger) | `2.55` | `2.59.2` |
| [com.h2database:h2](https://github.com/h2database/h2database) | `2.3.232` | `2.4.240` |
| [org.jdbi:jdbi3-core](https://github.com/jdbi/jdbi) | `3.45.4` | `3.51.0` |
| [com.zaxxer:HikariCP](https://github.com/brettwooldridge/HikariCP) | `5.1.0` | `7.0.2` |
| [com.gradleup.shadow](https://github.com/GradleUp/shadow) | `8.3.6` | `9.3.2` |
| gradle-wrapper | `9.3.1` | `9.4.0` |


Updates `com.google.dagger:dagger` from 2.55 to 2.59.2
- [Release notes](https://github.com/google/dagger/releases)
- [Changelog](https://github.com/google/dagger/blob/master/CHANGELOG.md)
- [Commits](google/dagger@dagger-2.55...dagger-2.59.2)

Updates `com.google.dagger:dagger-compiler` from 2.55 to 2.59.2
- [Release notes](https://github.com/google/dagger/releases)
- [Changelog](https://github.com/google/dagger/blob/master/CHANGELOG.md)
- [Commits](google/dagger@dagger-2.55...dagger-2.59.2)

Updates `com.h2database:h2` from 2.3.232 to 2.4.240
- [Release notes](https://github.com/h2database/h2database/releases)
- [Commits](h2database/h2database@version-2.3.232...version-2.4.240)

Updates `org.jdbi:jdbi3-core` from 3.45.4 to 3.51.0
- [Release notes](https://github.com/jdbi/jdbi/releases)
- [Changelog](https://github.com/jdbi/jdbi/blob/master/RELEASE_NOTES.md)
- [Commits](jdbi/jdbi@v3.45.4...v3.51.0)

Updates `com.zaxxer:HikariCP` from 5.1.0 to 7.0.2
- [Changelog](https://github.com/brettwooldridge/HikariCP/blob/dev/CHANGES)
- [Commits](brettwooldridge/HikariCP@HikariCP-5.1.0...HikariCP-7.0.2)

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

Updates `gradle-wrapper` from 9.3.1 to 9.4.0

---
updated-dependencies:
- dependency-name: com.google.dagger:dagger
  dependency-version: 2.59.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: com.google.dagger:dagger-compiler
  dependency-version: 2.59.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: com.h2database:h2
  dependency-version: 2.4.240
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: org.jdbi:jdbi3-core
  dependency-version: 3.51.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: com.zaxxer:HikariCP
  dependency-version: 7.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: com.gradleup.shadow
  dependency-version: 9.3.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: gradle-wrapper
  dependency-version: 9.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Mar 6, 2026
@github-actions github-actions bot merged commit ab25d24 into main Mar 6, 2026
2 of 4 checks passed
@github-actions github-actions bot deleted the dependabot/gradle/dev-dependencies-73444031b1 branch March 6, 2026 15:13
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.

0 participants