From bad5886965b6510b510ca8c6fb0d764e4f952abe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Jan 2025 15:03:17 +0000 Subject: [PATCH] Bump the all-dependencies group Bumps the all-dependencies group in /samples/lambda-kotlin-request-router-sample with 8 updates: | Package | From | To | | --- | --- | --- | | io.moia.lambda-kotlin-request-router:router | `0.10.2` | `1.1.0` | | [com.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson) | `2.17.1` | `2.18.2` | | [com.fasterxml.jackson.module:jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) | `2.17.1` | `2.18.2` | | [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) | `1.5.6` | `1.5.16` | | org.slf4j:log4j-over-slf4j | `2.0.13` | `2.0.16` | | [org.junit.jupiter:junit-jupiter-engine](https://github.com/junit-team/junit5) | `5.10.2` | `5.11.4` | | [jvm](https://github.com/JetBrains/kotlin) | `2.0.0` | `2.1.0` | | org.jmailen.kotlinter | `4.3.0` | `5.0.1` | Updates `io.moia.lambda-kotlin-request-router:router` from 0.10.2 to 1.1.0 Updates `com.fasterxml.jackson.core:jackson-databind` from 2.17.1 to 2.18.2 - [Commits](https://github.com/FasterXML/jackson/commits) Updates `com.fasterxml.jackson.module:jackson-module-kotlin` from 2.17.1 to 2.18.2 - [Commits](https://github.com/FasterXML/jackson-module-kotlin/compare/jackson-module-kotlin-2.17.1...jackson-module-kotlin-2.18.2) Updates `ch.qos.logback:logback-classic` from 1.5.6 to 1.5.16 - [Commits](https://github.com/qos-ch/logback/compare/v_1.5.6...v_1.5.16) Updates `org.slf4j:log4j-over-slf4j` from 2.0.13 to 2.0.16 Updates `org.junit.jupiter:junit-jupiter-engine` from 5.10.2 to 5.11.4 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.10.2...r5.11.4) Updates `jvm` from 2.0.0 to 2.1.0 - [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.0.0...v2.1.0) Updates `org.jmailen.kotlinter` from 4.3.0 to 5.0.1 --- updated-dependencies: - dependency-name: io.moia.lambda-kotlin-request-router:router dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies - dependency-name: com.fasterxml.jackson.core:jackson-databind dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: com.fasterxml.jackson.module:jackson-module-kotlin dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: ch.qos.logback:logback-classic dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: org.slf4j:log4j-over-slf4j dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: org.junit.jupiter:junit-jupiter-engine dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: jvm dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: org.jmailen.kotlinter dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] --- .../build.gradle.kts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/samples/lambda-kotlin-request-router-sample/build.gradle.kts b/samples/lambda-kotlin-request-router-sample/build.gradle.kts index ba268b0..4bc576b 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.0.0" + kotlin("jvm") version "2.1.0" idea id("com.github.johnrengelman.shadow") version "8.1.1" - id("org.jmailen.kotlinter") version "4.3.0" + id("org.jmailen.kotlinter") version "5.0.1" } @@ -33,18 +33,18 @@ dependencies { implementation(kotlin("stdlib")) implementation(kotlin("reflect")) - implementation("io.moia.lambda-kotlin-request-router:router:0.10.2") + implementation("io.moia.lambda-kotlin-request-router:router:1.1.0") 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.17.1") - implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.17.1") + implementation("com.fasterxml.jackson.core:jackson-databind:2.18.2") + implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.18.2") implementation("com.google.guava:guava:23.0") - implementation("ch.qos.logback:logback-classic:1.5.6") - implementation("org.slf4j:log4j-over-slf4j:2.0.13") + implementation("ch.qos.logback:logback-classic:1.5.16") + implementation("org.slf4j:log4j-over-slf4j:2.0.16") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.10.2") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.4") } tasks {