From 86d70b7d8a0c82d383365ab393c2c05cd2ee9c7f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jan 2025 20:18:57 +0000 Subject: [PATCH] Bump the database group across 1 directory with 3 updates Bumps the database group with 3 updates in the /api directory: [org.flywaydb:flyway-core](https://github.com/flyway/flyway), org.flywaydb:flyway-database-postgresql and [org.postgresql:postgresql](https://github.com/pgjdbc/pgjdbc). Updates `org.flywaydb:flyway-core` from 10.20.1 to 11.2.0 - [Release notes](https://github.com/flyway/flyway/releases) - [Commits](https://github.com/flyway/flyway/compare/flyway-10.20.1...flyway-11.2.0) Updates `org.flywaydb:flyway-database-postgresql` from 10.20.1 to 11.2.0 Updates `org.postgresql:postgresql` from 42.7.4 to 42.7.5 - [Release notes](https://github.com/pgjdbc/pgjdbc/releases) - [Changelog](https://github.com/pgjdbc/pgjdbc/blob/master/CHANGELOG.md) - [Commits](https://github.com/pgjdbc/pgjdbc/compare/REL42.7.4...REL42.7.5) --- updated-dependencies: - dependency-name: org.flywaydb:flyway-core dependency-type: direct:production update-type: version-update:semver-major dependency-group: database - dependency-name: org.flywaydb:flyway-database-postgresql dependency-type: direct:production update-type: version-update:semver-major dependency-group: database - dependency-name: org.postgresql:postgresql dependency-type: direct:production update-type: version-update:semver-patch dependency-group: database ... Signed-off-by: dependabot[bot] --- api/app/build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/app/build.gradle.kts b/api/app/build.gradle.kts index d644d32..99bf1db 100644 --- a/api/app/build.gradle.kts +++ b/api/app/build.gradle.kts @@ -97,10 +97,10 @@ dependencies { implementation("io.ktor:ktor-serialization-kotlinx-json") implementation("io.ktor:ktor-server-mustache") implementation("ch.qos.logback:logback-classic:1.5.12") - implementation("org.flywaydb:flyway-core:10.20.1") - implementation("org.flywaydb:flyway-database-postgresql:10.20.1") + implementation("org.flywaydb:flyway-core:11.2.0") + implementation("org.flywaydb:flyway-database-postgresql:11.2.0") implementation(platform("org.jdbi:jdbi3-bom:3.47.0")) - implementation("org.postgresql:postgresql:42.7.4") + implementation("org.postgresql:postgresql:42.7.5") implementation("org.jdbi:jdbi3-core") implementation("org.jdbi:jdbi3-sqlobject") implementation("org.jdbi:jdbi3-kotlin")