diff --git a/automation/project/Dependencies.scala b/automation/project/Dependencies.scala index fbe072122..66c3a0be8 100644 --- a/automation/project/Dependencies.scala +++ b/automation/project/Dependencies.scala @@ -3,8 +3,8 @@ import sbt._ object Dependencies { val scalaV = "2.13.16" - val jacksonV = "2.18.2" - val jacksonHotfixV = "2.18.2" // for when only some of the Jackson libs have hotfix releases + val jacksonV = "2.18.3" + val jacksonHotfixV = "2.18.3" // for when only some of the Jackson libs have hotfix releases val akkaV = "2.6.19" val akkaHttpV = "10.2.10" val workbenchLibsHash = "3e0cf25" @@ -36,7 +36,7 @@ object Dependencies { val rootDependencies: Seq[ModuleID] = Seq( "com.fasterxml.jackson.module" %% "jackson-module-scala" % jacksonV, "net.virtual-void" %% "json-lenses" % "0.6.2" % "test", - "ch.qos.logback" % "logback-classic" % "1.5.16", + "ch.qos.logback" % "logback-classic" % "1.5.17", "com.typesafe.akka" %% "akka-http-core" % akkaHttpV, "com.typesafe.akka" %% "akka-stream-testkit" % akkaV, "com.typesafe.akka" %% "akka-http" % akkaHttpV, diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 996cae3b9..a3682ca67 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -3,8 +3,8 @@ import sbt._ object Dependencies { val akkaV = "2.9.3" val akkaHttpV = "10.6.3" - val jacksonV = "2.18.2" - val jacksonHotfixV = "2.18.2" // for when only some of the Jackson libs have hotfix releases + val jacksonV = "2.18.3" + val jacksonHotfixV = "2.18.3" // for when only some of the Jackson libs have hotfix releases val nettyV = "4.1.119.Final" val workbenchLibsHash = "3e0cf25" // see https://github.com/broadinstitute/workbench-libs readme for hash values @@ -43,8 +43,8 @@ object Dependencies { // elasticsearch requires log4j, but we redirect log4j to logback "org.apache.logging.log4j" % "log4j-to-slf4j" % "2.24.3", - "ch.qos.logback" % "logback-classic" % "1.5.16", - "io.sentry" % "sentry-logback" % "8.1.0", + "ch.qos.logback" % "logback-classic" % "1.5.17", + "io.sentry" % "sentry-logback" % "8.4.0", "com.typesafe.scala-logging" %% "scala-logging" % "3.9.5", "org.parboiled" % "parboiled-core" % "1.4.1", @@ -60,7 +60,7 @@ object Dependencies { "org.broadinstitute.dsde.workbench" %% "workbench-notifications" %s"0.8-$workbenchLibsHash", "org.databiosphere" % "workspacedataservice-client-okhttp-jakarta" % "0.2.167-SNAPSHOT", "bio.terra" % "externalcreds-client-resttemplate" % "1.83.0-SNAPSHOT" excludeAll(excludeSpring, excludeSpringBoot), - "org.springframework" % "spring-web" % "6.2.2" excludeAll(excludeSpringBoot, excludeSpringJcl), + "org.springframework" % "spring-web" % "6.2.4" excludeAll(excludeSpringBoot, excludeSpringJcl), "com.typesafe.akka" %% "akka-actor" % akkaV, "com.typesafe.akka" %% "akka-slf4j" % akkaV, @@ -96,7 +96,7 @@ object Dependencies { "org.scalatest" %% "scalatest" % "3.2.19" % "test", "org.mock-server" % "mockserver-netty-no-dependencies" % "5.15.0" % "test", // provides testing mocks - "com.google.cloud" % "google-cloud-nio" % "0.127.30" % "test", + "com.google.cloud" % "google-cloud-nio" % "0.127.33" % "test", "org.scalatestplus" %% "mockito-4-5" % "3.2.12.0" % "test" ) } diff --git a/project/plugins.sbt b/project/plugins.sbt index d40092f95..881c688dc 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -2,7 +2,7 @@ addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.3.1") addSbtPlugin("io.spray" % "sbt-revolver" % "0.10.0") -addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.3.0") +addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.3.1") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.4")