From 0b3cb151ba409780d5a45b9d0c1ce723267a91b4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 14 Feb 2026 06:15:39 +0000 Subject: [PATCH] fix(deps): update backend-patch --- backend/build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/build.gradle.kts b/backend/build.gradle.kts index d9324bab..242f1536 100644 --- a/backend/build.gradle.kts +++ b/backend/build.gradle.kts @@ -16,7 +16,7 @@ plugins { id("io.spring.dependency-management") version "1.1.7" // Build and push docker images - id("com.google.cloud.tools.jib") version "3.5.2" + id("com.google.cloud.tools.jib") version "3.5.3" } repositories { @@ -44,7 +44,7 @@ dependencies { implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.20.1") // Postgres Database - implementation("org.postgresql:postgresql:42.7.9") + implementation("org.postgresql:postgresql:42.7.10") // Caching with Ehcache https://www.ehcache.org/ implementation("org.ehcache:ehcache:3.11.1") @@ -79,7 +79,7 @@ dependencies { testImplementation("org.testcontainers:junit-jupiter:1.21.4") testImplementation("org.testcontainers:postgresql:1.21.4") // Mocking with Mockk (https://mockk.io/) - testImplementation("io.mockk:mockk:1.14.7") + testImplementation("io.mockk:mockk:1.14.9") } // Fix version requirement from Kotest