From 25c42b0fa4ce9e13eb21890743eb3866ed88bfb7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 May 2025 06:53:46 +0000 Subject: [PATCH] Bump the all-dependencies group across 1 directory with 6 updates Bumps the all-dependencies group with 6 updates in the /samples/lambda-kotlin-request-router-sample directory: | Package | From | To | | --- | --- | --- | | [com.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson) | `2.18.3` | `2.19.0` | | [com.fasterxml.jackson.module:jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) | `2.18.3` | `2.19.0` | | [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) | `1.5.17` | `1.5.18` | | [org.junit.jupiter:junit-jupiter-engine](https://github.com/junit-team/junit5) | `5.12.0` | `5.12.2` | | [jvm](https://github.com/JetBrains/kotlin) | `2.1.10` | `2.1.20` | | org.jmailen.kotlinter | `5.0.1` | `5.0.2` | Updates `com.fasterxml.jackson.core:jackson-databind` from 2.18.3 to 2.19.0 - [Commits](https://github.com/FasterXML/jackson/commits) Updates `com.fasterxml.jackson.module:jackson-module-kotlin` from 2.18.3 to 2.19.0 - [Commits](https://github.com/FasterXML/jackson-module-kotlin/compare/jackson-module-kotlin-2.18.3...jackson-module-kotlin-2.19.0) Updates `ch.qos.logback:logback-classic` from 1.5.17 to 1.5.18 - [Release notes](https://github.com/qos-ch/logback/releases) - [Commits](https://github.com/qos-ch/logback/compare/v_1.5.17...v_1.5.18) Updates `org.junit.jupiter:junit-jupiter-engine` from 5.12.0 to 5.12.2 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.12.0...r5.12.2) Updates `jvm` from 2.1.10 to 2.1.20 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v2.1.10...v2.1.20) Updates `org.jmailen.kotlinter` from 5.0.1 to 5.0.2 --- updated-dependencies: - dependency-name: com.fasterxml.jackson.core:jackson-databind dependency-version: 2.19.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: com.fasterxml.jackson.module:jackson-module-kotlin dependency-version: 2.19.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: ch.qos.logback:logback-classic dependency-version: 1.5.18 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: org.junit.jupiter:junit-jupiter-engine dependency-version: 5.12.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: jvm dependency-version: 2.1.20 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: org.jmailen.kotlinter dependency-version: 5.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] --- .../build.gradle.kts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/samples/lambda-kotlin-request-router-sample/build.gradle.kts b/samples/lambda-kotlin-request-router-sample/build.gradle.kts index 696ff47..82e20f8 100644 --- a/samples/lambda-kotlin-request-router-sample/build.gradle.kts +++ b/samples/lambda-kotlin-request-router-sample/build.gradle.kts @@ -14,10 +14,10 @@ buildscript { plugins { java - kotlin("jvm") version "2.1.10" + kotlin("jvm") version "2.1.20" idea id("com.github.johnrengelman.shadow") version "8.1.1" - id("org.jmailen.kotlinter") version "5.0.1" + id("org.jmailen.kotlinter") version "5.0.2" } @@ -37,14 +37,14 @@ dependencies { implementation("com.amazonaws:aws-lambda-java-core:1.2.3") implementation("com.amazonaws:aws-lambda-java-log4j2:1.6.0") - implementation("com.fasterxml.jackson.core:jackson-databind:2.18.3") - implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.18.3") + implementation("com.fasterxml.jackson.core:jackson-databind:2.19.0") + implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.19.0") implementation("com.google.guava:guava:23.0") - implementation("ch.qos.logback:logback-classic:1.5.17") + implementation("ch.qos.logback:logback-classic:1.5.18") implementation("org.slf4j:log4j-over-slf4j:2.0.17") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.0") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.2") } tasks {