From 14eaa38be9ffbdbdc77411f1a15e736669b38622 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 05:08:08 +0000 Subject: [PATCH] Bump the dependencies group in /ktor-app with 4 updates Bumps the dependencies group in /ktor-app with 4 updates: [io.mockk:mockk](https://github.com/mockk/mockk), [jvm](https://github.com/JetBrains/kotlin), io.ktor.plugin and [org.jetbrains.kotlin.plugin.serialization](https://github.com/JetBrains/kotlin). Updates `io.mockk:mockk` from 1.13.12 to 1.13.13 - [Release notes](https://github.com/mockk/mockk/releases) - [Commits](https://github.com/mockk/mockk/compare/1.13.12...1.13.13) Updates `jvm` from 2.0.20 to 2.0.21 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/v2.0.21/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v2.0.20...v2.0.21) Updates `io.ktor.plugin` from 2.3.12 to 3.0.0 Updates `org.jetbrains.kotlin.plugin.serialization` from 2.0.20 to 2.0.21 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/v2.0.21/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v2.0.20...v2.0.21) --- updated-dependencies: - dependency-name: io.mockk:mockk dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: jvm dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: io.ktor.plugin dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: org.jetbrains.kotlin.plugin.serialization dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] --- ktor-app/build.gradle.kts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ktor-app/build.gradle.kts b/ktor-app/build.gradle.kts index d8c07fe..c0e6458 100644 --- a/ktor-app/build.gradle.kts +++ b/ktor-app/build.gradle.kts @@ -8,9 +8,9 @@ val logbackVersion: String = project.property("logback_version") as String val postgresVersion: String = project.property("postgres_version") as String plugins { - kotlin("jvm") version "2.0.20" - id("io.ktor.plugin") version "2.3.12" - id("org.jetbrains.kotlin.plugin.serialization") version "2.0.20" + kotlin("jvm") version "2.0.21" + id("io.ktor.plugin") version "3.0.0" + id("org.jetbrains.kotlin.plugin.serialization") version "2.0.21" id("org.jlleitschuh.gradle.ktlint") version "12.1.1" } @@ -52,7 +52,7 @@ dependencies { testImplementation("io.ktor:ktor-server-tests-jvm:$ktorVersion") testImplementation("org.jetbrains.kotlin:kotlin-test-junit5:$kotlinVersion") - testImplementation("io.mockk:mockk:1.13.12") + testImplementation("io.mockk:mockk:1.13.13") testImplementation("org.testcontainers:junit-jupiter:1.20.2") testImplementation("org.assertj:assertj-core:3.26.3") }