Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 23, 2025

Bumps the minor-patch-dependencies group with 10 updates:

Package From To
org.scala-lang:scala-library 2.13.17 2.13.18
org.apache.commons:commons-dbcp2 2.13.0 2.14.0
io.sentry:sentry-spring-boot-starter 8.25.0 8.29.0
ch.qos.logback:logback-classic 1.5.20 1.5.23
ch.qos.logback:logback-core 1.5.20 1.5.23
org.apache.commons:commons-lang3 3.19.0 3.20.0
io.micrometer:micrometer-registry-prometheus 1.15.5 1.16.1
org.liquibase.gradle 3.0.2 3.1.0
com.gorylenko.gradle-git-properties 2.5.3 2.5.4
com.diffplug.spotless:spotless-plugin-gradle 8.0.0 8.1.0

Updates org.scala-lang:scala-library from 2.13.17 to 2.13.18

Release notes

Sourced from org.scala-lang:scala-library's releases.

Scala 2.13.18

The Scala team at Akka is pleased to announce Scala 2.13.18.

This release fixes several regressions from 2.13.17. It is compatible with JDKs 8 to 26.

The following are highlights of this release:

Restore traditional behavior when passing a null array to a varargs method in Scala 3

When passing an array as "sequence argument" to a varargs method, method(arg: _*), the array is converted to a Seq.

In Scala 3 (the syntax is method(arg*)), this conversion is done by the ScalaRunTime.wrapXArray methods. These methods were simplified in 2.13.17, which changed the semantics of a method((null: Array[T])*) invocation.

#11165 restores the previous null handling semantics.

Fixes for false positive warnings

  • #11162 reverts -Xlint:infer-any to the behavior of 2.13.16. The lint was extended in 2.13.17 to warn whenever Nothing is inferred for a higher-kinded type parameter T[_]. The new warning showed up in many projects: often as a false positive, but even the "true" positive warning was considered unhelpful / spurious in real-world use cases.
  • Fix false positive unused warning for private val used in annotation #11149
  • Fix false positive -Xlint:universal-methods warning in synthetic code #11159

JDK 26 support

  • Compiling on Java 26 is now supported #11179

New @uncheckedOverride annotation

The new @uncheckedOverride annotation is equivalent to the override keyword, except that it allows to override nothing. This is useful when cross-building: a method may override or not, depending on the version of some dependency. #11179

GPG key change

This release is signed with a different GPG key than previous Scala 2 releases. The new key is the same one used by Scala 3. #11158

Other notable changes

  • On Java 25+, sbt run now detects main methods that are non-static, non-public or without parameter list #11137
  • Regression fix: 2.13.17 was accidentally dropping certain annotations #11173
  • Deprecate the -Xmain-class compiler flag #11156

More changes

For the complete 2.13.18 change lists, see all merged PRs and all closed bugs.

Compatibility

As usual for our minor releases, Scala 2.13.18 is binary-compatible with the whole Scala 2.13 series.

... (truncated)

Commits
  • 98f40d0 Merge pull request #11180 from SethTisue/scala-3.7.4
  • f47ee18 Merge pull request #11181 from lrytz/t13141
  • 960905c Don't type check synthetic args in presence of errors
  • 5c28ce5 Scala 3.7.4 (was 3.7.3)
  • ae6ae4d Merge pull request #11179 from lrytz/merge-212
  • e828c8f Merge commit '597789e91a' into merge-212
  • c099bae Merge commit '01ad07aaf2' into merge-212
  • ef7bf42 Merge commit '516ea3283f' into merge-212
  • 786153f Merge commit '42b335a55f' into merge-212
  • 597789e Merge pull request #11178 from dragos/dragos/backport-base-type-crash-fix
  • Additional commits viewable in compare view

Updates org.apache.commons:commons-dbcp2 from 2.13.0 to 2.14.0

Updates io.sentry:sentry-spring-boot-starter from 8.25.0 to 8.29.0

Release notes

Sourced from io.sentry:sentry-spring-boot-starter's releases.

8.29.0

Fixes

  • Support serialization of primitive arrays (boolean[], byte[], short[], char[], int[], long[], float[], double[]) (#4968)
  • Session Replay: Improve network body parsing and truncation handling (#4958)

Internal

  • Support metric envelope item type (#4956)

8.28.0

Features

  • Android: Flush logs when app enters background (#4951)
  • Add option to capture additional OkHttp network request/response details in session replays (#4919)
    • Depends on SentryOkHttpInterceptor to intercept the request and extract request/response bodies
    • To enable, add url regexes via the io.sentry.session-replay.network-detail-allow-urls metadata tag in AndroidManifest (code sample)
      • Or you can manually specify SentryReplayOptions via SentryAndroid#init:
        (Make sure you disable the auto init via manifest meta-data: io.sentry.auto-init=false)
SentryAndroid.init(
    this,
    options -> {
      // options.dsn = "https://[email protected]/0"
      // options.sessionReplay.sessionSampleRate = 1.0
      // options.sessionReplay.onErrorSampleRate = 1.0
      // ..
  options.sessionReplay.networkDetailAllowUrls = listOf(".*")
  options.sessionReplay.networkDetailDenyUrls = listOf(".*deny.*")
  options.sessionReplay.networkRequestHeaders = listOf("Authorization", "X-Custom-Header", "X-Test-Request")
  options.sessionReplay.networkResponseHeaders = listOf("X-Response-Time", "X-Cache-Status", "X-Test-Response")
});

SentryAndroid.init(
    this,
    options -> {
        options.getSessionReplay().setNetworkDetailAllowUrls(Arrays.asList(".*"));
        options.getSessionReplay().setNetworkDetailDenyUrls(Arrays.asList(".*deny.*"));
</tr></table> 

... (truncated)

Changelog

Sourced from io.sentry:sentry-spring-boot-starter's changelog.

8.29.0

Fixes

  • Support serialization of primitive arrays (boolean[], byte[], short[], char[], int[], long[], float[], double[]) (#4968)
  • Session Replay: Improve network body parsing and truncation handling (#4958)

Internal

  • Support metric envelope item type (#4956)

8.28.0

Features

  • Android: Flush logs when app enters background (#4951)
  • Add option to capture additional OkHttp network request/response details in session replays (#4919)
    • Depends on SentryOkHttpInterceptor to intercept the request and extract request/response bodies
    • To enable, add url regexes via the io.sentry.session-replay.network-detail-allow-urls metadata tag in AndroidManifest (code sample)
      • Or you can manually specify SentryReplayOptions via SentryAndroid#init:
        (Make sure you disable the auto init via manifest meta-data: io.sentry.auto-init=false)
SentryAndroid.init(
    this,
    options -> {
      // options.dsn = "https://[email protected]/0"
      // options.sessionReplay.sessionSampleRate = 1.0
      // options.sessionReplay.onErrorSampleRate = 1.0
      // ..
  options.sessionReplay.networkDetailAllowUrls = listOf(&quot;.*&quot;)
  options.sessionReplay.networkDetailDenyUrls = listOf(&quot;.*deny.*&quot;)
  options.sessionReplay.networkRequestHeaders = listOf(&quot;Authorization&quot;, &quot;X-Custom-Header&quot;, &quot;X-Test-Request&quot;)
  options.sessionReplay.networkResponseHeaders = listOf(&quot;X-Response-Time&quot;, &quot;X-Cache-Status&quot;, &quot;X-Test-Response&quot;)
});

SentryAndroid.init(
    this,
    options -> {
</tr></table> 

... (truncated)

Commits
  • 216800f release: 8.29.0
  • 56d8c1e fix(serialization): Support primitive array serialization (#4968)
  • 106e5aa build(deps): bump actions/upload-artifact from 5 to 6 (#4965)
  • 5b66efd build(deps): bump actions/create-github-app-token from 2.1.4 to 2.2.1 (#4954)
  • b01b11a fix: improve network body parsing and truncation handling (#4958)
  • 6edfca2 build(deps): bump urllib3 in the pip group across 1 directory (#4952)
  • 91bb874 feat(envelope-item): Support metric type (#4956)
  • dba088c Merge branch 'release/8.28.0'
  • dd38947 release: 8.28.0
  • 2ab9d50 feat(android): Add log flushing on app backgrounding (#4951)
  • Additional commits viewable in compare view

Updates ch.qos.logback:logback-classic from 1.5.20 to 1.5.23

Release notes

Sourced from ch.qos.logback:logback-classic's releases.

Logback 1.5.23

2025-12-21 Release of logback version 1.5.23

• In response to issues/959 file name collisions are detected at configuration time by analyzing the configuration file and no longer at run time. This avoids the ConcurrentModificationException reported in the issue.

• ZIP and XZ compression now use a BufferedOutputStream when writing to the compressed file. This issue was reported in issues/988.

• A bit-wise identical binary of this version can be reproduced by building from source code at commit 0bcc3feb54a6d99caac70969ee5f8334aad1fbaf associated with the tag v_1.5.23. Release built using Java "21" 2023-10-17 LTS build 21.0.1.+12-LTS-29 under Linux Debian 11.6.

Logback 1.5.22

2025-12-11 Release of logback version 1.5.22

• In order to prevent involuntary information leakage, Logback will no longer output the value of a substituted variable, if the variable name contains any of the case-insensitive strings "password", "secret" or "confidential". This problem was reported by Chintan Rohila in issues/986.

• Logback now takes the overridden toString() method of Throwable subclasses into account when printing stack traces. This issue was reported in LOGBACK-543 by Alvin Chee, with a fix provided in PR 404 by Brett Kail.

• Instead of limit-counting guard, Logback now uses a tumbling-window guard to rate limit internal error messages.

• A bit-wise identical binary of this version can be reproduced by building from source code at commit 572379aabd2f672b49593e4020696c624541e5b0 associated with the tag v_1.5.22. Release built using Java "21" 2023-10-17 LTS build 21.0.1.+12-LTS-29 under Linux Debian 11.6.

Logback 1.5.21

2025-11-10 Release of logback version 1.5.21

• Invocations of turbo filters in isDebugEnabled, isInfoEnabled()... remain as they were, untouched. However, any installed instances of TurboFilter are now invoked also from within the log(LoggingEvent) method of Logger with the contents of the LoggingEvent, typically via the fluent API. This fixes issues/871.

• Removed reentry-guard in most subclasses of UnsynchronizedAppenderBase where it was not needed.

Initialization procedure has been simplified by removing the step instantiating a SerializedModelConfigurator. However, it is still possible to set up SerializedModelConfigurator as a custom configurator.

• JsonEncoder is now friendlier to derivation by sub-classes as requested in issues/979.

• Fixed XMLLayout thread safety issue reported in LOGBACK-427.

• Removed superfluous buffering in Zip, GZ and XZ compression code.

• A bit-wise identical binary of this version can be reproduced by building from source code at commit fed6f37ffe3449e40f6a9fffe050936a33116bd1 associated with the tag v_1.5.21. Release built using Java "21" 2023-10-17 LTS build 21.0.1.+12-LTS-29 under Linux Debian 11.6.

Commits
  • 0bcc3fe prepare release 1.5.23
  • 4627dbd better to use BufferedOutputStream during ZIP and XZ compression, especially ...
  • 299f091 add collision test in presence of conditional processing
  • b446f3f In Context, remove collision map
  • a3eb14d in response to issues/959, collision detection is now done by FileCollisionAn...
  • 681b2be remove unused method, minor comment edits
  • 17a3edf start work on 1.5.23-SNAPSHOT
  • 572379a prepare release 1.5.22
  • 39d17ea fix status printing of variable substitution when the variable name contains ...
  • 75509a9 fix PR 404, LOGBACK-543
  • Additional commits viewable in compare view

Updates ch.qos.logback:logback-core from 1.5.20 to 1.5.23

Release notes

Sourced from ch.qos.logback:logback-core's releases.

Logback 1.5.23

2025-12-21 Release of logback version 1.5.23

• In response to issues/959 file name collisions are detected at configuration time by analyzing the configuration file and no longer at run time. This avoids the ConcurrentModificationException reported in the issue.

• ZIP and XZ compression now use a BufferedOutputStream when writing to the compressed file. This issue was reported in issues/988.

• A bit-wise identical binary of this version can be reproduced by building from source code at commit 0bcc3feb54a6d99caac70969ee5f8334aad1fbaf associated with the tag v_1.5.23. Release built using Java "21" 2023-10-17 LTS build 21.0.1.+12-LTS-29 under Linux Debian 11.6.

Logback 1.5.22

2025-12-11 Release of logback version 1.5.22

• In order to prevent involuntary information leakage, Logback will no longer output the value of a substituted variable, if the variable name contains any of the case-insensitive strings "password", "secret" or "confidential". This problem was reported by Chintan Rohila in issues/986.

• Logback now takes the overridden toString() method of Throwable subclasses into account when printing stack traces. This issue was reported in LOGBACK-543 by Alvin Chee, with a fix provided in PR 404 by Brett Kail.

• Instead of limit-counting guard, Logback now uses a tumbling-window guard to rate limit internal error messages.

• A bit-wise identical binary of this version can be reproduced by building from source code at commit 572379aabd2f672b49593e4020696c624541e5b0 associated with the tag v_1.5.22. Release built using Java "21" 2023-10-17 LTS build 21.0.1.+12-LTS-29 under Linux Debian 11.6.

Logback 1.5.21

2025-11-10 Release of logback version 1.5.21

• Invocations of turbo filters in isDebugEnabled, isInfoEnabled()... remain as they were, untouched. However, any installed instances of TurboFilter are now invoked also from within the log(LoggingEvent) method of Logger with the contents of the LoggingEvent, typically via the fluent API. This fixes issues/871.

• Removed reentry-guard in most subclasses of UnsynchronizedAppenderBase where it was not needed.

Initialization procedure has been simplified by removing the step instantiating a SerializedModelConfigurator. However, it is still possible to set up SerializedModelConfigurator as a custom configurator.

• JsonEncoder is now friendlier to derivation by sub-classes as requested in issues/979.

• Fixed XMLLayout thread safety issue reported in LOGBACK-427.

• Removed superfluous buffering in Zip, GZ and XZ compression code.

• A bit-wise identical binary of this version can be reproduced by building from source code at commit fed6f37ffe3449e40f6a9fffe050936a33116bd1 associated with the tag v_1.5.21. Release built using Java "21" 2023-10-17 LTS build 21.0.1.+12-LTS-29 under Linux Debian 11.6.

Commits
  • 0bcc3fe prepare release 1.5.23
  • 4627dbd better to use BufferedOutputStream during ZIP and XZ compression, especially ...
  • 299f091 add collision test in presence of conditional processing
  • b446f3f In Context, remove collision map
  • a3eb14d in response to issues/959, collision detection is now done by FileCollisionAn...
  • 681b2be remove unused method, minor comment edits
  • 17a3edf start work on 1.5.23-SNAPSHOT
  • 572379a prepare release 1.5.22
  • 39d17ea fix status printing of variable substitution when the variable name contains ...
  • 75509a9 fix PR 404, LOGBACK-543
  • Additional commits viewable in compare view

Updates org.apache.commons:commons-lang3 from 3.19.0 to 3.20.0

Updates io.micrometer:micrometer-registry-prometheus from 1.15.5 to 1.16.1

Release notes

Sourced from io.micrometer:micrometer-registry-prometheus's releases.

1.16.1

🐞 Bug Fixes

  • Don't filter log events in LogbackMetricsBenchmark #6891
  • Return value nullability is incorrect on function wrapper methods #6869

📔 Documentation

  • Add link to the latest Micrometer Team talk #6881
  • Document JSpecify dependency #6886
  • Make cross-references more consistent in the docs #6915

🔨 Dependency Upgrades

  • Bump ch.qos.logback:logback-classic from 1.5.20 to 1.5.21 #6877
  • Bump com.netflix.spectator:spectator-reg-atlas from 1.9.1 to 1.9.2 #6904
  • Bump com.uber.nullaway:nullaway from 0.12.12 to 0.12.14 #6937
  • Bump grpc from 1.76.0 to 1.76.1 #6902
  • Bump io.freefair.aspectj.post-compile-weaving from 8.14.2 to 8.14.3 #6876
  • Bump io.prometheus:prometheus-metrics-bom from 1.4.2 to 1.4.3 #6868
  • Bump spring6 from 6.2.12 to 6.2.14 #6890

❤️ Contributors

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

@​MiLabuda, @​izeye, and @​ngocnhan-tran1996

1.16.0

We upgraded the Prometheus Java Client to 1.4.x (#6830) which brings support for Unicode which includes some behavioral change in naming conventions, see the 1.16 Migration-Guide.

⚠️ Noteworthy

  • Deprecate the Wavefront module #6328
  • Remove deprecated io.micrometer.core.lang annotations #6407
  • Register JCache cache.removals as a FunctionCounter by default #2754
  • Improve no-op behavior of the Observation API #6700

⭐ New Features

  • Support KeyValues with annotations when using ObservedAspect/@Observed #4030
  • Validate low cardinality keys #6713
  • Add counter for total loaded classes #3561
  • Add eventexecutor.workers metrics for Netty #6375
  • Avoid DistributionStatisticsConfig creation when retrieving timers #6661
  • Avoid capturing lambda allocation when retrieving existing meters #6670
  • Introduce MeterConvention #6710
  • OpenTelemetry Semantic Conventions for JVM metrics #5286
  • Add MeterFilter.forMeters utility method #6594

... (truncated)

Commits

Updates org.liquibase.gradle from 3.0.2 to 3.1.0

Updates com.gorylenko.gradle-git-properties from 2.5.3 to 2.5.4

Updates com.diffplug.spotless:spotless-plugin-gradle from 8.0.0 to 8.1.0

Release notes

Sourced from com.diffplug.spotless:spotless-plugin-gradle's releases.

Gradle Plugin v8.1.0

Changes

  • Bump default ktfmt version to latest 0.58 -> 0.59. (#2681
  • Bump default jackson version to latest 2.20.0 -> 2.20.1. (#2730)
  • Bump default cleanthat version to latest 2.23 -> 2.24. (#2620)
  • POTENTIALLY BREAKING Removed support for ktlint versions below 1.0. (#2711)

Fixed

  • Tasks were being eagerly instantiated, now avoided using TaskProviders. #2719
    • POTENTIALLY BREAKING Bump minimum supported Gradle version from 7.3 to 8.1. #2719
  • Use absolute path in the git pre push hook.
  • palantirJavaFormat is no longer arbitrarily set to outdated versions on Java 17, latest available version is always used (#2686 fixes #2685)

Added

  • forbidModuleImports() API for java (#2679)
  • new options to customize Flexmark, e.g. to allow YAML front matter (#2616)
Commits
  • aee19c8 Published gradle/8.1.0
  • bf212ec Published lib/4.1.0
  • 399bf33 Remove the claude.yml, it wasn't working with the team permissions we had hop...
  • 856c4ef Improve changelogs for end-users.
  • 4761969 Switch from * to - for bullets, less confusion with bold/italic.
  • 57eb3d5 Add step to forbid module imports (#2690 closes #2679)
  • baaa5f2 Merge branch 'main' into forbidModuleImports
  • d9e837a Hotfix rewriteRun of #2713 which merged prematurely due to bug in #2725
  • e686bbf Add more configuration options for flexmark (#2713)
  • 20e61e2 Fixx spotbugs warning.
  • 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 minor-patch-dependencies group with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [org.scala-lang:scala-library](https://github.com/scala/scala) | `2.13.17` | `2.13.18` |
| org.apache.commons:commons-dbcp2 | `2.13.0` | `2.14.0` |
| [io.sentry:sentry-spring-boot-starter](https://github.com/getsentry/sentry-java) | `8.25.0` | `8.29.0` |
| [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) | `1.5.20` | `1.5.23` |
| [ch.qos.logback:logback-core](https://github.com/qos-ch/logback) | `1.5.20` | `1.5.23` |
| org.apache.commons:commons-lang3 | `3.19.0` | `3.20.0` |
| [io.micrometer:micrometer-registry-prometheus](https://github.com/micrometer-metrics/micrometer) | `1.15.5` | `1.16.1` |
| org.liquibase.gradle | `3.0.2` | `3.1.0` |
| com.gorylenko.gradle-git-properties | `2.5.3` | `2.5.4` |
| [com.diffplug.spotless:spotless-plugin-gradle](https://github.com/diffplug/spotless) | `8.0.0` | `8.1.0` |


Updates `org.scala-lang:scala-library` from 2.13.17 to 2.13.18
- [Release notes](https://github.com/scala/scala/releases)
- [Commits](scala/scala@v2.13.17...v2.13.18)

Updates `org.apache.commons:commons-dbcp2` from 2.13.0 to 2.14.0

Updates `io.sentry:sentry-spring-boot-starter` from 8.25.0 to 8.29.0
- [Release notes](https://github.com/getsentry/sentry-java/releases)
- [Changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md)
- [Commits](getsentry/sentry-java@8.25.0...8.29.0)

Updates `ch.qos.logback:logback-classic` from 1.5.20 to 1.5.23
- [Release notes](https://github.com/qos-ch/logback/releases)
- [Commits](qos-ch/logback@v_1.5.20...v_1.5.23)

Updates `ch.qos.logback:logback-core` from 1.5.20 to 1.5.23
- [Release notes](https://github.com/qos-ch/logback/releases)
- [Commits](qos-ch/logback@v_1.5.20...v_1.5.23)

Updates `org.apache.commons:commons-lang3` from 3.19.0 to 3.20.0

Updates `io.micrometer:micrometer-registry-prometheus` from 1.15.5 to 1.16.1
- [Release notes](https://github.com/micrometer-metrics/micrometer/releases)
- [Commits](micrometer-metrics/micrometer@v1.15.5...v1.16.1)

Updates `org.liquibase.gradle` from 3.0.2 to 3.1.0

Updates `com.gorylenko.gradle-git-properties` from 2.5.3 to 2.5.4

Updates `com.diffplug.spotless:spotless-plugin-gradle` from 8.0.0 to 8.1.0
- [Release notes](https://github.com/diffplug/spotless/releases)
- [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md)
- [Commits](diffplug/spotless@gradle/8.0.0...gradle/8.1.0)

---
updated-dependencies:
- dependency-name: org.scala-lang:scala-library
  dependency-version: 2.13.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch-dependencies
- dependency-name: org.apache.commons:commons-dbcp2
  dependency-version: 2.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch-dependencies
- dependency-name: io.sentry:sentry-spring-boot-starter
  dependency-version: 8.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch-dependencies
- dependency-name: ch.qos.logback:logback-classic
  dependency-version: 1.5.23
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch-dependencies
- dependency-name: ch.qos.logback:logback-core
  dependency-version: 1.5.23
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch-dependencies
- dependency-name: org.apache.commons:commons-lang3
  dependency-version: 3.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch-dependencies
- dependency-name: io.micrometer:micrometer-registry-prometheus
  dependency-version: 1.16.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch-dependencies
- dependency-name: org.liquibase.gradle
  dependency-version: 3.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch-dependencies
- dependency-name: com.gorylenko.gradle-git-properties
  dependency-version: 2.5.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch-dependencies
- dependency-name: com.diffplug.spotless:spotless-plugin-gradle
  dependency-version: 8.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner December 23, 2025 16:36
@dependabot dependabot bot requested review from jgainerdewar and removed request for a team December 23, 2025 16:36
@dependabot dependabot bot added the gradle label Dec 23, 2025
@dependabot dependabot bot requested a review from marctalbott December 23, 2025 16:36
@sonarqubecloud
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant