From 46aa583caa93d4cf035e87a2a0e7b2b0828285d6 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Mon, 20 Apr 2026 21:16:50 +0200 Subject: [PATCH] Update typesafe config version to 1.4.6 Signed-off-by: PJ Fanning config 1.4.6 --- common/auth/build.sbt | 2 +- common/config/build.sbt | 2 +- common/workflow-core/build.sbt | 2 +- computing-unit-managing-service/build.sbt | 5 ++--- config-service/build.sbt | 2 +- project/plugins.sbt | 2 +- 6 files changed, 7 insertions(+), 8 deletions(-) diff --git a/common/auth/build.sbt b/common/auth/build.sbt index 3d2b3685c1e..40afca1c79c 100644 --- a/common/auth/build.sbt +++ b/common/auth/build.sbt @@ -56,7 +56,7 @@ Compile / scalacOptions ++= Seq( // Core Dependencies libraryDependencies ++= Seq( - "com.typesafe" % "config" % "1.4.3", // config reader + "com.typesafe" % "config" % "1.4.6", // config reader "com.typesafe.scala-logging" %% "scala-logging" % "3.9.5", // for LazyLogging "org.bitbucket.b_c" % "jose4j" % "0.9.6", // for jwt parser "jakarta.ws.rs" % "jakarta.ws.rs-api" % "3.0.0", // for JwtAuthFilter diff --git a/common/config/build.sbt b/common/config/build.sbt index 8a049491a94..8d6fd474ea9 100644 --- a/common/config/build.sbt +++ b/common/config/build.sbt @@ -53,5 +53,5 @@ Compile / scalacOptions ++= Seq( // Core Dependencies libraryDependencies ++= Seq( - "com.typesafe" % "config" % "1.4.2" // For configuration management + "com.typesafe" % "config" % "1.4.6" // For configuration management ) \ No newline at end of file diff --git a/common/workflow-core/build.sbt b/common/workflow-core/build.sbt index 4f9c37b1719..2c56dbd2e68 100644 --- a/common/workflow-core/build.sbt +++ b/common/workflow-core/build.sbt @@ -211,7 +211,7 @@ libraryDependencies ++= Seq( "org.eclipse.jgit" % "org.eclipse.jgit" % "5.13.0.202109080827-r", // jgit "org.apache.commons" % "commons-vfs2" % "2.9.0", // for FileResolver throw VFS-related exceptions "io.lakefs" % "sdk" % "1.51.0", // for lakeFS api calls - "com.typesafe" % "config" % "1.4.3", // config reader + "com.typesafe" % "config" % "1.4.6", // config reader "org.apache.commons" % "commons-jcs3-core" % "3.2", // Apache Commons JCS "software.amazon.awssdk" % "s3" % "2.29.51" excludeAll( ExclusionRule(organization = "io.netty") diff --git a/computing-unit-managing-service/build.sbt b/computing-unit-managing-service/build.sbt index 87013deca0f..748c1c8c37e 100644 --- a/computing-unit-managing-service/build.sbt +++ b/computing-unit-managing-service/build.sbt @@ -34,9 +34,8 @@ libraryDependencies ++= Seq( "io.dropwizard" % "dropwizard-auth" % dropwizardVersion, // Dropwizard Authentication module "io.kubernetes" % "client-java" % "21.0.0", "org.jooq" % "jooq" % "3.14.16", - "com.typesafe" % "config" % "1.4.1", + "com.typesafe" % "config" % "1.4.6", "com.softwaremill.sttp.client4" %% "core" % "4.0.0-M6", - "com.typesafe" % "config" % "1.4.2", "com.typesafe.play" %% "play-json" % "2.10.6", "io.fabric8" % "kubernetes-client" % "6.12.1" ) @@ -47,4 +46,4 @@ Compile / scalacOptions ++= Seq( "-feature", "-deprecation", "-Ywarn-unused:imports" -) \ No newline at end of file +) diff --git a/config-service/build.sbt b/config-service/build.sbt index 87872688c36..9dbf0e4d6bd 100644 --- a/config-service/build.sbt +++ b/config-service/build.sbt @@ -80,5 +80,5 @@ libraryDependencies ++= Seq( "jakarta.ws.rs" % "jakarta.ws.rs-api" % "3.1.0", // Ensure Jakarta JAX-RS API is available "org.bitbucket.b_c" % "jose4j" % "0.9.6", "org.playframework" %% "play-json" % "3.1.0-M1", - "com.typesafe" % "config" % "1.4.2" // For configuration management + "com.typesafe" % "config" % "1.4.6" // For configuration management ) \ No newline at end of file diff --git a/project/plugins.sbt b/project/plugins.sbt index 0e91da0ef84..98497539cb0 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -29,6 +29,6 @@ addSbtPlugin("org.typelevel" % "sbt-fs2-grpc" % "2.5.0") // JOOQ dependencies for code generation libraryDependencies ++= Seq( "org.jooq" % "jooq-codegen" % "3.16.23", - "com.typesafe" % "config" % "1.4.3", + "com.typesafe" % "config" % "1.4.6", "org.postgresql" % "postgresql" % "42.7.4" ) \ No newline at end of file