From f8f1cfabb6845c8c7b8b0e5506861e9d41b7b83e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Jun 2024 18:11:38 +0000 Subject: [PATCH] Bump the dependencies group across 1 directory with 4 updates Bumps the dependencies group with 4 updates in the /sample-api-client directory: [io.ktor:ktor-bom](https://github.com/ktorio/ktor), [org.junit.jupiter:junit-jupiter](https://github.com/junit-team/junit5), [com.willowtreeapps.assertk:assertk-jvm](https://github.com/willowtreeapps/assertk) and [au.com.dius.pact.consumer:junit5](https://github.com/pact-foundation/pact-jvm). Updates `io.ktor:ktor-bom` from 2.1.2 to 2.3.12 - [Release notes](https://github.com/ktorio/ktor/releases) - [Changelog](https://github.com/ktorio/ktor/blob/2.3.12/CHANGELOG.md) - [Commits](https://github.com/ktorio/ktor/compare/2.1.2...2.3.12) Updates `org.junit.jupiter:junit-jupiter` from 5.9.0 to 5.10.2 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.9.0...r5.10.2) Updates `com.willowtreeapps.assertk:assertk-jvm` from 0.25 to 0.28.1 - [Release notes](https://github.com/willowtreeapps/assertk/releases) - [Changelog](https://github.com/willowtreeapps/assertk/blob/main/CHANGELOG.md) - [Commits](https://github.com/willowtreeapps/assertk/compare/v0.25...v0.28.1) Updates `au.com.dius.pact.consumer:junit5` from 4.6.3 to 4.6.10 - [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) --- updated-dependencies: - dependency-name: io.ktor:ktor-bom dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: org.junit.jupiter:junit-jupiter dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: com.willowtreeapps.assertk:assertk-jvm dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: au.com.dius.pact.consumer:junit5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] --- sample-api-client/build.gradle.kts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sample-api-client/build.gradle.kts b/sample-api-client/build.gradle.kts index 590068b..794fe9d 100644 --- a/sample-api-client/build.gradle.kts +++ b/sample-api-client/build.gradle.kts @@ -24,16 +24,16 @@ dependencies { implementation(platform("org.jetbrains.kotlin:kotlin-bom")) implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") - implementation(platform("io.ktor:ktor-bom:2.1.2")) + implementation(platform("io.ktor:ktor-bom:2.3.12")) implementation("io.ktor:ktor-client-core") implementation("io.ktor:ktor-client-cio") implementation("io.ktor:ktor-client-content-negotiation") implementation("io.ktor:ktor-serialization-jackson") implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310") - testImplementation("org.junit.jupiter:junit-jupiter:5.9.0") - testImplementation("com.willowtreeapps.assertk:assertk-jvm:0.25") - testImplementation("au.com.dius.pact.consumer:junit5:4.6.3") + testImplementation("org.junit.jupiter:junit-jupiter:5.10.2") + testImplementation("com.willowtreeapps.assertk:assertk-jvm:0.28.1") + testImplementation("au.com.dius.pact.consumer:junit5:4.6.10") } java {