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 #2954

Merged
merged 7 commits into from
Dec 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.7.15"
version = "3.7.17"
runner.dialect = Scala213Source3
maxColumn = 120
align.preset = most
Expand Down
8 changes: 4 additions & 4 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ object Dependencies {
val JenaVersion = "4.10.0"

val ZioConfigVersion = "3.0.7"
val ZioLoggingVersion = "2.1.15"
val ZioLoggingVersion = "2.1.16"
val ZioNioVersion = "2.0.2"
val ZioMetricsConnectorsVersion = "2.2.1"
val ZioPreludeVersion = "1.0.0-RC21"
Expand Down Expand Up @@ -101,7 +101,7 @@ object Dependencies {
val saxonHE = "net.sf.saxon" % "Saxon-HE" % "12.3"
val scalaGraph = "org.scala-graph" %% "graph-core" % "1.13.6" // Scala 3 incompatible
val scallop = "org.rogach" %% "scallop" % "5.0.1" // Scala 3 compatible
val titaniumJSONLD = "com.apicatalog" % "titanium-json-ld" % "1.3.2"
val titaniumJSONLD = "com.apicatalog" % "titanium-json-ld" % "1.3.3"
val xmlunitCore = "org.xmlunit" % "xmlunit-core" % "2.9.1"

// test
Expand All @@ -115,7 +115,7 @@ object Dependencies {
// 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.1"
val testcontainers = "org.testcontainers" % "testcontainers" % "1.19.3"
val wiremock = "org.wiremock" % "wiremock" % "3.3.1"

// found/added by the plugin but deleted anyway
Expand All @@ -129,7 +129,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.0"
"com.softwaremill.sttp.tapir" %% "tapir-refined" % "1.9.3"
)
val metrics = Seq(
"dev.zio" %% "zio-metrics-connectors" % ZioMetricsConnectorsVersion,
Expand Down
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ resolvers ++= Seq(

addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.9.16")
addSbtPlugin("io.kamon" % "sbt-aspectj-runner" % "1.1.2")
addSbtPlugin("org.playframework.twirl" % "sbt-twirl" % "2.0.1")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.1.4")
addSbtPlugin("org.playframework.twirl" % "sbt-twirl" % "2.0.2")
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")
Expand Down