Skip to content

Bump the dev-dependencies group with 11 updates#58

Merged
github-actions[bot] merged 1 commit intomainfrom
dependabot/gradle/dev-dependencies-73e41bc887
Jan 19, 2026
Merged

Bump the dev-dependencies group with 11 updates#58
github-actions[bot] merged 1 commit intomainfrom
dependabot/gradle/dev-dependencies-73e41bc887

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 19, 2026

Bumps the dev-dependencies group with 11 updates:

Package From To
io.freefair.aspectj.post-compile-weaving 9.1.0 9.2.0
software.amazon.awssdk:bom 2.41.5 2.41.10
com.google.dagger:dagger 2.57.2 2.58
com.google.dagger:dagger-compiler 2.57.2 2.58
com.fasterxml.jackson.core:jackson-annotations 2.20 2.21
com.fasterxml.jackson.dataformat:jackson-dataformat-yaml 2.20.1 2.21.0
com.fasterxml.jackson.datatype:jackson-datatype-jdk8 2.20.1 2.21.0
ch.qos.logback:logback-classic 1.5.24 1.5.25
ch.qos.logback:logback-core 1.5.24 1.5.25
io.micrometer:micrometer-core 1.16.1 1.16.2
org.postgresql:postgresql 42.7.8 42.7.9

Updates io.freefair.aspectj.post-compile-weaving from 9.1.0 to 9.2.0

Release notes

Sourced from io.freefair.aspectj.post-compile-weaving's releases.

9.2.0

What's Changed

Full Changelog: freefair/gradle-plugins@9.1.0...9.2.0

Commits
  • 76c5485 Merge branch '8.x' of github.com:freefair/gradle-plugins
  • 06b4fde Update to maven-plugin-plugin 3.15.2
  • 5fe8130 Update to org.graalvm.buildtools.native 0.11.3
  • d2b733e Merge branch 'main' of github.com:freefair/gradle-plugins
  • 5e93b6d Bump gradle/actions from 4 to 5 (#1523)
  • f9736b4 Merge branch '8.x' of github.com:freefair/gradle-plugins
  • 9bef6ba Bump org.sonarsource.scanner.gradle:sonarqube-gradle-plugin (#1603)
  • d384c72 Update to Spring Boot 4.0.1
  • 6a62611 Merge branch '8.x' of github.com:freefair/gradle-plugins
  • 715ea0c Update to Maven 3.9.12
  • Additional commits viewable in compare view

Updates software.amazon.awssdk:bom from 2.41.5 to 2.41.10

Updates com.google.dagger:dagger from 2.57.2 to 2.58

Release notes

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

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)
Commits
  • a8b6ee3 2.58 release
  • a54bac9 Add a test to check on framework requests on delegate chains.
  • be5dbc9 Internal change
  • 925e514 Internal changes
  • ad02c11 Internal Changes
  • 8aabfe1 Internal changes
  • e574adb Optimize Dagger Provisioning: Reuse Existing Framework Instances
  • d41e836 Enable useBindingGraphFix=true by default.
  • 54af480 Refactor ComponentRequirement to compute NullPolicy at creation time.
  • e47643b Optimize Dagger Provisioning: Reuse Existing Framework Instances
  • Additional commits viewable in compare view

Updates com.google.dagger:dagger-compiler from 2.57.2 to 2.58

Release notes

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

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)
Commits
  • a8b6ee3 2.58 release
  • a54bac9 Add a test to check on framework requests on delegate chains.
  • be5dbc9 Internal change
  • 925e514 Internal changes
  • ad02c11 Internal Changes
  • 8aabfe1 Internal changes
  • e574adb Optimize Dagger Provisioning: Reuse Existing Framework Instances
  • d41e836 Enable useBindingGraphFix=true by default.
  • 54af480 Refactor ComponentRequirement to compute NullPolicy at creation time.
  • e47643b Optimize Dagger Provisioning: Reuse Existing Framework Instances
  • Additional commits viewable in compare view

Updates com.google.dagger:dagger-compiler from 2.57.2 to 2.58

Release notes

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

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)
Commits
  • a8b6ee3 2.58 release
  • a54bac9 Add a test to check on framework requests on delegate chains.
  • be5dbc9 Internal change
  • 925e514 Internal changes
  • ad02c11 Internal Changes
  • 8aabfe1 Internal changes
  • e574adb Optimize Dagger Provisioning: Reuse Existing Framework Instances
  • d41e836 Enable useBindingGraphFix=true by default.
  • 54af480 Refactor ComponentRequirement to compute NullPolicy at creation time.
  • e47643b Optimize Dagger Provisioning: Reuse Existing Framework Instances
  • Additional commits viewable in compare view

Updates com.fasterxml.jackson.core:jackson-annotations from 2.20 to 2.21

Commits

Updates com.fasterxml.jackson.dataformat:jackson-dataformat-yaml from 2.20.1 to 2.21.0

Commits

Updates com.fasterxml.jackson.datatype:jackson-datatype-jdk8 from 2.20.1 to 2.21.0

Updates com.fasterxml.jackson.datatype:jackson-datatype-jdk8 from 2.20.1 to 2.21.0

Updates ch.qos.logback:logback-classic from 1.5.24 to 1.5.25

Commits
  • f426e00 prepare release of 1.5.25
  • d28931f restrict object creation to expected supertype
  • aa264f7 test default variable values in appender-ref ref attribute
  • 8fb403a adjust copyright year
  • b294a12 check optionList in start()
  • b65040a Add EpochConverter for milliseconds/seconds since epoch (related to issue #96...
  • 0690174 cla for Duncan Jauncey
  • 71dc2af Removed email address for Tony.
  • 1f97ae1 check for undeclared by referenced appenders
  • b07355e Move the artifact version checking code to VersionUtil in logback-core.
  • Additional commits viewable in compare view

Updates ch.qos.logback:logback-core from 1.5.24 to 1.5.25

Commits
  • f426e00 prepare release of 1.5.25
  • d28931f restrict object creation to expected supertype
  • aa264f7 test default variable values in appender-ref ref attribute
  • 8fb403a adjust copyright year
  • b294a12 check optionList in start()
  • b65040a Add EpochConverter for milliseconds/seconds since epoch (related to issue #96...
  • 0690174 cla for Duncan Jauncey
  • 71dc2af Removed email address for Tony.
  • 1f97ae1 check for undeclared by referenced appenders
  • b07355e Move the artifact version checking code to VersionUtil in logback-core.
  • Additional commits viewable in compare view

Updates ch.qos.logback:logback-core from 1.5.24 to 1.5.25

Commits
  • f426e00 prepare release of 1.5.25
  • d28931f restrict object creation to expected supertype
  • aa264f7 test default variable values in appender-ref ref attribute
  • 8fb403a adjust copyright year
  • b294a12 check optionList in start()
  • b65040a Add EpochConverter for milliseconds/seconds since epoch (related to issue #96...
  • 0690174 cla for Duncan Jauncey
  • 71dc2af Removed email address for Tony.
  • 1f97ae1 check for undeclared by referenced appenders
  • b07355e Move the artifact version checking code to VersionUtil in logback-core.
  • Additional commits viewable in compare view

Updates io.micrometer:micrometer-core from 1.16.1 to 1.16.2

Release notes

Sourced from io.micrometer:micrometer-core's releases.

1.16.2

🐞 Bug Fixes

  • CaffeineCacheMetrics nullability is incompatible with Caffeine 3.2.3 #6973
  • ExecutorServiceMetrics: repeatedly logs exception when monitoring ThreadPerTaskExecutor without --add-opens #6726

🔨 Dependency Upgrades

  • Bump ch.qos.logback:logback-classic from 1.5.21 to 1.5.24 #7027
  • Bump com.netflix.spectator:spectator-reg-atlas from 1.9.2 to 1.9.3 #7051
  • Bump com.uber.nullaway:nullaway from 0.12.14 to 0.12.15 #7020
  • Bump grpc from 1.76.1 to 1.76.2 #6952
  • Bump maven-resolver from 1.9.24 to 1.9.25 #6965
  • Bump org.apache.httpcomponents.client5:httpclient5 from 5.5.1 to 5.5.2 #7019
  • Bump org.junit:junit-bom from 5.14.1 to 5.14.2 #7056
  • Bump spring6 from 6.2.14 to 6.2.15 #6971
  • Bump testcontainers from 1.21.3 to 1.21.4 #6993

❤️ Contributors

Thank you to all the contributors who worked on this release:

@​MariusVolkhart and @​izeye

Commits
  • 6286e85 Bump ch.qos.logback:logback-classic from 1.5.23 to 1.5.24 (#7059)
  • 5263cc7 Merge branch '1.15.x' into 1.16.x
  • 0523810 Polish CurrentObservationTest (#7048)
  • 3165fdf Merge branch '1.15.x' into 1.16.x
  • 50ba16b Handle when ThreadPerTaskExecutor.threadCount() is not available (#7045)
  • c38e88c Bump org.junit:junit-bom from 5.14.1 to 5.14.2 (#7056)
  • 22ba833 Bump com.netflix.spectator:spectator-reg-atlas from 1.9.2 to 1.9.3 (#7051)
  • 916ced5 Merge branch '1.15.x' into 1.16.x
  • 50d273b Merge branch '1.14.x' into 1.15.x
  • 6b44cf2 Relax time limit for PushMeterRegistryTest.waitForScheduledPublishToFinish_wh...
  • Additional commits viewable in compare view

Updates org.postgresql:postgresql from 42.7.8 to 42.7.9

Release notes

Sourced from org.postgresql:postgresql's releases.

v42.7.9

Changes

🐛 Bug Fixes

  • fix: close temporary lob descriptors that are used internally in PreparedStatement#setBlob @​vlsi (#3903)
  • fix: avoid memory leaks in Java <= 21 caused by Thread.inheritedAccessControlContext @​vlsi (#3886)

📝 Documentation

  • doc: add the new PGP signing key to the official documentation @​vlsi (#3813)

🧰 Maintenance

  • chore: remove unused com.github.spotbugs Gradle plugin dependency @​vlsi (#3868)
  • chore: drop SpotBugs as we do not seem to use it @​vlsi (#3834)
  • chore: bump version to 42.7.9 after 42.7.8 release @​vlsi (#3810)

⬆️ Dependencies

... (truncated)

Changelog

Sourced from org.postgresql:postgresql's changelog.

[42.7.9] (2026-01-14)

Added

Changed

  • perf: optimize PGInterval.getValue() by replacing String.format with StringBuilder
  • doc: update property quoteReturningIdentifiers default value [PR #3847](pgjdbc/pgjdbc#3847)
  • security: Use a static method forName to load all user supplied classes. Use the Class.forName 3 parameter method and do not initilize it unless it is a subclass of the expected class

Fixed

Commits
  • 79b784e Added changelogs for version 42.7.9 (#3908)
  • 1c00ffc doc: add the new PGP signing key to the official documentation
  • f774000 chore(deps): update actions/create-github-app-token digest to 29824e6
  • 27daf3b chore(deps): update actions/setup-java digest to c1e3236
  • 6eb01ff chore(deps): update codecov/codecov-action digest to 671740a
  • dbf1e57 the classloader is nullable, and remove a space (#3907)
  • 6a20574 Merge commit from fork
  • c07721a fix: incorrect pg_stat_replication.reply_time calculation (#3906)
  • 83023f3 fix: close temporary lob descriptors that are used internally in PreparedStat...
  • 62c9805 fix: issue #3892, PGXAConnection.prepare(Xid) should return XA_RDONLY if the ...
  • 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 dev-dependencies group with 11 updates:

| Package | From | To |
| --- | --- | --- |
| [io.freefair.aspectj.post-compile-weaving](https://github.com/freefair/gradle-plugins) | `9.1.0` | `9.2.0` |
| software.amazon.awssdk:bom | `2.41.5` | `2.41.10` |
| [com.google.dagger:dagger](https://github.com/google/dagger) | `2.57.2` | `2.58` |
| [com.google.dagger:dagger-compiler](https://github.com/google/dagger) | `2.57.2` | `2.58` |
| [com.fasterxml.jackson.core:jackson-annotations](https://github.com/FasterXML/jackson) | `2.20` | `2.21` |
| [com.fasterxml.jackson.dataformat:jackson-dataformat-yaml](https://github.com/FasterXML/jackson-dataformats-text) | `2.20.1` | `2.21.0` |
| com.fasterxml.jackson.datatype:jackson-datatype-jdk8 | `2.20.1` | `2.21.0` |
| [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) | `1.5.24` | `1.5.25` |
| [ch.qos.logback:logback-core](https://github.com/qos-ch/logback) | `1.5.24` | `1.5.25` |
| [io.micrometer:micrometer-core](https://github.com/micrometer-metrics/micrometer) | `1.16.1` | `1.16.2` |
| [org.postgresql:postgresql](https://github.com/pgjdbc/pgjdbc) | `42.7.8` | `42.7.9` |


Updates `io.freefair.aspectj.post-compile-weaving` from 9.1.0 to 9.2.0
- [Release notes](https://github.com/freefair/gradle-plugins/releases)
- [Commits](freefair/gradle-plugins@9.1.0...9.2.0)

Updates `software.amazon.awssdk:bom` from 2.41.5 to 2.41.10

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

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

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

Updates `com.fasterxml.jackson.core:jackson-annotations` from 2.20 to 2.21
- [Commits](https://github.com/FasterXML/jackson/commits)

Updates `com.fasterxml.jackson.dataformat:jackson-dataformat-yaml` from 2.20.1 to 2.21.0
- [Commits](FasterXML/jackson-dataformats-text@jackson-dataformats-text-2.20.1...jackson-dataformats-text-2.21.0)

Updates `com.fasterxml.jackson.datatype:jackson-datatype-jdk8` from 2.20.1 to 2.21.0

Updates `com.fasterxml.jackson.datatype:jackson-datatype-jdk8` from 2.20.1 to 2.21.0

Updates `ch.qos.logback:logback-classic` from 1.5.24 to 1.5.25
- [Release notes](https://github.com/qos-ch/logback/releases)
- [Commits](qos-ch/logback@v_1.5.24...v_1.5.25)

Updates `ch.qos.logback:logback-core` from 1.5.24 to 1.5.25
- [Release notes](https://github.com/qos-ch/logback/releases)
- [Commits](qos-ch/logback@v_1.5.24...v_1.5.25)

Updates `ch.qos.logback:logback-core` from 1.5.24 to 1.5.25
- [Release notes](https://github.com/qos-ch/logback/releases)
- [Commits](qos-ch/logback@v_1.5.24...v_1.5.25)

Updates `io.micrometer:micrometer-core` from 1.16.1 to 1.16.2
- [Release notes](https://github.com/micrometer-metrics/micrometer/releases)
- [Commits](micrometer-metrics/micrometer@v1.16.1...v1.16.2)

Updates `org.postgresql:postgresql` from 42.7.8 to 42.7.9
- [Release notes](https://github.com/pgjdbc/pgjdbc/releases)
- [Changelog](https://github.com/pgjdbc/pgjdbc/blob/master/CHANGELOG.md)
- [Commits](pgjdbc/pgjdbc@REL42.7.8...REL42.7.9)

---
updated-dependencies:
- dependency-name: io.freefair.aspectj.post-compile-weaving
  dependency-version: 9.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: software.amazon.awssdk:bom
  dependency-version: 2.41.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: com.google.dagger:dagger
  dependency-version: '2.58'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: com.google.dagger:dagger-compiler
  dependency-version: '2.58'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: com.google.dagger:dagger-compiler
  dependency-version: '2.58'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: com.fasterxml.jackson.core:jackson-annotations
  dependency-version: '2.21'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: com.fasterxml.jackson.dataformat:jackson-dataformat-yaml
  dependency-version: 2.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: com.fasterxml.jackson.datatype:jackson-datatype-jdk8
  dependency-version: 2.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: com.fasterxml.jackson.datatype:jackson-datatype-jdk8
  dependency-version: 2.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: ch.qos.logback:logback-classic
  dependency-version: 1.5.25
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: ch.qos.logback:logback-core
  dependency-version: 1.5.25
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: ch.qos.logback:logback-core
  dependency-version: 1.5.25
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: io.micrometer:micrometer-core
  dependency-version: 1.16.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: org.postgresql:postgresql
  dependency-version: 42.7.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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 Jan 19, 2026
@github-actions github-actions bot merged commit 3fa8718 into main Jan 19, 2026
4 checks passed
@dependabot dependabot bot deleted the dependabot/gradle/dev-dependencies-73e41bc887 branch January 19, 2026 18:28
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