Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the minor-and-patch-updates group with 18 updates in the / directory:

Package From To
org.sonarqube 7.0.1.6134 7.2.2.6593
org.openapi.generator 7.17.0 7.18.0
com.gorylenko.gradle-git-properties 2.5.3 2.5.4
com.diffplug.spotless 8.0.0 8.1.0
io.sentry:sentry-logback 8.25.0 8.29.0
com.google.mug:mug 9.3 9.7
io.swagger.core.v3:swagger-annotations 2.2.40 2.2.41
com.squareup.okhttp3:okhttp 5.3.0 5.3.2
bio.terra:java-pfb-library 0.87.0 0.92.0
com.google.cloud:spring-cloud-gcp-starter-storage 7.4.1 7.4.2
com.google.cloud:spring-cloud-gcp-starter-pubsub 7.4.1 7.4.2
org.webjars.npm:swagger-ui-dist 5.30.1 5.31.0
au.com.dius.pact.provider:spring 4.6.17 4.6.19
au.com.dius.pact.consumer:junit5 4.6.17 4.6.19
com.google.cloud:google-cloud-nio 0.128.7 0.128.9
org.apache.commons:commons-configuration2 2.12.0 2.13.0
org.apache.tomcat.embed:tomcat-embed-core 11.0.13 11.0.15
au.com.dius.pact 4.6.17 4.6.19

Updates org.sonarqube from 7.0.1.6134 to 7.2.2.6593

Updates org.openapi.generator from 7.17.0 to 7.18.0

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

Updates com.diffplug.spotless from 8.0.0 to 8.1.0

Updates io.sentry:sentry-logback from 8.25.0 to 8.29.0

Release notes

Sourced from io.sentry:sentry-logback'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://examplePublicKey@o0.ingest.sentry.io/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-logback'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://examplePublicKey@o0.ingest.sentry.io/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 com.google.mug:mug from 9.3 to 9.7

Release notes

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

Release 9.7

  • SafeSql.args() for interoperability with JdbcTemplate
  • Iteration.lazily(), Iteration.emit().

Release 9.5

  • Parser.quotedBy().
  • Parser.first() to search for an anchor point.
  • Parser.sequence() for 3 and 4 parsers.
  • SafeSql.prepareToBatch() for JDBC batching.
  • Csv.join(), Csv.joining().

mug-root-9.4

Release 9.4

  • More parser combinators
Commits
  • f19c589 fixing deploy bom
  • abdbdce add <parent> to mug-bom to fix deploy
  • 0850b76 move deprecated methods down
  • 41ef999 deprecate lazily(Supplier, Consumer)
  • 9b7f2bf verify permutation up to 8 elements
  • e206b49 Do not return this from lazily(), forEachLazily() and emit(). They are rarely...
  • 0781780 Permutation.from(int)
  • d8f05ee use List.of() instead of Set.of()
  • 6002f73 use Collections.swap()
  • 4603965 use Collections.swap()
  • Additional commits viewable in compare view

Updates io.swagger.core.v3:swagger-annotations from 2.2.40 to 2.2.41

Updates com.squareup.okhttp3:okhttp from 5.3.0 to 5.3.2

Changelog

Sourced from com.squareup.okhttp3:okhttp's changelog.

Version 5.3.2

2025-11-18

  • Fix: Don't delay triggering timeouts. In Okio 3.16.0 we introduced a regression that caused timeouts to fire later than they were supposed to.

  • Upgrade: [Okio 3.16.4][okio_3_16_4].

Version 5.3.1

2025-11-16

This release is the same as 5.3.0. Okio 3.16.3 didn't have a necessary fix!

  • Upgrade: [Okio 3.16.3][okio_3_16_3].
Commits

Updates bio.terra:java-pfb-library from 0.87.0 to 0.92.0

Updates com.google.cloud:spring-cloud-gcp-starter-storage from 7.4.1 to 7.4.2

Release notes

Sourced from com.google.cloud:spring-cloud-gcp-starter-storage's releases.

v7.4.2

7.4.2 (2025-12-18)

Bug Fixes

  • deps: update dependency com.google.cloud:libraries-bom to v26.73.0 (#4251) (70c1c59)
  • deps: update gapic-generator-java-bom.version to v2.64.1 (#4241) (ad9149e)
  • deps: update gapic-generator-java-bom.version to v2.64.2 (#4250) (3c4da00)

Documentation

Changelog

Sourced from com.google.cloud:spring-cloud-gcp-starter-storage's changelog.

7.4.2 (2025-12-18)

Bug Fixes

  • deps: update dependency com.google.cloud:libraries-bom to v26.73.0 (#4251) (70c1c59)
  • deps: update gapic-generator-java-bom.version to v2.64.1 (#4241) (ad9149e)
  • deps: update gapic-generator-java-bom.version to v2.64.2 (#4250) (3c4da00)

Documentation

Commits

Updates com.google.cloud:spring-cloud-gcp-starter-pubsub from 7.4.1 to 7.4.2

Release notes

Sourced from com.google.cloud:spring-cloud-gcp-starter-pubsub's releases.

v7.4.2

7.4.2 (2025-12-18)

Bug Fixes

  • deps: update dependency com.google.cloud:libraries-bom to v26.73.0 (#4251) (70c1c59)
  • deps: update gapic-generator-java-bom.version to v2.64.1 (#4241) (ad9149e)
  • deps: update gapic-generator-java-bom.version to v2.64.2 (#4250) (3c4da00)

Documentation

Changelog

Sourced from com.google.cloud:spring-cloud-gcp-starter-pubsub's changelog.

7.4.2 (2025-12-18)

Bug Fixes

  • deps: update dependency com.google.cloud:libraries-bom to v26.73.0 (#4251) (70c1c59)
  • deps: update gapic-generator-java-bom.version to v2.64.1 (#4241) (ad9149e)
  • deps: update gapic-generator-java-bom.version to v2.64.2 (#4250) (3c4da00)

Documentation

Commits

Updates com.google.cloud:spring-cloud-gcp-starter-pubsub from 7.4.1 to 7.4.2

Release notes

Sourced from com.google.cloud:spring-cloud-gcp-starter-pubsub's releases.

v7.4.2

7.4.2 (2025-12-18)

Bug Fixes

  • deps: update dependency com.google.cloud:libraries-bom to v26.73.0 (#4251) (70c1c59)
  • deps: update gapic-generator-java-bom.version to v2.64.1 (#4241) (ad9149e)
  • deps: update gapic-generator-java-bom.version to v2.64.2 (#4250) (3c4da00)

Documentation

Changelog

Sourced from com.google.cloud:spring-cloud-gcp-starter-pubsub's changelog.

7.4.2 (2025-12-18)

Bug Fixes

  • deps: update dependency com.google.cloud:libraries-bom to v26.73.0 (#4251) (70c1c59)
  • deps: update gapic-generator-java-bom.version to v2.64.1 (#4241) (ad9149e)
  • deps: update gapic-generator-java-bom.version to v2.64.2 (#4250) (3c4da00)

Documentation

Commits

Updates org.webjars.npm:swagger-ui-dist from 5.30.1 to 5.31.0

Release notes

Sourced from org.webjars.npm:swagger-ui-dist's releases.

v5.31.0

5.31.0 (2025-12-11)

Features

v5.30.3

5.30.3 (2025-11-25)

Bug Fixes

  • deps: update vulnerable @​release-it/conventional-changelog to 10.0.2 (#10645) (6acfc6e)
  • deps: update vulnerable dependencies (js-yaml & glob) (#10644) (03cf01b)
  • utils: handle sanitizing multi-level relative paths (#10640) (58aff59), closes #4107

v5.30.2

5.30.2 (2025-11-04)

Bug Fixes

  • deps: bump react-syntax-highlighter to 16.0.0 (#10620) (270d96d)
Commits
  • 61dddd4 chore(release): cut the 5.31.0 release
  • cf11271 Revert "chore(release): cut the 5.31.0 release" (#10658)
  • e52faf8 chore(release): cut the 5.31.0 release
  • 5f42eee feat: add dark mode (#10653)
  • 199761a chore(release): cut the 5.30.3 release
  • 6acfc6e fix(deps): update vulnerable @​release-it/conventional-changelog to 10.0.2 (#1...
  • 03cf01b fix(deps): update vulnerable dependencies (js-yaml & glob) (#10644)
  • 8d9142e chore(deps): bump actions/checkout from 5 to 6 (#10643)
  • 58aff59 fix(utils): handle sanitizing multi-level relative paths (#10640)
  • 85f0c5f chore(deps): bump js-yaml from 4.1.0 to 4.1.1 (#10637)
  • Additional commits viewable in compare view

Updates au.com.dius.pact.provider:spring from 4.6.17 to 4.6.19

Release notes

Sourced from au.com.dius.pact.provider:spring's releases.

4.6.19

Maintenance Release

  • ce88f2729 - Move custom-mimetypes.xml directly to classpath (Carolyn Biggar)
  • afb1cff55 - [broken build] Change expected supertype for application/json to text/javascript (Carolyn Biggar)
  • 12029d5dd - [broken build] Upgrade tika-core 2.9.4 > 3.2.3 (Carolyn Biggar)
  • 076c6cc60 - Update Kotlin version for 4.7.x in README

4.6.18

Maintenance Release

  • 8a1e8b0a4 - chore: fix port conflict in test
  • 8c22c525e - chore: Update release process to use jreleaser
  • 57c5bda6f - fix: add Lambda DSL methods that are the same as the old DSL arrayEachLike #1877
  • 012242246 - chore: Update provider dependencies
  • ab81b32ba - chore: Update core dependencies
  • f3b1d6e5a - chore: Update consumer dependencies
  • 87cc6c0ce - chore: Update main dependency versions
  • 8696796fe - chore: Update Gradle to 7.6.6
  • 897aaea3c - Reference Quarkus in service providers section (Holly Cummins)
  • c50f6271d - chore(deps): bump actions/setup-java from 3 to 5
  • 4670fa8f4 - Correct Java versions in developer-facing content (Holly Cummins)
  • aa17dca65 - Update classgraph to work around compatibility issue (Holly Cummins)
  • 286861e97 - chore(CI): update to actions/cache@v4
  • 64a931298 - chore: Update plugin driver to 0.5.2
  • 7a924a007 - fix: Ensure provider state is injected when verifying synchronous message pacts (Ruud Welling)
Changelog

Sourced from au.com.dius.pact.provider:spring's changelog.

4.6.19 - Maintenance Release

  • 84e70f187 - Merge pull request #1880 from pact-foundation/dependabot/github_actions/actions/checkout-6 (Ronald Holshausen, Mon Dec 15 10:21:53 2025 +1100)
  • 59816cf78 - Merge pull request #1887 from csbiggar/upgrade-tika-for-issue-1885 (Ronald Holshausen, Mon Dec 15 10:21:13 2025 +1100)
  • ce88f2729 - Move custom-mimetypes.xml directly to classpath (Carolyn Biggar, Sat Dec 13 00:35:03 2025 +0000)
  • afb1cff55 - [broken build] Change expected supertype for application/json to text/javascript (Carolyn Biggar, Sat Dec 13 00:29:35 2025 +0000)
  • 12029d5dd - [broken build] Upgrade tika-core 2.9.4 > 3.2.3 (Carolyn Biggar, Sat Dec 13 00:25:11 2025 +0000)
  • 076c6cc60 - Update Kotlin version for 4.7.x in README (Ronald Holshausen, Wed Dec 10 11:47:06 2025 +1100)
  • 7cfade7eb - chore(deps): bump actions/checkout from 2 to 6 (dependabot[bot], Mon Nov 24 16:53:18 2025 +0000)
  • 0c727fe86 - chore: Correct release script (Ronald Holshausen, Tue Nov 11 11:28:59 2025 +1100)
  • 64044d17e - bump version to 4.6.19 (Ronald Holshausen, Tue Nov 11 11:28:27 2025 +1100)

4.6.18 - Maintenance Release

  • 8a1e8b0a4 - chore: fix port conflict in test (Ronald Holshausen, Tue Nov 11 10:39:20 2025 +1100)
  • 8c22c525e - chore: Update release process to use jreleaser (Ronald Holshausen, Tue Nov 11 10:30:48 2025 +1100)
  • 57c5bda6f - fix: add Lambda DSL methods that are the same as the old DSL arrayEachLike #1877 (Ronald Holshausen, Mon Nov 10 15:30:04 2025 +1100)
  • 012242246 - chore: Update provider dependencies (Ronald Holshausen, Mon Nov 10 14:35:19 2025 +1100)
  • ab81b32ba - chore: Update core dependencies (Ronald Holshausen, Mon Nov 10 11:20:36 2025 +1100)
  • f3b1d6e5a - chore: Update consumer dependencies (Ronald Holshausen, Mon Nov 10 11:06:01 2025 +1100)
  • 87cc6c0ce - chore: Update main dependency versions (Ronald Holshausen, Mon Nov 10 10:45:18 2025 +1100)
  • 8696796fe - chore: Update Gradle to 7.6.6 (Ronald Holshausen, Mon Nov 10 10:19:21 2025 +1100)
  • 3f60ce0e0 - Merge pull request #1875 from holly-cummins/reference-quarkus-in-docs (Ronald Holshausen, Fri Aug 29 09:06:32 2025 +1000)
  • 897aaea3c - Reference Quarkus in service providers section (Holly Cummins, Thu Aug 28 19:30:51 2025 +0100)
  • c4abfaaf8 - Merge pull request #1872 from pact-foundation/dependabot/github_actions/actions/setup-java-5 (Ronald Holshausen, Thu Aug 28 10:10:55 2025 +1000)
  • 8a3e56648 - Merge pull request #1873 from holly-cummins/update-classgraph (Ronald Holshausen, Thu Aug 28 10:10:20 2025 +1000)
  • c50f6271d - chore(deps): bump actions/setup-java from 3 to 5 (dependabot[bot], Wed Aug 27 23:37:55 2025 +0000)
  • f663217ad - Merge pull request #1874 from holly-cummins/improve-java-version-clarity (Ronald Holshausen, Thu Aug 28 09:34:44 2025 +1000)
  • 4670fa8f4 - Correct Java versions in developer-facing content (Holly Cummins, Wed Aug 27 16:35:52 2025 +0100)
  • aa17dca65 - Update classgraph to work around compatibility issue (Holly Cummins, Wed Aug 27 16:19:14 2025 +0100)
  • 286861e97 - chore(CI): update to actions/cache@v4 (Ronald Holshausen, Thu May 29 13:59:06 2025 +1000)
  • 64a931298 - chore: Update plugin driver to 0.5.2 (Ronald Holshausen, Thu May 29 11:00:58 2025 +1000)
  • 15da5a605 - Update README.md (Ronald Holshausen, Fri May 23 10:10:59 2025 +1000)
  • 7d49354be - Merge pull request #1858 from WellingR/sync-message-pact-provider-state (Ronald Holshausen, Mon Mar 17 10:03:08 2025 +1100)
  • 7a924a007 - fix: Ensure provider state is injected when verifying synchronous message pacts (Ruud Welling, Sun Mar 16 18:44:41 2025 +0100)
  • 90e0f919d - bump version to 4.6.18 (Ronald Holshausen, Fri Feb 14 11:52:44 2025 +1100)
Commits

Updates au.com.dius.pact.consumer:junit5 from 4.6.17 to 4.6.19

Release notes

Sourced from au.com.dius.pact.consumer:junit5's releases.

4.6.19

Maintenance Release

  • ce88f2729 - Move custom-mimetypes.xml directly to classpath (Carolyn Biggar)
  • afb1cff55 - [broken build] Change expected supertype for application/json to text/javascript (Carolyn Biggar)
  • 12029d5dd - [broken build] Upgrade tika-core 2.9.4 > 3.2.3 (Carolyn Biggar)
  • 076c6cc60 - Update Kotlin version for 4.7.x in README

4.6.18

Maintenance Release

  • 8a1e8b0a4 - chore: fix port conflict in test
  • 8c22c525e - chore: Update release process to use jreleaser
  • 57c5bda6f - fix: add Lambda DSL methods that are the same as the old DSL arrayEachLike #1877
  • 012242246 - chore: Update provider dependencies
  • ab81b32ba - chore: Update core dependencies
  • f3b1d6e5a - chore: Update consumer dependencies
  • 87cc6c0ce - chore: Update main dependency versions
  • 8696796fe - chore: Update Gradle to 7.6.6
  • 897aaea3c - Reference Quarkus in service providers section (Holly Cummins)
  • c50f6271d - chore(deps): bump actions/setup-java from 3 to 5
  • 4670fa8f4 - Correct Java versions in developer-facing content (Holly Cummins)
  • aa17dca65 - Update classgraph to work around compatibility issue (Holly Cummins)
  • 286861e97 - chore(CI): update to actions/cache@v4
  • 64a931298 - chore: Update plugin driver to 0.5.2
  • 7a924a007 - fix: Ensure provider state is injected when verifying synchronous message pacts (Ruud Welling)
Changelog

Sourced from au.com.dius.pact.consumer:junit5's changelog.

4.6.19 - Maintenance Release

  • 84e70f187 - Merge pull request #1880 from pact-foundation/dependabot/github_actions/actions/checkout-6 (Ronald Holshausen, Mon Dec 15 10:21:53 2025 +1100)
  • 59816cf78 - Merge pull request #1887 from csbiggar/upgrade-tika-for-issue-1885 (Ronald Holshausen, Mon Dec 15 10:21:13 2025 +1100)
  • ce88f2729 - Move custom-mimetypes.xml directly to classpath (Carolyn Biggar, Sat Dec 13 00:35:03 2025 +0000)
  • afb1cff55 - [broken build] Change expected supertype for application/json to text/javascript (Carolyn Biggar, Sat Dec 13 00:29:35 2025 +0000)
  • 12029d5dd - [broken build] Upgrade tika-core 2.9.4 > 3.2.3 (Carolyn Biggar, Sat Dec 13 00:25:11 2025 +0000)
  • 076c6cc60 - Update Kotlin version for 4.7.x in README (Ronald Holshausen, Wed Dec 10 11:47:06 2025 +1100)
  • 7cfade7eb - chore(deps): bump actions/checkout from 2 to 6 (dependabot[bot], Mon Nov 24 16:53:18 2025 +0000)
  • 0c727fe86 - chore: Correct release script (Ronald Holshausen, Tue Nov 11 11:28:59 2025 +1100)
  • 64044d17e - bump version to 4.6.19 (Ronald Holshausen, Tue Nov 11 11:28:27 2025 +1100)

4.6.18 - Maintenance Release

  • 8a1e8b0a4 - chore: fix port conflict in test (Ronald Holshausen, Tue Nov 11 10:39:20 2025 +1100)
  • 8c22c525e - chore: Update release process to use jreleaser (Ronald Holshausen, Tue Nov 11 10:30:48 2025 +1100)
  • 57c5bda6f - fix: add Lambda DSL methods that are the same as the old DSL arrayEachLike #1877 (Ronald Holshausen, Mon Nov 10 15:30:04 2025 +1100)
  • 012242246 - chore: Update provider dependencies (Ronald Holshausen, Mon Nov 10 14:35:19 2025 +1100)
  • ab81b32ba - chore: Update core dependencies (Ronald Holshausen, Mon Nov 10 11:20:36 2025 +1100)
  • f3b1d6e5a - chore: Update consumer dependencies (Ronald Holshausen, Mon Nov 10 11:06:01 2025 +1100)
  • 87cc6c0ce - chore: Update main dependency versions (Ronald Holshausen, Mon Nov 10 10:45:18 2025 +1100)
  • 8696796fe - chore: Update Gradle to 7.6.6 (Ronald Holshausen, Mon Nov 10 10:19:21 2025 +1100)
  • 3f60ce0e0 - Merge pull request #1875 from holly-cummins/reference-quarkus-in-docs (Ronald Holshausen, Fri Aug 29 09:06:32 2025 +1000)
  • 897aaea3c - Reference Quarkus in service providers section (Holly Cummins, Thu Aug 28 19:30:51 2025 +0100)
  • c4abfaaf8 - Merge pull request #1872 from pact-foundation/dependabot/github_actions/actions/setup-java-5 (Ronald Holshausen, Thu Aug 28 10:10:55 2025 +1000)
  • 8a3e56648 - Merge pull request #1873 from holly-cummins/update-classgraph (Ronald Holshausen, Thu Aug 28 10:10:20 2025 +1000)
  • c50f6271d - chore(deps): bump actions/setup-java from 3 to 5 (dependabot[bot], Wed Aug 27 23:37:55 2025 +0000)
  • f663217ad - Merge pull request #1874 from holly-cummins/improve-java-version-clarity (Ronald Holshausen, Thu Aug 28 09:34:44 2025 +1000)
  • 4670fa8f4 - Correct Java versions in developer-facing content (Holly Cummins, Wed Aug 27 16:35:52 2025 +0100)
  • aa17dca65 - Update classgraph to work around compatibility issue (Holly Cummins, Wed Aug 27 16:19:14 2025 +0100)
  • 286861e97 - chore(CI): update to actions/cache@v4 (Ronald Holshausen, Thu May 29 13:59:06 2025 +1000)
  • 64a931298 - chore: Update plugin driver to 0.5.2 (Ronald Holshausen, Thu May 29 11:00:58 2025 +1000)
  • 15da5a605 - Update README.md (Ronald Holshausen, Fri May 23 10:10:59 2025 +1000)
  • 7d49354be - Merge pull request #1858 from WellingR/sync-message-pact-provider-state (Ronald Holshausen, Mon Mar 17 10:03:08 2025 +1100)
  • 7a924a007 - fix: Ensure provider state is injected when verifying synchronous message pacts (Ruud Welling, Sun Mar 16 18:44:41 2025 +0100)
  • 90e0f919d - bump version to 4.6.18 (Ronald Holshausen, Fri Feb 14 11:52:44 2025 +1100)
Commits

Updates com.google.cloud:google-cloud-nio from 0.128.7 to 0.128.9

Release notes

Sourced from com.google.cloud:google-cloud-nio's releases.

v0.128.9

0.128.9 (2025-12-15)

Dependencies

  • Update dependency com.google.apis:google-api-services-storage to v1-rev20251118-2.0.0 (#1710) (55c6f31)
  • Update dependency com.google.cloud:google-cloud-storage to v2.61.0 (#1712) (aaf92d0)
  • Update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 (#1709) (abf9691)

v0.128.8

0.128.8 (2025-11-10)

Dependencies

  • Update dependency com.google.cloud:google-cloud-storage to v2.60.0 (#1698) (fcd73eb)
  • Update dependency com.google.cloud:sdk-platform-java-config to v3.54.1 (#1696) (bc5c5f4)
Changelog

Sourced from com.google.cloud:google-cloud-nio's changelog.

0.128.9 (2025-12-15)

Dependencies

  • Update dependency com.google.apis:google-api-services-storage to v1-rev20251118-2.0.0 (#1710) (55c6f31)
  • Update dependency com.google.cloud:google-cloud-storage to v2.61.0 (#1712) (aaf92d0)
  • Update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 (#1709) (abf9691)

0.128.8 (2025-11-10)

Dependencies

  • Update dependency com.google.cloud:google-cloud-storage to v2.60.0 (#1698) (fcd73eb)
  • Update dependency com.google.cloud:sdk-platform-java-config to v3.54.1 (#1696) (bc5c5f4)
Commits
  • c954f41 chore(main): release 0.128.9 (#1711)
  • aaf92d0 deps: update dependency com.google.cloud:google-cloud-storage to v2.61.0 (#1712)
  • 959537a chore(deps): update dependency com.google.cloud:libraries-bom to v26.72.0 (#1...
  • 55c6f31 deps: update dependency com.google.apis:google-api-services-storage to v1-rev...
  • abf9691 deps: update dependency com.google.cloud:sdk-platform-java-config to v3.54.2 ...
  • 209d37e chore: add release-please config for protobuf-4.x (#1703)
  • b587435 chore(deps): update dependency com.google.cloud:google-cloud-nio to v0.128.8 ...
  • eadf74b chore(main): release 0.128.9-SNAPSHOT (#1699)
  • 07cf2d8 chore(main): release 0.128.8 (#1697)
  • fcd73eb deps: update dependency com.google.cloud:google-cloud-storage to v2.60.0 (#1698)
  • Additional commits viewable in compare view

Updates org.apache.commons:commons-configuration2 from 2.12.0 to 2.13.0

Updates org.apache.tomcat.embed:tomcat-embed-core from 11.0.13 to 11.0.15

Updates au.com.dius.pact from 4.6.17 to 4.6.19

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

…with 18 updates

Bumps the minor-and-patch-updates group with 18 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| org.sonarqube | `7.0.1.6134` | `7.2.2.6593` |
| org.openapi.generator | `7.17.0` | `7.18.0` |
| com.gorylenko.gradle-git-properties | `2.5.3` | `2.5.4` |
| com.diffplug.spotless | `8.0.0` | `8.1.0` |
| [io.sentry:sentry-logback](https://github.com/getsentry/sentry-java) | `8.25.0` | `8.29.0` |
| [com.google.mug:mug](https://github.com/google/mug) | `9.3` | `9.7` |
| io.swagger.core.v3:swagger-annotations | `2.2.40` | `2.2.41` |
| [com.squareup.okhttp3:okhttp](https://github.com/square/okhttp) | `5.3.0` | `5.3.2` |
| bio.terra:java-pfb-library | `0.87.0` | `0.92.0` |
| [com.google.cloud:spring-cloud-gcp-starter-storage](https://github.com/GoogleCloudPlatform/spring-cloud-gcp) | `7.4.1` | `7.4.2` |
| [com.google.cloud:spring-cloud-gcp-starter-pubsub](https://github.com/GoogleCloudPlatform/spring-cloud-gcp) | `7.4.1` | `7.4.2` |
| [org.webjars.npm:swagger-ui-dist](https://github.com/swagger-api/swagger-ui) | `5.30.1` | `5.31.0` |
| [au.com.dius.pact.provider:spring](https://github.com/pact-foundation/pact-jvm) | `4.6.17` | `4.6.19` |
| [au.com.dius.pact.consumer:junit5](https://github.com/pact-foundation/pact-jvm) | `4.6.17` | `4.6.19` |
| [com.google.cloud:google-cloud-nio](https://github.com/googleapis/java-storage-nio) | `0.128.7` | `0.128.9` |
| org.apache.commons:commons-configuration2 | `2.12.0` | `2.13.0` |
| org.apache.tomcat.embed:tomcat-embed-core | `11.0.13` | `11.0.15` |
| au.com.dius.pact | `4.6.17` | `4.6.19` |



Updates `org.sonarqube` from 7.0.1.6134 to 7.2.2.6593

Updates `org.openapi.generator` from 7.17.0 to 7.18.0

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

Updates `com.diffplug.spotless` from 8.0.0 to 8.1.0

Updates `io.sentry:sentry-logback` 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 `com.google.mug:mug` from 9.3 to 9.7
- [Release notes](https://github.com/google/mug/releases)
- [Commits](google/mug@mug-root-9.3...mug-root-9.7)

Updates `io.swagger.core.v3:swagger-annotations` from 2.2.40 to 2.2.41

Updates `com.squareup.okhttp3:okhttp` from 5.3.0 to 5.3.2
- [Changelog](https://github.com/square/okhttp/blob/master/CHANGELOG.md)
- [Commits](square/okhttp@parent-5.3.0...parent-5.3.2)

Updates `bio.terra:java-pfb-library` from 0.87.0 to 0.92.0

Updates `com.google.cloud:spring-cloud-gcp-starter-storage` from 7.4.1 to 7.4.2
- [Release notes](https://github.com/GoogleCloudPlatform/spring-cloud-gcp/releases)
- [Changelog](https://github.com/GoogleCloudPlatform/spring-cloud-gcp/blob/main/CHANGELOG.md)
- [Commits](GoogleCloudPlatform/spring-cloud-gcp@v7.4.1...v7.4.2)

Updates `com.google.cloud:spring-cloud-gcp-starter-pubsub` from 7.4.1 to 7.4.2
- [Release notes](https://github.com/GoogleCloudPlatform/spring-cloud-gcp/releases)
- [Changelog](https://github.com/GoogleCloudPlatform/spring-cloud-gcp/blob/main/CHANGELOG.md)
- [Commits](GoogleCloudPlatform/spring-cloud-gcp@v7.4.1...v7.4.2)

Updates `com.google.cloud:spring-cloud-gcp-starter-pubsub` from 7.4.1 to 7.4.2
- [Release notes](https://github.com/GoogleCloudPlatform/spring-cloud-gcp/releases)
- [Changelog](https://github.com/GoogleCloudPlatform/spring-cloud-gcp/blob/main/CHANGELOG.md)
- [Commits](GoogleCloudPlatform/spring-cloud-gcp@v7.4.1...v7.4.2)

Updates `org.webjars.npm:swagger-ui-dist` from 5.30.1 to 5.31.0
- [Release notes](https://github.com/swagger-api/swagger-ui/releases)
- [Commits](swagger-api/swagger-ui@v5.30.1...v5.31.0)

Updates `au.com.dius.pact.provider:spring` from 4.6.17 to 4.6.19
- [Release notes](https://github.com/pact-foundation/pact-jvm/releases)
- [Changelog](https://github.com/pact-foundation/pact-jvm/blob/master/CHANGELOG.md)
- [Commits](https://github.com/pact-foundation/pact-jvm/commits)

Updates `au.com.dius.pact.consumer:junit5` from 4.6.17 to 4.6.19
- [Release notes](https://github.com/pact-foundation/pact-jvm/releases)
- [Changelog](https://github.com/pact-foundation/pact-jvm/blob/master/CHANGELOG.md)
- [Commits](https://github.com/pact-foundation/pact-jvm/commits)

Updates `com.google.cloud:google-cloud-nio` from 0.128.7 to 0.128.9
- [Release notes](https://github.com/googleapis/java-storage-nio/releases)
- [Changelog](https://github.com/googleapis/java-storage-nio/blob/main/CHANGELOG.md)
- [Commits](googleapis/java-storage-nio@v0.128.7...v0.128.9)

Updates `org.apache.commons:commons-configuration2` from 2.12.0 to 2.13.0

Updates `org.apache.tomcat.embed:tomcat-embed-core` from 11.0.13 to 11.0.15

Updates `au.com.dius.pact` from 4.6.17 to 4.6.19

---
updated-dependencies:
- dependency-name: org.sonarqube
  dependency-version: 7.2.2.6593
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-updates
- dependency-name: org.openapi.generator
  dependency-version: 7.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-updates
- 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-and-patch-updates
- dependency-name: com.diffplug.spotless
  dependency-version: 8.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-updates
- dependency-name: io.sentry:sentry-logback
  dependency-version: 8.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-updates
- dependency-name: com.google.mug:mug
  dependency-version: '9.7'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-updates
- dependency-name: io.swagger.core.v3:swagger-annotations
  dependency-version: 2.2.41
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: com.squareup.okhttp3:okhttp
  dependency-version: 5.3.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: bio.terra:java-pfb-library
  dependency-version: 0.92.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-updates
- dependency-name: com.google.cloud:spring-cloud-gcp-starter-storage
  dependency-version: 7.4.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: com.google.cloud:spring-cloud-gcp-starter-pubsub
  dependency-version: 7.4.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: com.google.cloud:spring-cloud-gcp-starter-pubsub
  dependency-version: 7.4.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: org.webjars.npm:swagger-ui-dist
  dependency-version: 5.31.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-updates
- dependency-name: au.com.dius.pact.provider:spring
  dependency-version: 4.6.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: au.com.dius.pact.consumer:junit5
  dependency-version: 4.6.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: com.google.cloud:google-cloud-nio
  dependency-version: 0.128.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: org.apache.commons:commons-configuration2
  dependency-version: 2.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-updates
- dependency-name: org.apache.tomcat.embed:tomcat-embed-core
  dependency-version: 11.0.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: au.com.dius.pact
  dependency-version: 4.6.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file gradle Gradle dependency updates labels Jan 1, 2026
@dependabot dependabot bot requested a review from a team as a code owner January 1, 2026 13:06
@dependabot dependabot bot requested review from rjohanek and snf2ye and removed request for a team January 1, 2026 13:06
@dependabot dependabot bot added dependencies Pull requests that update a dependency file gradle Gradle dependency updates labels Jan 1, 2026
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 gradle Gradle dependency updates

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant