Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the maven-other-updates group with 12 updates:

Package From To
org.jdbi:jdbi3-bom 3.50.0 3.51.0
io.sentry:sentry 8.27.1 8.28.0
io.netty:netty-codec-dns 4.2.7.Final 4.2.8.Final
io.netty:netty-codec-http 4.2.7.Final 4.2.8.Final
io.netty:netty-transport 4.2.7.Final 4.2.8.Final
io.netty:netty-codec-socks 4.2.7.Final 4.2.8.Final
io.netty:netty-resolver-dns 4.2.7.Final 4.2.8.Final
io.netty:netty-handler-proxy 4.2.7.Final 4.2.8.Final
org.mockito:mockito-core 5.20.0 5.21.0
org.mockito:mockito-junit-jupiter 5.20.0 5.21.0
org.elasticsearch.client:elasticsearch-rest-client 9.2.1 9.2.2
org.sonarsource.scanner.maven:sonar-maven-plugin 5.3.0.6276 5.5.0.6356

Updates org.jdbi:jdbi3-bom from 3.50.0 to 3.51.0

Release notes

Sourced from org.jdbi:jdbi3-bom'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!)

Changelog

Sourced from org.jdbi:jdbi3-bom'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!)

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 io.sentry:sentry from 8.27.1 to 8.28.0

Release notes

Sourced from io.sentry:sentry's releases.

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.*"));
        options.getSessionReplay().setNetworkRequestHeaders(
            Arrays.asList("Authorization", "X-Custom-Header", "X-Test-Request"));
        options.getSessionReplay().setNetworkResponseHeaders(
            Arrays.asList("X-Response-Time", "X-Cache-Status", "X-Test-Response"));
    });

... (truncated)

Changelog

Sourced from io.sentry:sentry's changelog.

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.*"));
        options.getSessionReplay().setNetworkRequestHeaders(
            Arrays.asList("Authorization", "X-Custom-Header", "X-Test-Request"));
        options.getSessionReplay().setNetworkResponseHeaders(
            Arrays.asList("X-Response-Time", "X-Cache-Status", "X-Test-Response"));
    });

... (truncated)

Commits
  • dd38947 release: 8.28.0
  • 2ab9d50 feat(android): Add log flushing on app backgrounding (#4951)
  • ee35ac3 build(deps): bump actions/checkout from 5 to 6 (#4928)
  • 10be7df fix: handle unparseable mime-type (#4939)
  • d36d909 chore: Remove stefanosiano from CODEOWNERS (#4948)
  • 951caf7 build(deps): bump github/codeql-action from 4.31.2 to 4.31.5 (#4940)
  • a0991f1 chore: update scripts/update-sentry-native-ndk.sh to 0.12.2 (#4944)
  • fc5ccaf feat(envelope-item): Support span type (#4935)
  • 4742e23 feat(replay): Capture network request/response details when using SentryOkHtt...
  • e761994 fix(anr): Always report stacktraces for ANRv1 (#4918)
  • Additional commits viewable in compare view

Updates io.netty:netty-codec-dns from 4.2.7.Final to 4.2.8.Final

Commits
  • e2d9d11 [maven-release-plugin] prepare release netty-4.2.8.Final
  • 2f2e437 Merge commit from fork
  • d011634 Build fixes to allow using the epoll native transport on Android (#16016)
  • 14fc741 Correct codec-native-quic Fragment-Host (#16015)
  • caa07bb Fix Socket reading of abstract unix domain addresses (#16010)
  • 640b6b7 Fix - Http3FrameCodec decode fail during unknown settings (#15998)
  • 35f6ad1 Prevent ManualEventLoop to block on a racy task submission (#15937)
  • 2b29b5e Use exact length when allocating the acceptedAddress byte[] (#15973) (#15984)
  • b1182ed Update lz4-java version to 1.10.1 (#15978)
  • debdc56 Pcap: Fix possible buffer leak when initializion fails (#15975)
  • Additional commits viewable in compare view

Updates io.netty:netty-codec-http from 4.2.7.Final to 4.2.8.Final

Commits
  • e2d9d11 [maven-release-plugin] prepare release netty-4.2.8.Final
  • 2f2e437 Merge commit from fork
  • d011634 Build fixes to allow using the epoll native transport on Android (#16016)
  • 14fc741 Correct codec-native-quic Fragment-Host (#16015)
  • caa07bb Fix Socket reading of abstract unix domain addresses (#16010)
  • 640b6b7 Fix - Http3FrameCodec decode fail during unknown settings (#15998)
  • 35f6ad1 Prevent ManualEventLoop to block on a racy task submission (#15937)
  • 2b29b5e Use exact length when allocating the acceptedAddress byte[] (#15973) (#15984)
  • b1182ed Update lz4-java version to 1.10.1 (#15978)
  • debdc56 Pcap: Fix possible buffer leak when initializion fails (#15975)
  • Additional commits viewable in compare view

Updates io.netty:netty-transport from 4.2.7.Final to 4.2.8.Final

Commits
  • e2d9d11 [maven-release-plugin] prepare release netty-4.2.8.Final
  • 2f2e437 Merge commit from fork
  • d011634 Build fixes to allow using the epoll native transport on Android (#16016)
  • 14fc741 Correct codec-native-quic Fragment-Host (#16015)
  • caa07bb Fix Socket reading of abstract unix domain addresses (#16010)
  • 640b6b7 Fix - Http3FrameCodec decode fail during unknown settings (#15998)
  • 35f6ad1 Prevent ManualEventLoop to block on a racy task submission (#15937)
  • 2b29b5e Use exact length when allocating the acceptedAddress byte[] (#15973) (#15984)
  • b1182ed Update lz4-java version to 1.10.1 (#15978)
  • debdc56 Pcap: Fix possible buffer leak when initializion fails (#15975)
  • Additional commits viewable in compare view

Updates io.netty:netty-codec-socks from 4.2.7.Final to 4.2.8.Final

Commits
  • e2d9d11 [maven-release-plugin] prepare release netty-4.2.8.Final
  • 2f2e437 Merge commit from fork
  • d011634 Build fixes to allow using the epoll native transport on Android (#16016)
  • 14fc741 Correct codec-native-quic Fragment-Host (#16015)
  • caa07bb Fix Socket reading of abstract unix domain addresses (#16010)
  • 640b6b7 Fix - Http3FrameCodec decode fail during unknown settings (#15998)
  • 35f6ad1 Prevent ManualEventLoop to block on a racy task submission (#15937)
  • 2b29b5e Use exact length when allocating the acceptedAddress byte[] (#15973) (#15984)
  • b1182ed Update lz4-java version to 1.10.1 (#15978)
  • debdc56 Pcap: Fix possible buffer leak when initializion fails (#15975)
  • Additional commits viewable in compare view

Updates io.netty:netty-resolver-dns from 4.2.7.Final to 4.2.8.Final

Commits
  • e2d9d11 [maven-release-plugin] prepare release netty-4.2.8.Final
  • 2f2e437 Merge commit from fork
  • d011634 Build fixes to allow using the epoll native transport on Android (#16016)
  • 14fc741 Correct codec-native-quic Fragment-Host (#16015)
  • caa07bb Fix Socket reading of abstract unix domain addresses (#16010)
  • 640b6b7 Fix - Http3FrameCodec decode fail during unknown settings (#15998)
  • 35f6ad1 Prevent ManualEventLoop to block on a racy task submission (#15937)
  • 2b29b5e Use exact length when allocating the acceptedAddress byte[] (#15973) (#15984)
  • b1182ed Update lz4-java version to 1.10.1 (#15978)
  • debdc56 Pcap: Fix possible buffer leak when initializion fails (#15975)
  • Additional commits viewable in compare view

Updates io.netty:netty-handler-proxy from 4.2.7.Final to 4.2.8.Final

Commits
  • e2d9d11 [maven-release-plugin] prepare release netty-4.2.8.Final
  • 2f2e437 Merge commit from fork
  • d011634 Build fixes to allow using the epoll native transport on Android (#16016)
  • 14fc741 Correct codec-native-quic Fragment-Host (#16015)
  • caa07bb Fix Socket reading of abstract unix domain addresses (#16010)
  • 640b6b7 Fix - Http3FrameCodec decode fail during unknown settings (#15998)
  • 35f6ad1 Prevent ManualEventLoop to block on a racy task submission (#15937)
  • 2b29b5e Use exact length when allocating the acceptedAddress byte[] (#15973) (#15984)
  • b1182ed Update lz4-java version to 1.10.1 (#15978)
  • debdc56 Pcap: Fix possible buffer leak when initializion fails (#15975)
  • Additional commits viewable in compare view

Updates io.netty:netty-codec-http from 4.2.7.Final to 4.2.8.Final

Commits
  • e2d9d11 [maven-release-plugin] prepare release netty-4.2.8.Final
  • 2f2e437 Merge commit from fork
  • d011634 Build fixes to allow using the epoll native transport on Android (#16016)
  • 14fc741 Correct codec-native-quic Fragment-Host (#16015)
  • caa07bb Fix Socket reading of abstract unix domain addresses (#16010)
  • 640b6b7 Fix - Http3FrameCodec decode fail during unknown settings (#15998)
  • 35f6ad1 Prevent ManualEventLoop to block on a racy task submission (#15937)
  • 2b29b5e Use exact length when allocating the acceptedAddress byte[] (#15973) (#15984)
  • b1182ed Update lz4-java version to 1.10.1 (#15978)
  • debdc56 Pcap: Fix possible buffer leak when initializion fails (#15975)
  • Additional commits viewable in compare view

Updates io.netty:netty-transport from 4.2.7.Final to 4.2.8.Final

Commits
  • e2d9d11 [maven-release-plugin] prepare release netty-4.2.8.Final
  • 2f2e437 Merge commit from fork
  • d011634 Build fixes to allow using the epoll native transport on Android (#16016)
  • 14fc741 Correct codec-native-quic Fragment-Host (#16015)
  • caa07bb Fix Socket reading of abstract unix domain addresses (#16010)
  • 640b6b7 Fix - Http3FrameCodec decode fail during unknown settings (#15998)
  • 35f6ad1 Prevent ManualEventLoop to block on a racy task submission (#15937)
  • 2b29b5e Use exact length when allocating the acceptedAddress byte[] (#15973) (#15984)
  • b1182ed Update lz4-java version to 1.10.1 (#15978)
  • debdc56 Pcap: Fix possible buffer leak when initializion fails (#15975)
  • Additional commits viewable in compare view

Updates io.netty:netty-codec-socks from 4.2.7.Final to 4.2.8.Final

Commits
  • e2d9d11 [maven-release-plugin] prepare release netty-4.2.8.Final
  • 2f2e437 Merge commit from fork
  • d011634 Build fixes to allow using the epoll native transport on Android (#16016)
  • 14fc741 Correct codec-native-quic Fragment-Host (#16015)
  • caa07bb Fix Socket reading of abstract unix domain addresses (#16010)
  • 640b6b7 Fix - Http3FrameCodec decode fail during unknown settings (#15998)
  • 35f6ad1 Prevent ManualEventLoop to block on a racy task submission (#15937)
  • 2b29b5e Use exact length when allocating the acceptedAddress byte[] (#15973) (#15984)
  • b1182ed Update lz4-java version to 1.10.1 (#15978)
  • debdc56 Pcap: Fix possible buffer leak when initializion fails (#15975)
  • Additional commits viewable in compare view

Updates io.netty:netty-resolver-dns from 4.2.7.Final to 4.2.8.Final

Commits
  • e2d9d11 [maven-release-plugin] prepare release netty-4.2.8.Final
  • 2f2e437 Merge commit from fork
  • d011634 Build fixes to allow using the epoll native transport on Android (#16016)
  • 14fc741 Correct codec-native-quic Fragment-Host (#16015)
  • caa07bb Fix Socket reading of abstract unix domain addresses (#16010)
  • 640b6b7 Fix - Http3FrameCodec decode fail during unknown settings (#15998)
  • 35f6ad1 Prevent ManualEventLoop to block on a racy task submission (#15937)
  • 2b29b5e Use exact length when allocating the acceptedAddress byte[] (#15973) (#15984)
  • b1182ed Update lz4-java version to 1.10.1 (#15978)
  • debdc56 Pcap: Fix possible buffer leak when initializion fails (#15975)
  • Additional commits viewable in compare view

Updates io.netty:netty-handler-proxy from 4.2.7.Final to 4.2.8.Final

Commits
  • e2d9d11 [maven-release-plugin] prepare release netty-4.2.8.Final
  • 2f2e437 Merge commit from fork
  • d011634 Build fixes to allow using the epoll native transport on Android (#16016)
  • 14fc741 Correct codec-native-quic Fragment-Host (#16015)
  • caa07bb Fix Socket reading of abstract unix domain addresses (#16010)
  • 640b6b7 Fix - Http3FrameCodec decode fail during unknown settings (#15998)
  • 35f6ad1 Prevent ManualEventLoop to block on a racy task submission (#15937)
  • 2b29b5e Use exact length when allocating the acceptedAddress byte[] (#15973) (#15984)
  • b1182ed Update lz4-java version to 1.10.1 (#15978)
  • debdc56 Pcap: Fix possible buffer leak when initializion fails (#15975)
  • Additional commits viewable in compare view

Updates org.mockito:mockito-core from 5.20.0 to 5.21.0

Release notes

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

v5.21.0

Changelog generated by Shipkit Changelog Gradle Plugin

5.21.0

Commits
  • 09d2230 Bump graalvm/setup-graalvm from 1.4.3 to 1.4.4 (#3768)
  • df3e0cc Bump graalvm/setup-graalvm from 1.4.2 to 1.4.3 (#3767)
  • 04a6e9f Bump actions/checkout from 5 to 6 (#3765)
  • 756a3cf Add description of matchers to potential mismatch (#3760)
  • 58ba445 Forbid mocking WeakReference with inline mock maker (#3759)
  • 966d600 Bump actions/upload-artifact from 4 to 5 (#3756)
  • 632bf7b Bump graalvm/setup-graalvm from 1.4.1 to 1.4.2 (#3755)
  • 8564b43 Fix primitives support in GenericArrayReturnType for Android (#3753)
  • bf3a809 Bump graalvm/setup-graalvm from 1.4.0 to 1.4.1 (#3744)
  • cffddd4 Bump gradle/actions from 4 to 5 (#3743)
  • Additional commits viewable in compare view

Updates org.mockito:mockito-junit-jupiter from 5.20.0 to 5.21.0

Release notes

Sourced from org.mockito:mockito-junit-jupiter's releases.

v5.21.0

Changelog generated by Shipkit Changelog Gradle Plugin

5.21.0

Commits
  • 09d2230 Bump graalvm/setup-graalvm from 1.4.3 to 1.4.4 (#3768)
  • df3e0cc Bump graalvm/setup-graalvm from 1.4.2 to 1.4.3 (#3767)
  • 04a6e9f Bump actions/checkout from 5 to 6 (#3765)
  • 756a3cf Add description of matchers to potential mismatch (#3760)
  • 58ba445 Forbid mocking WeakReference with inline mock maker (#3759)
  • 966d600 Bump actions/upload-artifact from 4 to 5 (#3756)
  • 632bf7b Bump graalvm/setup-graalvm from 1.4.1 to 1.4.2 (#3755)
  • 8564b43 Fix primitives support in GenericArrayReturnType for Android (#3753)
  • bf3a809 Bump graalvm/setup-graalvm from 1.4.0 to 1.4.1 (#3744)
  • cffddd4 Bump gradle/actions from 4 to 5 (#3743)
  • Additional commits viewable in compare view

Updates org.mockito:mockito-junit-jupiter from 5.20.0 to 5.21.0

Release notes

Sourced from org.mockito:mockito-junit-jupiter's releases.

v5.21.0

Changelog generated by Shipkit Changelog Gradle Plugin

5.21.0

Bumps the maven-other-updates group with 12 updates:

| Package | From | To |
| --- | --- | --- |
| [org.jdbi:jdbi3-bom](https://github.com/jdbi/jdbi) | `3.50.0` | `3.51.0` |
| [io.sentry:sentry](https://github.com/getsentry/sentry-java) | `8.27.1` | `8.28.0` |
| [io.netty:netty-codec-dns](https://github.com/netty/netty) | `4.2.7.Final` | `4.2.8.Final` |
| [io.netty:netty-codec-http](https://github.com/netty/netty) | `4.2.7.Final` | `4.2.8.Final` |
| [io.netty:netty-transport](https://github.com/netty/netty) | `4.2.7.Final` | `4.2.8.Final` |
| [io.netty:netty-codec-socks](https://github.com/netty/netty) | `4.2.7.Final` | `4.2.8.Final` |
| [io.netty:netty-resolver-dns](https://github.com/netty/netty) | `4.2.7.Final` | `4.2.8.Final` |
| [io.netty:netty-handler-proxy](https://github.com/netty/netty) | `4.2.7.Final` | `4.2.8.Final` |
| [org.mockito:mockito-core](https://github.com/mockito/mockito) | `5.20.0` | `5.21.0` |
| [org.mockito:mockito-junit-jupiter](https://github.com/mockito/mockito) | `5.20.0` | `5.21.0` |
| [org.elasticsearch.client:elasticsearch-rest-client](https://github.com/elastic/elasticsearch) | `9.2.1` | `9.2.2` |
| [org.sonarsource.scanner.maven:sonar-maven-plugin](https://github.com/SonarSource/sonar-scanner-maven) | `5.3.0.6276` | `5.5.0.6356` |


Updates `org.jdbi:jdbi3-bom` from 3.50.0 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.50.0...v3.51.0)

Updates `io.sentry:sentry` from 8.27.1 to 8.28.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.27.1...8.28.0)

Updates `io.netty:netty-codec-dns` from 4.2.7.Final to 4.2.8.Final
- [Commits](netty/netty@netty-4.2.7.Final...netty-4.2.8.Final)

Updates `io.netty:netty-codec-http` from 4.2.7.Final to 4.2.8.Final
- [Commits](netty/netty@netty-4.2.7.Final...netty-4.2.8.Final)

Updates `io.netty:netty-transport` from 4.2.7.Final to 4.2.8.Final
- [Commits](netty/netty@netty-4.2.7.Final...netty-4.2.8.Final)

Updates `io.netty:netty-codec-socks` from 4.2.7.Final to 4.2.8.Final
- [Commits](netty/netty@netty-4.2.7.Final...netty-4.2.8.Final)

Updates `io.netty:netty-resolver-dns` from 4.2.7.Final to 4.2.8.Final
- [Commits](netty/netty@netty-4.2.7.Final...netty-4.2.8.Final)

Updates `io.netty:netty-handler-proxy` from 4.2.7.Final to 4.2.8.Final
- [Commits](netty/netty@netty-4.2.7.Final...netty-4.2.8.Final)

Updates `io.netty:netty-codec-http` from 4.2.7.Final to 4.2.8.Final
- [Commits](netty/netty@netty-4.2.7.Final...netty-4.2.8.Final)

Updates `io.netty:netty-transport` from 4.2.7.Final to 4.2.8.Final
- [Commits](netty/netty@netty-4.2.7.Final...netty-4.2.8.Final)

Updates `io.netty:netty-codec-socks` from 4.2.7.Final to 4.2.8.Final
- [Commits](netty/netty@netty-4.2.7.Final...netty-4.2.8.Final)

Updates `io.netty:netty-resolver-dns` from 4.2.7.Final to 4.2.8.Final
- [Commits](netty/netty@netty-4.2.7.Final...netty-4.2.8.Final)

Updates `io.netty:netty-handler-proxy` from 4.2.7.Final to 4.2.8.Final
- [Commits](netty/netty@netty-4.2.7.Final...netty-4.2.8.Final)

Updates `org.mockito:mockito-core` from 5.20.0 to 5.21.0
- [Release notes](https://github.com/mockito/mockito/releases)
- [Commits](mockito/mockito@v5.20.0...v5.21.0)

Updates `org.mockito:mockito-junit-jupiter` from 5.20.0 to 5.21.0
- [Release notes](https://github.com/mockito/mockito/releases)
- [Commits](mockito/mockito@v5.20.0...v5.21.0)

Updates `org.mockito:mockito-junit-jupiter` from 5.20.0 to 5.21.0
- [Release notes](https://github.com/mockito/mockito/releases)
- [Commits](mockito/mockito@v5.20.0...v5.21.0)

Updates `org.elasticsearch.client:elasticsearch-rest-client` from 9.2.1 to 9.2.2
- [Release notes](https://github.com/elastic/elasticsearch/releases)
- [Changelog](https://github.com/elastic/elasticsearch/blob/main/CHANGELOG.md)
- [Commits](elastic/elasticsearch@v9.2.1...v9.2.2)

Updates `org.sonarsource.scanner.maven:sonar-maven-plugin` from 5.3.0.6276 to 5.5.0.6356
- [Release notes](https://github.com/SonarSource/sonar-scanner-maven/releases)
- [Commits](SonarSource/sonar-scanner-maven@5.3.0.6276...5.5.0.6356)

---
updated-dependencies:
- dependency-name: org.jdbi:jdbi3-bom
  dependency-version: 3.51.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-other-updates
- dependency-name: io.sentry:sentry
  dependency-version: 8.28.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-other-updates
- dependency-name: io.netty:netty-codec-dns
  dependency-version: 4.2.8.Final
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-other-updates
- dependency-name: io.netty:netty-codec-http
  dependency-version: 4.2.8.Final
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-other-updates
- dependency-name: io.netty:netty-transport
  dependency-version: 4.2.8.Final
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-other-updates
- dependency-name: io.netty:netty-codec-socks
  dependency-version: 4.2.8.Final
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-other-updates
- dependency-name: io.netty:netty-resolver-dns
  dependency-version: 4.2.8.Final
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-other-updates
- dependency-name: io.netty:netty-handler-proxy
  dependency-version: 4.2.8.Final
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-other-updates
- dependency-name: io.netty:netty-codec-http
  dependency-version: 4.2.8.Final
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-other-updates
- dependency-name: io.netty:netty-transport
  dependency-version: 4.2.8.Final
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-other-updates
- dependency-name: io.netty:netty-codec-socks
  dependency-version: 4.2.8.Final
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-other-updates
- dependency-name: io.netty:netty-resolver-dns
  dependency-version: 4.2.8.Final
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-other-updates
- dependency-name: io.netty:netty-handler-proxy
  dependency-version: 4.2.8.Final
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-other-updates
- dependency-name: org.mockito:mockito-core
  dependency-version: 5.21.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: maven-other-updates
- dependency-name: org.mockito:mockito-junit-jupiter
  dependency-version: 5.21.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: maven-other-updates
- dependency-name: org.mockito:mockito-junit-jupiter
  dependency-version: 5.21.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: maven-other-updates
- dependency-name: org.elasticsearch.client:elasticsearch-rest-client
  dependency-version: 9.2.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-other-updates
- dependency-name: org.sonarsource.scanner.maven:sonar-maven-plugin
  dependency-version: 5.5.0.6356
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-other-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner December 15, 2025 00:28
@dependabot dependabot bot requested review from fboulnois and rushtong and removed request for a team December 15, 2025 00:28
Copy link
Contributor

@rushtong rushtong left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pending CI, 👍🏽

@sonarqubecloud
Copy link

@otchet-broad otchet-broad merged commit f50f329 into develop Dec 15, 2025
14 checks passed
@otchet-broad otchet-broad deleted the dependabot/maven/develop/maven-other-updates-335077565c branch December 15, 2025 20:17
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.

4 participants