From bf8c5bb5e9895078929399f7e71aaa0b3d3a50dd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 27 Feb 2025 20:02:08 +0000 Subject: [PATCH] Update flyway to v11.3.4 (#465) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- build.gradle.kts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index c5647a4..1553f3a 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,7 +5,7 @@ plugins { id("io.spring.dependency-management") version "1.1.7" kotlin("jvm") version "2.1.10" kotlin("plugin.spring") version "2.1.10" - id("org.flywaydb.flyway") version "11.3.3" + id("org.flywaydb.flyway") version "11.3.4" } group = "{{ group_name }}" @@ -27,8 +27,8 @@ dependencies { implementation("io.arrow-kt:arrow-core:2.0.1") implementation("com.zaxxer:HikariCP:6.2.1") implementation("org.postgresql:postgresql:42.7.5") - implementation("org.flywaydb:flyway-core:11.3.3") - implementation("org.flywaydb:flyway-database-postgresql:11.3.3") + implementation("org.flywaydb:flyway-core:11.3.4") + implementation("org.flywaydb:flyway-database-postgresql:11.3.4") implementation(platform("org.apache.logging.log4j:log4j-bom:2.24.3")) testImplementation("org.springframework.boot:spring-boot-starter-test") { @@ -54,7 +54,7 @@ dependencies { buildscript { dependencies { - classpath("org.flywaydb:flyway-database-postgresql:11.3.3") + classpath("org.flywaydb:flyway-database-postgresql:11.3.4") } }