Skip to content

chore(deps): bump the github group across 1 directory with 21 updates #868

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 19, 2025

Bumps the github group with 21 updates in the / directory:

Package From To
com.fasterxml.jackson.core:jackson-databind 2.19.0 2.19.2
com.fasterxml.jackson.module:jackson-module-kotlin 2.19.0 2.19.2
com.squareup.okhttp3:mockwebserver 4.12.0 5.1.0
com.nimbusds:oauth2-oidc-sdk 11.25 11.27.1
io.netty:netty-codec-http 4.2.2.Final 4.2.4.Final
org.jetbrains.kotlinx:kotlinx-serialization-json 1.8.1 1.9.0
org.assertj:assertj-core 3.27.3 3.27.4
org.junit.jupiter:junit-jupiter-api 5.13.0 5.13.4
org.junit.jupiter:junit-jupiter-params 5.13.0 5.13.4
org.junit.jupiter:junit-jupiter-engine 5.13.0 5.13.4
io.kotest:kotest-runner-junit5-jvm 5.9.1 6.0.0
io.kotest:kotest-assertions-core-jvm 5.9.1 6.0.0
org.springframework.boot:spring-boot-starter-webflux 3.5.0 3.5.4
org.springframework.boot:spring-boot-starter-oauth2-resource-server 3.5.0 3.5.4
org.springframework.boot:spring-boot-starter-oauth2-client 3.5.0 3.5.4
org.springframework.boot:spring-boot-starter-test 3.5.0 3.5.4
org.springframework.boot:spring-boot-test 3.5.0 3.5.4
io.projectreactor:reactor-test 3.7.6 3.7.9
se.patrikerdes.use-latest-versions 0.2.18 0.2.19
org.jmailen.kotlinter 5.1.0 5.2.0
org.jetbrains.kotlin.jvm 2.1.21 2.2.10

Updates com.fasterxml.jackson.core:jackson-databind from 2.19.0 to 2.19.2

Commits

Updates com.fasterxml.jackson.module:jackson-module-kotlin from 2.19.0 to 2.19.2

Commits
  • a569a18 [maven-release-plugin] prepare release jackson-module-kotlin-2.19.2
  • 84923e3 Prep for 2.19.2
  • 524e8da Merge pull request #1014 from k163377/update-japicmp
  • ba7620c Update japicmp
  • 61ea671 Merge pull request #1009 from k163377/porting-tests
  • 605e34c Add exhaustive tests for JsonValue and JsonKey usage in value class
  • 4f69cfa Back to snapshot dep
  • 7855492 [maven-release-plugin] prepare for next development iteration
  • 439c45e [maven-release-plugin] prepare release jackson-module-kotlin-2.19.1
  • cfa10de Prep for 2.19.1
  • Additional commits viewable in compare view

Updates com.squareup.okhttp3:mockwebserver from 4.12.0 to 5.1.0

Changelog

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

Version 5.1.0

2025-07-07

  • New: Response.peekTrailers(). When we changed Response.trailers() to block instead of throwing in 5.0.0, we inadvertently removed the ability for callers to peek the trailers (by catching the IllegalStateException if they weren't available). This new API restores that capability.

  • Fix: Don't crash on trailers() if the response doesn't have a body. We broke [Retrofit] users who read the trailers on the raw() OkHttp response, after its body was decoded.

Version 5.0.0

2025-07-02

This is our first stable release of OkHttp since 2023. Here's the highlights if you're upgrading from OkHttp 4.x:

OkHttp is now packaged as separate JVM and Android artifacts. This allows us to offer platform-specific features and optimizations. If your build system handles [Gradle module metadata], this change should be automatic.

MockWebServer has a new coordinate and package name. We didn’t like that our old artifact depends on JUnit 4 so the new one doesn’t. It also has a better API built on immutable values. (We intend to continue publishing the old okhttp3.mockwebserver artifact so there’s no urgency to migrate.)

Coordinate Package Name Description
com.squareup.okhttp3:mockwebserver3:5.0.0 mockwebserver3 Core module. No JUnit dependency!
com.squareup.okhttp3:mockwebserver3-junit4:5.0.0 mockwebserver3.junit4 Optional JUnit 4 integration.
com.squareup.okhttp3:mockwebserver3-junit5:5.0.0 mockwebserver3.junit5 Optional JUnit 5 integration.
com.squareup.okhttp3:mockwebserver:5.0.0 okhttp3.mockwebserver Obsolete. Depends on JUnit 4.

OkHttp now supports Happy Eyeballs ([RFC 8305][rfc_8305]) for IPv4+IPv6 networks. It attempts both IPv6 and IPv4 connections concurrently, keeping whichever connects first.

We’ve improved our Kotlin APIs. You can skip the builder:

val request = Request(
  url = "https://cash.app/".toHttpUrl(),
)

OkHttp now supports [GraalVM].

Here’s what has changed since 5.0.0-alpha.17:

... (truncated)

Commits

Updates com.nimbusds:oauth2-oidc-sdk from 11.25 to 11.27.1

Changelog

Sourced from com.nimbusds:oauth2-oidc-sdk's changelog.

version 1.0 (2012-05-29) * First official release with authorisation endpoint, token endpoint, check ID endpoint and UserInfo endpoint support. * JSON Web Tokens (JWTs) support through the Nimbus-JWT library. * Language Tags (RFC 5646) support through the Nimbus-LangTag library. * JSON support through the JSON Smart library.

version 2.0 (2013-05-13) * Intermediary development release with Maven build, published to Maven Central.

version 2.1 (2013-06-06) * Updates the APIs to OpenID Connect Messages draft 20, OpenID Connect Standard draft 21, OpenID Connect Discovery draft 17 and OpenID Connect Registration draft 19. * Major refactoring of the APIs for greater simplicity. * Adds JUnit tests.

version 2.2 (2013-06-18) * Refactors dynamic OpenID Connect client registration. * Adds partial support of the OAuth 2.0 Dynamic Client Registration Protocol (draft-ietf-oauth-dyn-reg-12). * Optimises parsing of request parameters consisting of one or more tokens (scope, response type, etc).

version 2.3 (2013-06-19) * Renames OAuth 2.0 dynamic client registration package. * Adds ClientInformation.getClientMetadata() method. * Adds OIDCClientInformation class.

version 2.4 (2013-06-20) * Adds static OIDCClientInformation.parse(JSONObject) method.

version 2.5 (2013-06-22) * Adds support OAuth 2.0 dynamic client update. * Adds OpenID Connect dynamic client registration classes.

version 2.6 (2013-06-25) * Enforces order of preference of ACR values in OpenID Connect client metadata, as required by the specification. * Documentation and performance improvements.

version 2.7 (2013-06-26) * Switches Identifier generation to java.security.SecureRandom.

version 2.8 (2013-06-30) * Fixes serialisation and assignment bugs in ClientMetadata. * Switches Secret generation to java.security.SecureRandom.

version 2.9 (2013-09-17)

... (truncated)

Commits
  • 6ce767e Provide possibility to give external issuer for test
  • 6f8ec1c [maven-release-plugin] prepare for next development iteration
  • 7f6146c Adds TokenIntrospectionRequestTest.testParseIgnoreUnknownTokenTypeHint
  • 0a4bc0b AuthorizationCodeGrant.parse must not include URISyntaxException message in P...
  • 0e791c9 Refactors OP / AS metadata resolution with alt base URL PR (iss #495)
  • 36e51b8 Merge branch 'Iss495'
  • 3b8dd94 Edits CHANGELOG.txt for version 11.26
  • 8bc0c77 [maven-release-plugin] prepare release 11.26
  • 04a94cf [maven-release-plugin] prepare for next development iteration
  • 6ef84cc fix: allow some leniency with uri comparisons for issuer
  • Additional commits viewable in compare view

Updates io.netty:netty-codec-http from 4.2.2.Final to 4.2.4.Final

Commits
  • 7fefa5a [maven-release-plugin] prepare release netty-4.2.4.Final
  • 350da87 Merge commit from fork
  • 817bab1 Add support for SOCKS5 private authentication methods (RFC#1928) (#15470)
  • c4ac661 IoUring: Submit and process completions in a loop to ensure timely processing...
  • 464ff07 Fix build that test JDK 25 early access
  • 3d9861a MqttConnectPayload.toString() includes password (#15547) (#15548)
  • 8ca0f96 Skip testsuite-osgi by default (#15549)
  • 35d4598 Remove usage of io.netty.build.junit.TimedOutTestsListener (#15550)
  • 51f93a9 Fix netty-common OSGi Import-Package header (#15540)
  • c3a1540 Use ChannelException if DomainSocketChannelConfig method throws (#15543)
  • Additional commits viewable in compare view

Updates com.fasterxml.jackson.module:jackson-module-kotlin from 2.19.0 to 2.19.2

Commits
  • a569a18 [maven-release-plugin] prepare release jackson-module-kotlin-2.19.2
  • 84923e3 Prep for 2.19.2
  • 524e8da Merge pull request #1014 from k163377/update-japicmp
  • ba7620c Update japicmp
  • 61ea671 Merge pull request #1009 from k163377/porting-tests
  • 605e34c Add exhaustive tests for JsonValue and JsonKey usage in value class
  • 4f69cfa Back to snapshot dep
  • 7855492 [maven-release-plugin] prepare for next development iteration
  • 439c45e [maven-release-plugin] prepare release jackson-module-kotlin-2.19.1
  • cfa10de Prep for 2.19.1
  • Additional commits viewable in compare view

Updates org.jetbrains.kotlinx:kotlinx-serialization-json from 1.8.1 to 1.9.0

Release notes

Sourced from org.jetbrains.kotlinx:kotlinx-serialization-json's releases.

1.9.0

This release updates Kotlin version to 2.2.0, includes several bugfixes and provides serializers for kotlin.time.Instant.

Add kotlin.time.Instant serializers

Instant class was moved from kotlinx-datetime library to Kotlin standard library. As a result, kotlinx-datetime 0.7.0 no longer has serializers for the Instant class. To use the new kotlin.time.Instant class in your @Serializable classes, you can use this 1.9.0 kotlinx-serialization version (Kotlin 2.2 is required). You can choose between the default InstantSerializer, which uses its string representation, or specify InstantComponentSerializer that represents instant as its components. See details in the PR.

Other bugfixes

  • Fix resize in JsonPath (#2995)
  • Fixed proguard rules for obfuscation to work correctly (#2983)
Changelog

Sourced from org.jetbrains.kotlinx:kotlinx-serialization-json's changelog.

1.9.0 / 2025-06-27

This release updates Kotlin version to 2.2.0, includes several bugfixes and provides serializers for kotlin.time.Instant.

Add kotlin.time.Instant serializers

Instant class was moved from kotlinx-datetime library to Kotlin standard library. As a result, kotlinx-datetime 0.7.0 no longer has serializers for the Instant class. To use new kotlin.time.Instant class in your @​Serializable classes, you can use this 1.9.0 kotlinx-serialization version (Kotlin 2.2 is required). You can choose between default InstantSerializer which uses its string representation, or specify InstantComponentSerializer that represents instant as its components. See details in the PR.

Other bugfixes

  • Fix resize in JsonPath (#2995)
  • Fixed proguard rules for obfuscation to work correctly (#2983)
Commits

Updates org.assertj:assertj-core from 3.27.3 to 3.27.4

Release notes

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

v3.27.4

🚫 Deprecated

Core

  • Deprecate org.assertj.core.annotations.Beta in favor of org.assertj.core.annotation.Beta
  • Deprecate org.assertj.core.util.CanIgnoreReturnValue in favor of org.assertj.core.annotation.CanIgnoreReturnValue
  • Deprecate org.assertj.core.util.CheckReturnValue in favor of org.assertj.core.annotation.CheckReturnValue

🐛 Bug Fixes

Core

  • Fix thread-safety in AbstractDateAssert #3874

⚡ Improvements

  • Migrate to the Central Publisher Portal, enable snapshot publishing #3881

Core

  • Annotate fail methods with custom @Contract #3882

❤️ Contributors

Thanks to all the contributors who worked on this release:

@​kelunik

Commits
  • 7a64cde [maven-release-plugin] prepare release assertj-build-3.27.4
  • feb5f6f Annotate fail methods with custom @Contract (#3882)
  • 43e8b65 Deprecate org.assertj.core.util.CheckReturnValue in favor of `org.assertj.c...
  • 1bf8cd6 Deprecate org.assertj.core.util.CanIgnoreReturnValue in favor of `org.asser...
  • 72d08b2 Deprecate org.assertj.core.annotations.Beta in favor of `org.assertj.core.a...
  • 475c2eb Polish
  • fdc9bc5 Skip tests during snapshot publishing
  • 8f4a1b5 Migrate to the Central Publisher Portal, enable snapshot publishing (#3881)
  • 7461b68 Fix thread-safety in AbstractDateAssert (#3874)
  • 015f095 Remove EOL Java 23
  • Additional commits viewable in compare view

Updates org.junit.jupiter:junit-jupiter-api from 5.13.0 to 5.13.4

Release notes

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

JUnit 5.13.4 = Platform 1.13.4 + Jupiter 5.13.4 + Vintage 5.13.4

See Release Notes.

Full Changelog: junit-team/junit-framework@r5.13.3...r5.13.4

JUnit 5.13.3 = Platform 1.13.3 + Jupiter 5.13.3 + Vintage 5.13.3

See Release Notes.

Full Changelog: junit-team/junit-framework@r5.13.2...r5.13.3

JUnit 5.13.2 = Platform 1.13.2 + Jupiter 5.13.2 + Vintage 5.13.2

See Release Notes.

Full Changelog: junit-team/junit-framework@r5.13.1...r5.13.2

JUnit 5.13.1 = Platform 1.13.1 + Jupiter 5.13.1 + Vintage 5.13.1

See Release Notes.

Full Changelog: junit-team/junit-framework@r5.13.0...r5.13.1

Commits
  • 8a21048 Release 5.13.4
  • 9a38789 Finalize 5.13.4 release notes
  • 458325c Log only once per implementation type for CloseableResource types
  • 976a110 Protect against potential problems when converting file-based selectors
  • e94f728 Allow default package for PackageSource
  • b60fecf Fail on classpath resource names that are blank after removing leading /
  • 6378c88 Remove java.* packages from Import-Package headers in all jars (#4738)
  • 1a360f3 Create initial 5.13.4 release notes from template
  • 806fc9a Document #4689 in release notes
  • 1653839 Document #4686 in release notes
  • Additional commits viewable in compare view

Updates org.junit.jupiter:junit-jupiter-params from 5.13.0 to 5.13.4

Release notes

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

JUnit 5.13.4 = Platform 1.13.4 + Jupiter 5.13.4 + Vintage 5.13.4

See Release Notes.

Full Changelog: junit-team/junit-framework@r5.13.3...r5.13.4

JUnit 5.13.3 = Platform 1.13.3 + Jupiter 5.13.3 + Vintage 5.13.3

See Release Notes.

Full Changelog: junit-team/junit-framework@r5.13.2...r5.13.3

JUnit 5.13.2 = Platform 1.13.2 + Jupiter 5.13.2 + Vintage 5.13.2

See Release Notes.

Full Changelog: junit-team/junit-framework@r5.13.1...r5.13.2

JUnit 5.13.1 = Platform 1.13.1 + Jupiter 5.13.1 + Vintage 5.13.1

See Release Notes.

Full Changelog: junit-team/junit-framework@r5.13.0...r5.13.1

Commits
  • 8a21048 Release 5.13.4
  • 9a38789 Finalize 5.13.4 release notes
  • 458325c Log only once per implementation type for CloseableResource types
  • 976a110 Protect against potential problems when converting file-based selectors
  • e94f728 Allow default package for PackageSource
  • b60fecf Fail on classpath resource names that are blank after removing leading /
  • 6378c88 Remove java.* packages from Import-Package headers in all jars (#4738)
  • 1a360f3 Create initial 5.13.4 release notes from template
  • 806fc9a Document #4689 in release notes
  • 1653839 Document #4686 in release notes
  • Additional commits viewable in compare view

Updates org.junit.jupiter:junit-jupiter-engine from 5.13.0 to 5.13.4

Release notes

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

JUnit 5.13.4 = Platform 1.13.4 + Jupiter 5.13.4 + Vintage 5.13.4

See Release Notes.

Full Changelog: junit-team/junit-framework@r5.13.3...r5.13.4

JUnit 5.13.3 = Platform 1.13.3 + Jupiter 5.13.3 + Vintage 5.13.3

See Release Notes.

Full Changelog: junit-team/junit-framework@r5.13.2...r5.13.3

JUnit 5.13.2 = Platform 1.13.2 + Jupiter 5.13.2 + Vintage 5.13.2

See Release Notes.

Full Changelog: junit-team/junit-framework@r5.13.1...r5.13.2

JUnit 5.13.1 = Platform 1.13.1 + Jupiter 5.13.1 + Vintage 5.13.1

See Release Notes.

Full Changelog: junit-team/junit-framework@r5.13.0...r5.13.1

Commits
  • 8a21048 Release 5.13.4
  • 9a38789 Finalize 5.13.4 release notes
  • 458325c Log only once per implementation type for CloseableResource types
  • 976a110 Protect against potential problems when converting file-based selectors
  • e94f728 Allow default package for PackageSource
  • b60fecf Fail on classpath resource names that are blank after removing leading /
  • 6378c88 Remove java.* packages from Import-Package headers in all jars (#4738)
  • 1a360f3 Create initial 5.13.4 release notes from template
  • 806fc9a Document #4689 in release notes
  • 1653839 Document #4686 in release notes
  • Additional commits viewable in compare view

Updates org.junit.jupiter:junit-jupiter-params from 5.13.0 to 5.13.4

Release notes

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

JUnit 5.13.4 = Platform 1.13.4 + Jupiter 5.13.4 + Vintage 5.13.4

See Release Notes.

Full Changelog: junit-team/junit-framework@r5.13.3...r5.13.4

JUnit 5.13.3 = Platform 1.13.3 + Jupiter 5.13.3 + Vintage 5.13.3

See Release Notes.

Full Changelog: junit-team/junit-framework@r5.13.2...r5.13.3

JUnit 5.13.2 = Platform 1.13.2 + Jupiter 5.13.2 + Vintage 5.13.2

See Release Notes.

Full Changelog: junit-team/junit-framework@r5.13.1...r5.13.2

JUnit 5.13.1 = Platform 1.13.1 + Jupiter 5.13.1 + Vintage 5.13.1

See Release Notes.

Full Changelog: junit-team/junit-framework@r5.13.0...r5.13.1

Commits
  • 8a21048 Release 5.13.4
  • 9a38789 Finalize 5.13.4 release notes
  • 458325c Log only once per implementation type for CloseableResource types
  • 976a110 Protect against potential problems when converting file-based selectors
  • e94f728 Allow default package for PackageSource
  • b60fecf Fail on classpath resource names that are blank after removing leading /
  • 6378c88 Remove java.* packages from Import-Package headers in all jars (#4738)
  • 1a360f3 Create initial 5.13.4 release notes from template
  • 806fc9a Document #4689 in release notes
  • 1653839 Document #4686 in release notes
  • Additional commits viewable in compare view

Updates io.kotest:kotest-runner-junit5-jvm from 5.9.1 to 6.0.0

Release notes

Sourced from io.kotest:kotest-runner-junit5-jvm's releases.

v6.0.0

No release notes provided.

v6.0.0.0.M17

No release notes provided.

v6.0.0.M14

What's Changed

New Contributors

Full Changelog: kotest/kotest@v6.0.0.M8...v6.0.0.M14

v6.0.0.M8

What's Changed

... (truncated)

Commits
  • 7ed84a4 Remove fully qualified class names from test assertions to simplify and enhan...
  • 72e3fb6 Refactor: Replace FallbackDisplayNameFormatter with DisplayNameFormatting...
  • d453a78 Refactor: Replace FallbackDisplayNameFormatter with DisplayNameFormatting...
  • 664d6ca Config kotest task for depends; use name for test names
  • deb9f47 Add out and TEST_STDOUT fields to TeamCityMessageBuilder API dump
  • 708dc4b Refactor TeamCityMessageBuilder to remove unused methods, add out attribu...
  • e5f5e42 Add secondary constructor to EngineResult for simplified instantiation with...
  • a2019de Add JS specific spec executor to delegate to FrameworkAdapter. Fixes #5010
  • aa9e3a7 fix: documentation of any composer (#5012)
  • d47f822 api dump
  • Additional commits viewable in compare view

Updates io.kotest:kotest-assertions-core-jvm from 5.9.1 to 6.0.0

Release notes

Sourced from io.kotest:kotest-assertions-core-jvm's releases.

v6.0.0

No release notes provided.

v6.0.0.0.M17

No release notes provided.

v6.0.0.M14

What's Changed

New Contributors

Full Changelog: kotest/kotest@v6.0.0.M8...v6.0.0.M14

v6.0.0.M8

What's Changed

... (truncated)

Commits
  • 7ed84a4 Remove fully qualified class names from test assertions to simplify and enhan...
  • 72e3fb6 Refactor: Replace FallbackDisplayNameFormatter with DisplayNameFormatting...
  • d453a78 Refactor: Replace FallbackDisplayNameFormatter with DisplayNameFormatting...
  • 664d6ca Config kotest task for depends; use name for test names
  • deb9f47 Add out and TEST_STDOUT fields to TeamCityMessageBuilder API dump
  • 708dc4b Refactor ...

    Description has been truncated

Bumps the github group with 21 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [com.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson) | `2.19.0` | `2.19.2` |
| [com.fasterxml.jackson.module:jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) | `2.19.0` | `2.19.2` |
| [com.squareup.okhttp3:mockwebserver](https://github.com/square/okhttp) | `4.12.0` | `5.1.0` |
| [com.nimbusds:oauth2-oidc-sdk](https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions) | `11.25` | `11.27.1` |
| [io.netty:netty-codec-http](https://github.com/netty/netty) | `4.2.2.Final` | `4.2.4.Final` |
| [org.jetbrains.kotlinx:kotlinx-serialization-json](https://github.com/Kotlin/kotlinx.serialization) | `1.8.1` | `1.9.0` |
| [org.assertj:assertj-core](https://github.com/assertj/assertj) | `3.27.3` | `3.27.4` |
| [org.junit.jupiter:junit-jupiter-api](https://github.com/junit-team/junit-framework) | `5.13.0` | `5.13.4` |
| [org.junit.jupiter:junit-jupiter-params](https://github.com/junit-team/junit-framework) | `5.13.0` | `5.13.4` |
| [org.junit.jupiter:junit-jupiter-engine](https://github.com/junit-team/junit-framework) | `5.13.0` | `5.13.4` |
| [io.kotest:kotest-runner-junit5-jvm](https://github.com/kotest/kotest) | `5.9.1` | `6.0.0` |
| [io.kotest:kotest-assertions-core-jvm](https://github.com/kotest/kotest) | `5.9.1` | `6.0.0` |
| [org.springframework.boot:spring-boot-starter-webflux](https://github.com/spring-projects/spring-boot) | `3.5.0` | `3.5.4` |
| [org.springframework.boot:spring-boot-starter-oauth2-resource-server](https://github.com/spring-projects/spring-boot) | `3.5.0` | `3.5.4` |
| [org.springframework.boot:spring-boot-starter-oauth2-client](https://github.com/spring-projects/spring-boot) | `3.5.0` | `3.5.4` |
| [org.springframework.boot:spring-boot-starter-test](https://github.com/spring-projects/spring-boot) | `3.5.0` | `3.5.4` |
| [org.springframework.boot:spring-boot-test](https://github.com/spring-projects/spring-boot) | `3.5.0` | `3.5.4` |
| [io.projectreactor:reactor-test](https://github.com/reactor/reactor-core) | `3.7.6` | `3.7.9` |
| se.patrikerdes.use-latest-versions | `0.2.18` | `0.2.19` |
| org.jmailen.kotlinter | `5.1.0` | `5.2.0` |
| [org.jetbrains.kotlin.jvm](https://github.com/JetBrains/kotlin) | `2.1.21` | `2.2.10` |



Updates `com.fasterxml.jackson.core:jackson-databind` from 2.19.0 to 2.19.2
- [Commits](https://github.com/FasterXML/jackson/commits)

Updates `com.fasterxml.jackson.module:jackson-module-kotlin` from 2.19.0 to 2.19.2
- [Commits](FasterXML/jackson-module-kotlin@jackson-module-kotlin-2.19.0...jackson-module-kotlin-2.19.2)

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

Updates `com.nimbusds:oauth2-oidc-sdk` from 11.25 to 11.27.1
- [Changelog](https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions/src/master/CHANGELOG.txt)
- [Commits](https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions/branches/compare/11.27.1..11.25)

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

Updates `com.fasterxml.jackson.module:jackson-module-kotlin` from 2.19.0 to 2.19.2
- [Commits](FasterXML/jackson-module-kotlin@jackson-module-kotlin-2.19.0...jackson-module-kotlin-2.19.2)

Updates `org.jetbrains.kotlinx:kotlinx-serialization-json` from 1.8.1 to 1.9.0
- [Release notes](https://github.com/Kotlin/kotlinx.serialization/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.serialization/blob/master/CHANGELOG.md)
- [Commits](Kotlin/kotlinx.serialization@v1.8.1...v1.9.0)

Updates `org.assertj:assertj-core` from 3.27.3 to 3.27.4
- [Release notes](https://github.com/assertj/assertj/releases)
- [Commits](assertj/assertj@assertj-build-3.27.3...assertj-build-3.27.4)

Updates `org.junit.jupiter:junit-jupiter-api` from 5.13.0 to 5.13.4
- [Release notes](https://github.com/junit-team/junit-framework/releases)
- [Commits](junit-team/junit-framework@r5.13.0...r5.13.4)

Updates `org.junit.jupiter:junit-jupiter-params` from 5.13.0 to 5.13.4
- [Release notes](https://github.com/junit-team/junit-framework/releases)
- [Commits](junit-team/junit-framework@r5.13.0...r5.13.4)

Updates `org.junit.jupiter:junit-jupiter-engine` from 5.13.0 to 5.13.4
- [Release notes](https://github.com/junit-team/junit-framework/releases)
- [Commits](junit-team/junit-framework@r5.13.0...r5.13.4)

Updates `org.junit.jupiter:junit-jupiter-params` from 5.13.0 to 5.13.4
- [Release notes](https://github.com/junit-team/junit-framework/releases)
- [Commits](junit-team/junit-framework@r5.13.0...r5.13.4)

Updates `io.kotest:kotest-runner-junit5-jvm` from 5.9.1 to 6.0.0
- [Release notes](https://github.com/kotest/kotest/releases)
- [Commits](kotest/kotest@v5.9.1...6.0.0)

Updates `io.kotest:kotest-assertions-core-jvm` from 5.9.1 to 6.0.0
- [Release notes](https://github.com/kotest/kotest/releases)
- [Commits](kotest/kotest@v5.9.1...6.0.0)

Updates `io.kotest:kotest-assertions-core-jvm` from 5.9.1 to 6.0.0
- [Release notes](https://github.com/kotest/kotest/releases)
- [Commits](kotest/kotest@v5.9.1...6.0.0)

Updates `org.junit.jupiter:junit-jupiter-engine` from 5.13.0 to 5.13.4
- [Release notes](https://github.com/junit-team/junit-framework/releases)
- [Commits](junit-team/junit-framework@r5.13.0...r5.13.4)

Updates `org.springframework.boot:spring-boot-starter-webflux` from 3.5.0 to 3.5.4
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](spring-projects/spring-boot@v3.5.0...v3.5.4)

Updates `org.springframework.boot:spring-boot-starter-oauth2-resource-server` from 3.5.0 to 3.5.4
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](spring-projects/spring-boot@v3.5.0...v3.5.4)

Updates `org.springframework.boot:spring-boot-starter-oauth2-client` from 3.5.0 to 3.5.4
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](spring-projects/spring-boot@v3.5.0...v3.5.4)

Updates `org.springframework.boot:spring-boot-starter-test` from 3.5.0 to 3.5.4
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](spring-projects/spring-boot@v3.5.0...v3.5.4)

Updates `org.springframework.boot:spring-boot-test` from 3.5.0 to 3.5.4
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](spring-projects/spring-boot@v3.5.0...v3.5.4)

Updates `org.springframework.boot:spring-boot-starter-oauth2-resource-server` from 3.5.0 to 3.5.4
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](spring-projects/spring-boot@v3.5.0...v3.5.4)

Updates `org.springframework.boot:spring-boot-starter-oauth2-client` from 3.5.0 to 3.5.4
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](spring-projects/spring-boot@v3.5.0...v3.5.4)

Updates `org.springframework.boot:spring-boot-starter-test` from 3.5.0 to 3.5.4
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](spring-projects/spring-boot@v3.5.0...v3.5.4)

Updates `org.springframework.boot:spring-boot-test` from 3.5.0 to 3.5.4
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](spring-projects/spring-boot@v3.5.0...v3.5.4)

Updates `io.projectreactor:reactor-test` from 3.7.6 to 3.7.9
- [Release notes](https://github.com/reactor/reactor-core/releases)
- [Commits](reactor/reactor-core@v3.7.6...v3.7.9)

Updates `se.patrikerdes.use-latest-versions` from 0.2.18 to 0.2.19

Updates `org.jmailen.kotlinter` from 5.1.0 to 5.2.0

Updates `org.jetbrains.kotlin.jvm` from 2.1.21 to 2.2.10
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](JetBrains/kotlin@v2.1.21...v2.2.10)

---
updated-dependencies:
- dependency-name: com.fasterxml.jackson.core:jackson-databind
  dependency-version: 2.19.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github
- dependency-name: com.fasterxml.jackson.module:jackson-module-kotlin
  dependency-version: 2.19.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github
- dependency-name: com.squareup.okhttp3:mockwebserver
  dependency-version: 5.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github
- dependency-name: com.nimbusds:oauth2-oidc-sdk
  dependency-version: 11.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github
- dependency-name: io.netty:netty-codec-http
  dependency-version: 4.2.4.Final
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github
- dependency-name: com.fasterxml.jackson.module:jackson-module-kotlin
  dependency-version: 2.19.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github
- dependency-name: org.jetbrains.kotlinx:kotlinx-serialization-json
  dependency-version: 1.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github
- dependency-name: org.assertj:assertj-core
  dependency-version: 3.27.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github
- dependency-name: org.junit.jupiter:junit-jupiter-api
  dependency-version: 5.13.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github
- dependency-name: org.junit.jupiter:junit-jupiter-params
  dependency-version: 5.13.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github
- dependency-name: org.junit.jupiter:junit-jupiter-engine
  dependency-version: 5.13.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github
- dependency-name: org.junit.jupiter:junit-jupiter-params
  dependency-version: 5.13.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github
- dependency-name: io.kotest:kotest-runner-junit5-jvm
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github
- dependency-name: io.kotest:kotest-assertions-core-jvm
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github
- dependency-name: io.kotest:kotest-assertions-core-jvm
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github
- dependency-name: org.junit.jupiter:junit-jupiter-engine
  dependency-version: 5.13.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github
- dependency-name: org.springframework.boot:spring-boot-starter-webflux
  dependency-version: 3.5.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github
- dependency-name: org.springframework.boot:spring-boot-starter-oauth2-resource-server
  dependency-version: 3.5.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github
- dependency-name: org.springframework.boot:spring-boot-starter-oauth2-client
  dependency-version: 3.5.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github
- dependency-name: org.springframework.boot:spring-boot-starter-test
  dependency-version: 3.5.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github
- dependency-name: org.springframework.boot:spring-boot-test
  dependency-version: 3.5.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github
- dependency-name: org.springframework.boot:spring-boot-starter-oauth2-resource-server
  dependency-version: 3.5.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github
- dependency-name: org.springframework.boot:spring-boot-starter-oauth2-client
  dependency-version: 3.5.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github
- dependency-name: org.springframework.boot:spring-boot-starter-test
  dependency-version: 3.5.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github
- dependency-name: org.springframework.boot:spring-boot-test
  dependency-version: 3.5.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github
- dependency-name: io.projectreactor:reactor-test
  dependency-version: 3.7.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github
- dependency-name: se.patrikerdes.use-latest-versions
  dependency-version: 0.2.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github
- dependency-name: org.jmailen.kotlinter
  dependency-version: 5.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github
- dependency-name: org.jetbrains.kotlin.jvm
  dependency-version: 2.2.10
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies java Pull requests that update Java code labels Aug 19, 2025
@dependabot dependabot bot requested a review from a team as a code owner August 19, 2025 20:26
@dependabot dependabot bot added dependencies java Pull requests that update Java code labels Aug 19, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies java Pull requests that update Java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants