Skip to content

chore: bump the gradle-updates group across 1 directory with 6 updates#120

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/gradle-updates-688cf69737
Closed

chore: bump the gradle-updates group across 1 directory with 6 updates#120
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/gradle-updates-688cf69737

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jan 26, 2026

Copy link
Copy Markdown
Contributor

Bumps the gradle-updates group with 6 updates in the / directory:

Package From To
gradle-wrapper 9.2.1 9.3.0
com.google.crypto.tink:tink 1.19.0 1.20.0
com.fasterxml.jackson:jackson-bom 2.20.1 2.21.0
io.kotest:kotest-bom 6.0.7 6.1.1
io.mockk:mockk 1.14.7 1.14.9
com.diffplug.spotless 8.1.0 8.2.0

Updates gradle-wrapper from 9.2.1 to 9.3.0

Updates com.google.crypto.tink:tink from 1.19.0 to 1.20.0

Release notes

Sourced from com.google.crypto.tink:tink's releases.

Tink Java v1.20.0

Tink is a multi-language, cross-platform library that provides simple and misuse-proof APIs for common cryptographic tasks.

This is Tink Java 1.20.0

The complete list of changes since 1.19.0 can be found here.

  • Updated the Protobuf dependency to 4.33.0.
  • Improved performance for creating JWT signature primitives.
  • Dropped support for WORKSPACE Bazel files.
  • Allow using 32-byte keys in subtle AES-SIV primitive.
  • Fixed tink-crypto/tink-java#63

Maven:

<dependency>
    <groupId>com.google.crypto.tink</groupId>
    <artifactId>tink</artifactId>
    <version>1.20.0</version>
</dependency>

Gradle:

dependencies {
  implementation 'com.google.crypto.tink:tink-android:1.20.0'
}

Bazel:

Using bzlmod

bazel_dep(name = "tink_java")

git_override(
module_name = "tink_java",
remote = "https://github.com/tink-crypto/tink-java",
tag = "v1.20.0",
)

Commits
  • fe3e251 Tag version 1.20.0
  • efe61ad Move JwtNames.java to /jwt/internal/JwtNames.java
  • 2450984 Move JsonUtil to com.google.crypto.tink.jwt.internal.
  • 493a645 Add createWithProvider to internal SLH-DSA primitives.
  • 71f2a9b Implement the LowLevelCryptoCaller annotation.
  • d231253 Make SlhDsa available in SignatureConfigurationV1.
  • 47d37db Introduce SlhDsaSign/VerifyConscrypt to Tink Java.
  • 067cd7a Introduce SlhDsaProtoSerialization in Tink Java.
  • 074bbfb Introduce SlhDsaPrivateKeys to Tink Java.
  • ab3558c Introduce SlhDsaPublicKey to Tink Java.
  • Additional commits viewable in compare view

Updates com.fasterxml.jackson:jackson-bom from 2.20.1 to 2.21.0

Commits

Updates io.kotest:kotest-bom from 6.0.7 to 6.1.1

Release notes

Sourced from io.kotest:kotest-bom's releases.

v6.1.1

What's Changed

Full Changelog: kotest/kotest@v6.1.0...v6.1.1

v6.1.0

The first Kotest release of 2026 is here - 6.1 'Bouncing Boimler'

  • Compatible with Kotlin 2.0, 2.1, 2.2 and 2.3
  • Enhanced data-testing with new syntax that mirrors the spec style to enable more intuitive tests. This also gives you control over how data tests interact with test lifecycle callbacks!
  • Much improved IDE plugin support including running individual tests for native targets and fixes for many long standing issues. Re-run tests and jump to source for all nested tests in JVM mode
  • The test framework has been updated with Jasmine style f-focused syntax to mirror the x-disabled syntax.
  • Support for JUnit 6 via the new kotest-runner-junit6 module.
  • The popular TestContainers extension has been updated to support Docker ComposeContainers. Also now with an option to pipe the container logs directly into the test output for easier debugging!
  • Full support for the Gradle test-retry plugin.
  • Many improvements and bug fixes to our assertions library including support for custom equality in shouldBe assertions
  • New assertions added such as shouldBeAtMost(x) and shouldBeAtLeast(y) for primitives. A reminder that assertions don't require the Kotest test framework. They are still the best Kotlin assertions library, in our opinion, even if you are using JUnit or another test framework.
  • Recreate race conditions easily using our parallel runner.
  • Various property test improvements such as new Arb types for arrays and support for specifying Arb collection sizes globally. Just like assertions, the property testing library doesn't require the Kotest test framework.

What's Changed

... (truncated)

Commits
  • d797f4b reintroduce string spec tests with config to be root tests (#5608)
  • aa7c4d4 Update KSP generation to skip private classes (#5604)
  • 57e569b Refactor TypeMatchers to use MatcherResultBuilder for cleaner and consist...
  • 442ec8b Add new documentation for conditional exceptions in Kotest
  • ef74a3f Refine conditional annotations documentation
  • 3cac3a1 Fix Test Execution fails when gradle configuration cache is enabled (#5603)
  • 08e03ff Fix xmethod focus using DSL (#5588)
  • 2466415 Add action-junit-report to PRs (#5593)
  • 2ed8c5e Restore JS tests module (#5597)
  • 3bc237d Add MatcherResultBuilder for third parties to integrate matchers (#5594)
  • Additional commits viewable in compare view

Updates io.mockk:mockk from 1.14.7 to 1.14.9

Release notes

Sourced from io.mockk:mockk's releases.

v1.14.9

What's Changed

New Contributors

Full Changelog: mockk/mockk@1.14.6...1.14.9

Commits
  • 71a8e21 Release v1.14.9 and bump versions
  • cd84546 Merge pull request #1500 from neungs-2/master
  • 79b507a Merge pull request #1505 from jgrnrt/fix-dokka-2
  • 373f95b bump dokka to 2.2.0-Beta to fix "ERROR CLASS: Symbol not found" in generated ...
  • dbd755c docs: @​InjectMockKs dependency order
  • e4ff90b Merge pull request #1503 from nishatoma/add-clear-memory-method
  • 4a7d481 fix: add backward compatible method for MockInitializer
  • db40a01 Merge pull request #1442 from ianbrandt/issue-1342
  • 9249fbf Replaced MethodHandle usage with Method for value class unboxing to suppo...
  • a34d4d9 Updated the :test-modules:client-tests Kotlinx Coroutines dependency versio...
  • Additional commits viewable in compare view

Updates com.diffplug.spotless from 8.1.0 to 8.2.0

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot 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 gradle-updates group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| gradle-wrapper | `9.2.1` | `9.3.0` |
| [com.google.crypto.tink:tink](https://github.com/tink-crypto/tink-java) | `1.19.0` | `1.20.0` |
| [com.fasterxml.jackson:jackson-bom](https://github.com/FasterXML/jackson-bom) | `2.20.1` | `2.21.0` |
| [io.kotest:kotest-bom](https://github.com/kotest/kotest) | `6.0.7` | `6.1.1` |
| [io.mockk:mockk](https://github.com/mockk/mockk) | `1.14.7` | `1.14.9` |
| com.diffplug.spotless | `8.1.0` | `8.2.0` |



Updates `gradle-wrapper` from 9.2.1 to 9.3.0

Updates `com.google.crypto.tink:tink` from 1.19.0 to 1.20.0
- [Release notes](https://github.com/tink-crypto/tink-java/releases)
- [Commits](tink-crypto/tink-java@v1.19.0...v1.20.0)

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

Updates `io.kotest:kotest-bom` from 6.0.7 to 6.1.1
- [Release notes](https://github.com/kotest/kotest/releases)
- [Commits](kotest/kotest@6.0.7...6.1.1)

Updates `io.mockk:mockk` from 1.14.7 to 1.14.9
- [Release notes](https://github.com/mockk/mockk/releases)
- [Commits](mockk/mockk@1.14.7...1.14.9)

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

---
updated-dependencies:
- dependency-name: gradle-wrapper
  dependency-version: 9.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-updates
- dependency-name: com.google.crypto.tink:tink
  dependency-version: 1.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-updates
- dependency-name: com.fasterxml.jackson:jackson-bom
  dependency-version: 2.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-updates
- dependency-name: io.kotest:kotest-bom
  dependency-version: 6.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-updates
- dependency-name: io.mockk:mockk
  dependency-version: 1.14.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle-updates
- dependency-name: com.diffplug.spotless
  dependency-version: 8.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-updates
...

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 26, 2026
@dependabot dependabot Bot requested a review from cloudshiftchris as a code owner January 26, 2026 15:21
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Jan 26, 2026
@dependabot @github

dependabot Bot commented on behalf of github Mar 9, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Mar 9, 2026
@dependabot dependabot Bot deleted the dependabot/gradle/gradle-updates-688cf69737 branch March 9, 2026 13:30
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