From d5dbc9ea7fe829a8aa8d06b907023b6859b398b0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 02:47:49 +0000 Subject: [PATCH] chore(deps): bump the dependencies group with 3 updates Bumps the dependencies group with 3 updates: [org.jetbrains.kotlinx:kotlinx-serialization-json](https://github.com/Kotlin/kotlinx.serialization), [io.kotest:kotest-runner-junit5](https://github.com/kotest/kotest) and [io.kotest:kotest-assertions-core](https://github.com/kotest/kotest). Updates `org.jetbrains.kotlinx:kotlinx-serialization-json` from 1.10.0 to 1.11.0 - [Release notes](https://github.com/Kotlin/kotlinx.serialization/releases) - [Changelog](https://github.com/Kotlin/kotlinx.serialization/blob/master/CHANGELOG.md) - [Commits](https://github.com/Kotlin/kotlinx.serialization/compare/v1.10.0...v1.11.0) Updates `io.kotest:kotest-runner-junit5` from 6.1.9 to 6.1.11 - [Release notes](https://github.com/kotest/kotest/releases) - [Commits](https://github.com/kotest/kotest/compare/6.1.9...6.1.11) Updates `io.kotest:kotest-assertions-core` from 6.1.9 to 6.1.11 - [Release notes](https://github.com/kotest/kotest/releases) - [Commits](https://github.com/kotest/kotest/compare/6.1.9...6.1.11) --- updated-dependencies: - dependency-name: org.jetbrains.kotlinx:kotlinx-serialization-json dependency-version: 1.11.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: io.kotest:kotest-runner-junit5 dependency-version: 6.1.11 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: io.kotest:kotest-assertions-core dependency-version: 6.1.11 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] --- build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 2dbf012..4881c87 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -34,7 +34,7 @@ repositories { } dependencies { - implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.10.0") + implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.11.0") implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2") implementation("com.squareup.okhttp3:okhttp:5.3.2") implementation("org.xerial:sqlite-jdbc:3.51.3.0") @@ -43,8 +43,8 @@ dependencies { testImplementation("org.junit.jupiter:junit-jupiter:6.0.3") testImplementation("com.h2database:h2:2.4.240") - testImplementation("io.kotest:kotest-runner-junit5:6.1.9") - testImplementation("io.kotest:kotest-assertions-core:6.1.9") + testImplementation("io.kotest:kotest-runner-junit5:6.1.11") + testImplementation("io.kotest:kotest-assertions-core:6.1.11") testImplementation(kotlin("test")) }