From 2df318c3416008a437ed0e1a433285a17deeed49 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Dec 2024 05:15:58 +0000 Subject: [PATCH] Bump the dependencies group across 1 directory with 8 updates Bumps the dependencies group with 8 updates in the /springboot-app directory: | Package | From | To | | --- | --- | --- | | [org.flywaydb:flyway-core](https://github.com/flyway/flyway) | `10.21.0` | `11.1.0` | | org.flywaydb:flyway-database-postgresql | `10.21.0` | `11.1.0` | | [org.testcontainers:junit-jupiter](https://github.com/testcontainers/testcontainers-java) | `1.20.3` | `1.20.4` | | [org.springframework.cloud:spring-cloud-dependencies](https://github.com/spring-cloud/spring-cloud-release) | `2023.0.3` | `2024.0.0` | | [org.springframework.boot](https://github.com/spring-projects/spring-boot) | `3.3.5` | `3.4.0` | | [jvm](https://github.com/JetBrains/kotlin) | `2.0.21` | `2.1.0` | | [plugin.spring](https://github.com/JetBrains/kotlin) | `2.0.21` | `2.1.0` | | org.jlleitschuh.gradle.ktlint | `12.1.1` | `12.1.2` | Updates `org.flywaydb:flyway-core` from 10.21.0 to 11.1.0 - [Release notes](https://github.com/flyway/flyway/releases) - [Commits](https://github.com/flyway/flyway/compare/flyway-10.21.0...flyway-11.1.0) Updates `org.flywaydb:flyway-database-postgresql` from 10.21.0 to 11.1.0 Updates `org.flywaydb:flyway-database-postgresql` from 10.21.0 to 11.1.0 Updates `org.testcontainers:junit-jupiter` from 1.20.3 to 1.20.4 - [Release notes](https://github.com/testcontainers/testcontainers-java/releases) - [Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md) - [Commits](https://github.com/testcontainers/testcontainers-java/compare/1.20.3...1.20.4) Updates `org.springframework.cloud:spring-cloud-dependencies` from 2023.0.3 to 2024.0.0 - [Release notes](https://github.com/spring-cloud/spring-cloud-release/releases) - [Commits](https://github.com/spring-cloud/spring-cloud-release/compare/v2023.0.3...v2024.0.0) Updates `org.springframework.boot` from 3.3.5 to 3.4.0 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.3.5...v3.4.0) Updates `jvm` from 2.0.21 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.21...v2.1.0) Updates `plugin.spring` from 2.0.21 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.21...v2.1.0) Updates `org.jlleitschuh.gradle.ktlint` from 12.1.1 to 12.1.2 --- updated-dependencies: - dependency-name: org.flywaydb:flyway-core dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: org.flywaydb:flyway-database-postgresql dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: org.flywaydb:flyway-database-postgresql dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: org.testcontainers:junit-jupiter dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: org.springframework.cloud:spring-cloud-dependencies dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: org.springframework.boot dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: jvm dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: plugin.spring dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: org.jlleitschuh.gradle.ktlint dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] --- springboot-app/build.gradle.kts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/springboot-app/build.gradle.kts b/springboot-app/build.gradle.kts index 8ee932a..a528b6e 100644 --- a/springboot-app/build.gradle.kts +++ b/springboot-app/build.gradle.kts @@ -3,11 +3,11 @@ import org.gradle.api.tasks.testing.logging.TestLogEvent.PASSED import org.gradle.api.tasks.testing.logging.TestLogEvent.SKIPPED plugins { - id("org.springframework.boot") version "3.3.5" + id("org.springframework.boot") version "3.4.0" id("io.spring.dependency-management") version "1.1.6" - kotlin("jvm") version "2.0.21" - kotlin("plugin.spring") version "2.0.21" - id("org.jlleitschuh.gradle.ktlint") version "12.1.1" + kotlin("jvm") version "2.1.0" + kotlin("plugin.spring") version "2.1.0" + id("org.jlleitschuh.gradle.ktlint") version "12.1.2" } group = "org.rogervinas" @@ -17,8 +17,8 @@ repositories { mavenCentral() } -val springCloudVersion = "2023.0.3" -val flywayVersion = "10.21.0" +val springCloudVersion = "2024.0.0" +val flywayVersion = "11.1.0" dependencies { implementation("org.springframework.boot:spring-boot-starter-webflux") @@ -38,7 +38,7 @@ dependencies { testImplementation("org.springframework.boot:spring-boot-starter-test") testImplementation("io.projectreactor:reactor-test") - testImplementation("org.testcontainers:junit-jupiter:1.20.3") + testImplementation("org.testcontainers:junit-jupiter:1.20.4") testImplementation("org.assertj:assertj-core:3.26.3") }