Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Patch dependency updates #3426

Merged
merged 11 commits into from
Nov 18, 2024
14 changes: 7 additions & 7 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ object Dependencies {
// topbraid/shacl is not yet compatible with jena 5 so we need to use jena 4 for now
// see: https://github.com/TopQuadrant/shacl/pull/177
val JenaVersion = "4.10.0"
val Rdf4jVersion = "5.0.2"
val Rdf4jVersion = "5.0.3"
val TopbraidShaclVersion = "1.4.3"

val ZioConfigVersion = "4.0.2"
val ZioLoggingVersion = "2.3.1"
val ZioLoggingVersion = "2.3.2"
val ZioNioVersion = "2.0.2"
val ZioMetricsConnectorsVersion = "2.3.1"
val ZioPreludeVersion = "1.0.0-RC34"
val ZioSchemaVersion = "0.2.0"
val ZioVersion = "2.1.11"
val ZioVersion = "2.1.12"

// ZIO
val zio = "dev.zio" %% "zio" % ZioVersion
Expand Down Expand Up @@ -87,7 +87,7 @@ object Dependencies {
val jwtSprayJson = "com.github.jwt-scala" %% "jwt-zio-json" % "10.0.1"
// jwtSprayJson -> 9.0.2 is the latest version that's compatible with spray-json; if it wasn't for spray, this would be Scala 3 compatible
val springSecurityCore =
"org.springframework.security" % "spring-security-core" % "6.3.3" exclude (
"org.springframework.security" % "spring-security-core" % "6.3.4" exclude (
"commons-logging",
"commons-logging",
) exclude ("org.springframework", "spring-aop")
Expand All @@ -113,13 +113,13 @@ object Dependencies {
val pekkoTestkit = "org.apache.pekko" %% "pekko-testkit" % PekkoActorVersion
val scalaTest = "org.scalatest" %% "scalatest" % "3.2.19"

val testcontainers = "org.testcontainers" % "testcontainers" % "1.20.2"
val wiremock = "org.wiremock" % "wiremock" % "3.9.1"
val testcontainers = "org.testcontainers" % "testcontainers" % "1.20.3"
val wiremock = "org.wiremock" % "wiremock" % "3.9.2"

// found/added by the plugin but deleted anyway
val commonsLang3 = "org.apache.commons" % "commons-lang3" % "3.17.0"

val tapirVersion = "1.11.7"
val tapirVersion = "1.11.9"

val tapir = Seq(
"com.softwaremill.sttp.tapir" %% "tapir-pekko-http-server" % tapirVersion,
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.10.2
sbt.version=1.10.5
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ addSbtPlugin("io.kamon" % "sbt-aspectj-runner" % "1.1.2")
addSbtPlugin("org.playframework.twirl" % "sbt-twirl" % "2.0.7")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.3.0")
addSbtPlugin("com.github.sbt" % "sbt-javaagent" % "0.1.8")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.2")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.12.1")
Expand Down
Loading