From 4f28e5e39b96e5ddcb88752d19ee9b4098ed230a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 2 Aug 2026 20:45:15 +0000 Subject: [PATCH] fix(deps): bump the sbt-patch group across 1 directory with 3 updates Bumps the sbt-patch group with 3 updates in the / directory: [org.postgresql:postgresql](https://github.com/pgjdbc/pgjdbc), [io.github.classgraph:classgraph](https://github.com/classgraph/classgraph) and [com.softwaremill.sttp.client4:core_2.13](https://github.com/softwaremill/sttp). Updates `org.postgresql:postgresql` from 42.7.4 to 42.7.13 - [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.13) Updates `io.github.classgraph:classgraph` from 4.8.184 to 4.8.186 - [Release notes](https://github.com/classgraph/classgraph/releases) - [Commits](https://github.com/classgraph/classgraph/compare/classgraph-4.8.184...classgraph-4.8.186) Updates `com.softwaremill.sttp.client4:core_2.13` from 4.0.25 to 4.0.26 - [Release notes](https://github.com/softwaremill/sttp/releases) - [Commits](https://github.com/softwaremill/sttp/compare/v4.0.25...v4.0.26) --- updated-dependencies: - dependency-name: org.postgresql:postgresql dependency-version: 42.7.13 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: sbt-patch - dependency-name: io.github.classgraph:classgraph dependency-version: 4.8.186 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: sbt-patch - dependency-name: com.softwaremill.sttp.client4:core_2.13 dependency-version: 4.0.26 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: sbt-patch ... Signed-off-by: dependabot[bot] --- amber/build.sbt | 2 +- computing-unit-managing-service/build.sbt | 2 +- project/plugins.sbt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/amber/build.sbt b/amber/build.sbt index 8d2ac747af7..5a8e828c85b 100644 --- a/amber/build.sbt +++ b/amber/build.sbt @@ -132,7 +132,7 @@ val mbknorJacksonJsonSchemaDependencies = Seq( "com.fasterxml.jackson.core" % "jackson-databind" % jacksonVersion, "javax.validation" % "validation-api" % "2.0.1.Final", "org.slf4j" % "slf4j-api" % "1.7.26", - "io.github.classgraph" % "classgraph" % "4.8.184", + "io.github.classgraph" % "classgraph" % "4.8.186", "ch.qos.logback" % "logback-classic" % "1.2.13" % "test", "com.github.java-json-tools" % "json-schema-validator" % "2.2.14" % "test", "com.fasterxml.jackson.module" % "jackson-module-kotlin" % jacksonVersion % "test", diff --git a/computing-unit-managing-service/build.sbt b/computing-unit-managing-service/build.sbt index a12a138f7ab..952544a6d0b 100644 --- a/computing-unit-managing-service/build.sbt +++ b/computing-unit-managing-service/build.sbt @@ -49,7 +49,7 @@ libraryDependencies ++= Seq( "io.kubernetes" % "client-java" % "21.0.0", "org.jooq" % "jooq" % "3.19.36", "com.typesafe" % "config" % "1.4.9", - "com.softwaremill.sttp.client4" %% "core" % "4.0.25", + "com.softwaremill.sttp.client4" %% "core" % "4.0.26", "com.typesafe.play" %% "play-json" % "2.10.6", "io.fabric8" % "kubernetes-client" % "6.12.1" ) diff --git a/project/plugins.sbt b/project/plugins.sbt index 1fb8d3a860a..b588f3bc032 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -40,5 +40,5 @@ libraryDependencies ++= Seq( // PostgresDatabase.loadForeignKeys can't read (it looks up lowercase key_seq), // breaking JOOQ code generation. Fixed only in jOOQ 3.20+ (jOOQ/jOOQ#17873); jOOQ // is capped at 3.19.36 here (the last Java-17 release), so keep this driver pinned. - "org.postgresql" % "postgresql" % "42.7.4" + "org.postgresql" % "postgresql" % "42.7.13" )