From 5949e85aefa4448d0a9450368245a86709065bc8 Mon Sep 17 00:00:00 2001 From: DaSCH Bot <50987250+daschbot@users.noreply.github.com> Date: Thu, 15 Feb 2024 09:39:09 +0100 Subject: [PATCH] chore: Patch dependency updates (#3047) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Christian Kleinbölting --- project/Dependencies.scala | 14 +++++++------- project/plugins.sbt | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 680f0b90b4..654d1eeec2 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -18,7 +18,7 @@ object Dependencies { val ScalaVersion = "2.13.12" val PekkoActorVersion = "1.0.2" - val PekkoHttpVersion = "1.0.0" + val PekkoHttpVersion = "1.0.1" val JenaVersion = "4.10.0" val Rdf4jVersion = "4.3.9" @@ -41,7 +41,7 @@ object Dependencies { val zioNio = "dev.zio" %% "zio-nio" % ZioNioVersion val zioMacros = "dev.zio" %% "zio-macros" % ZioVersion val zioPrelude = "dev.zio" %% "zio-prelude" % ZioPreludeVersion - val zioSttp = "com.softwaremill.sttp.client3" %% "zio" % "3.9.2" + val zioSttp = "com.softwaremill.sttp.client3" %% "zio" % "3.9.3" // refined val refined = Seq( @@ -66,7 +66,7 @@ object Dependencies { // logging val scalaLogging = "com.typesafe.scala-logging" %% "scala-logging" % "3.9.5" // Scala 3 compatible - val slf4jApi = "org.slf4j" % "slf4j-api" % "2.0.11" // the logging interface + val slf4jApi = "org.slf4j" % "slf4j-api" % "2.0.12" // the logging interface // Metrics val aspectjweaver = "org.aspectj" % "aspectjweaver" % "1.9.21.1" @@ -102,20 +102,20 @@ object Dependencies { val pekkoHttpTestkit = "org.apache.pekko" %% "pekko-http-testkit" % PekkoHttpVersion // Scala 3 incompatible val pekkoStreamTestkit = "org.apache.pekko" %% "pekko-stream-testkit" % PekkoActorVersion // Scala 3 compatible val pekkoTestkit = "org.apache.pekko" %% "pekko-testkit" % PekkoActorVersion // Scala 3 compatible - val scalaTest = "org.scalatest" %% "scalatest" % "3.2.17" // Scala 3 compatible + val scalaTest = "org.scalatest" %% "scalatest" % "3.2.18" // Scala 3 compatible // The scoverage plugin actually adds its dependencies automatically. // Add it redundantly to the IT dependencies in order to fix build issues with IntelliJ // Fixes error message when running IT in IntelliJ // A needed class was not found. This could be due to an error in your runpath.Missing class: scoverage / Invoker$ // java.lang.NoClassDefFoundError: scoverage / Invoker$ val scoverage = "org.scoverage" %% "scalac-scoverage-runtime" % "2.0.11" - val testcontainers = "org.testcontainers" % "testcontainers" % "1.19.4" + val testcontainers = "org.testcontainers" % "testcontainers" % "1.19.5" val wiremock = "org.wiremock" % "wiremock" % "3.3.1" // found/added by the plugin but deleted anyway val commonsLang3 = "org.apache.commons" % "commons-lang3" % "3.14.0" - val tapirVersion = "1.9.8" + val tapirVersion = "1.9.9" val tapir = Seq( "com.softwaremill.sttp.tapir" %% "tapir-pekko-http-server" % tapirVersion, @@ -123,7 +123,7 @@ object Dependencies { "com.softwaremill.sttp.tapir" %% "tapir-json-zio" % tapirVersion, "com.softwaremill.sttp.tapir" %% "tapir-json-spray" % tapirVersion, "com.softwaremill.sttp.tapir" %% "tapir-swagger-ui-bundle" % tapirVersion, - "com.softwaremill.sttp.tapir" %% "tapir-refined" % "1.9.8" + "com.softwaremill.sttp.tapir" %% "tapir-refined" % "1.9.9" ) val metrics = Seq( "dev.zio" %% "zio-metrics-connectors" % ZioMetricsConnectorsVersion, diff --git a/project/plugins.sbt b/project/plugins.sbt index fe54b0de7d..538ca338b5 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -11,7 +11,7 @@ addSbtPlugin("org.playframework.twirl" % "sbt-twirl" % "2.0.3") addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.1.5") addSbtPlugin("com.github.sbt" % "sbt-javaagent" % "0.1.8") // also update the scalac-scoverage-runtime version in build.sbt -addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.9") +addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.10") addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2") addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.11.1")