Skip to content

Commit

Permalink
chore: Patch dependency updates (#3047)
Browse files Browse the repository at this point in the history
Co-authored-by: Christian Kleinbölting <[email protected]>
  • Loading branch information
daschbot and seakayone authored Feb 15, 2024
1 parent bf60688 commit 5949e85
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand All @@ -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(
Expand All @@ -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"
Expand Down Expand Up @@ -102,28 +102,28 @@ 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,
"com.softwaremill.sttp.tapir" %% "tapir-zio-http-server" % tapirVersion,
"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,
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 5949e85

Please sign in to comment.