Skip to content

Commit e08309f

Browse files
Bump the all-dependencies group across 1 directory with 7 updates
Bumps the all-dependencies group with 7 updates in the /samples/lambda-kotlin-request-router-sample directory: | Package | From | To | | --- | --- | --- | | [com.amazonaws:aws-lambda-java-core](https://github.com/aws/aws-lambda-java-libs) | `1.2.3` | `1.3.0` | | [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.13.0` | | [jvm](https://github.com/JetBrains/kotlin) | `2.1.10` | `2.1.21` | | org.jmailen.kotlinter | `5.0.1` | `5.1.0` | Updates `com.amazonaws:aws-lambda-java-core` from 1.2.3 to 1.3.0 - [Commits](https://github.com/aws/aws-lambda-java-libs/commits) 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](FasterXML/jackson-module-kotlin@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](qos-ch/logback@v_1.5.17...v_1.5.18) Updates `org.junit.jupiter:junit-jupiter-engine` from 5.12.0 to 5.13.0 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](junit-team/junit-framework@r5.12.0...r5.13.0) Updates `jvm` from 2.1.10 to 2.1.21 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](JetBrains/kotlin@v2.1.10...v2.1.21) Updates `org.jmailen.kotlinter` from 5.0.1 to 5.1.0 --- updated-dependencies: - dependency-name: com.amazonaws:aws-lambda-java-core dependency-version: 1.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-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.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: jvm dependency-version: 2.1.21 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: org.jmailen.kotlinter dependency-version: 5.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent d9793e8 commit e08309f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

samples/lambda-kotlin-request-router-sample/build.gradle.kts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ buildscript {
1414

1515
plugins {
1616
java
17-
kotlin("jvm") version "2.1.10"
17+
kotlin("jvm") version "2.1.21"
1818
idea
1919
id("com.github.johnrengelman.shadow") version "8.1.1"
20-
id("org.jmailen.kotlinter") version "5.0.1"
20+
id("org.jmailen.kotlinter") version "5.1.0"
2121
}
2222

2323

@@ -35,16 +35,16 @@ dependencies {
3535

3636
implementation("io.moia.lambda-kotlin-request-router:router:1.1.0")
3737

38-
implementation("com.amazonaws:aws-lambda-java-core:1.2.3")
38+
implementation("com.amazonaws:aws-lambda-java-core:1.3.0")
3939
implementation("com.amazonaws:aws-lambda-java-log4j2:1.6.0")
40-
implementation("com.fasterxml.jackson.core:jackson-databind:2.18.3")
41-
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.18.3")
40+
implementation("com.fasterxml.jackson.core:jackson-databind:2.19.0")
41+
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.19.0")
4242
implementation("com.google.guava:guava:23.0")
4343

44-
implementation("ch.qos.logback:logback-classic:1.5.17")
44+
implementation("ch.qos.logback:logback-classic:1.5.18")
4545
implementation("org.slf4j:log4j-over-slf4j:2.0.17")
4646

47-
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.0")
47+
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.13.0")
4848
}
4949

5050
tasks {

0 commit comments

Comments
 (0)