Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ lazy val ingestor = project
mongo4catsCore,
mongo4catsCirce,
log4Cats,
logback,
logback % Runtime,
otel4sSdk,
otel4sMetrics,
otel4sPrometheusExporter,
Expand Down Expand Up @@ -158,7 +158,7 @@ lazy val app = project
cirisCore,
cirisHtt4s,
log4Cats,
logback,
logback % Runtime,
otel4sSdk,
otel4sMetrics,
otel4sPrometheusExporter,
Expand Down
10 changes: 5 additions & 5 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ object Dependencies {
val ciris = "3.7.0"
val decline = "2.5.0"
val elastic4s = "8.17.1"
val fs2 = "3.12.0-RC1"
val fs2 = "3.12.0-RC2"
val http4s = "0.23.30"
val iron = "2.5.0"
val mongo4cats = "0.7.12"
Expand Down Expand Up @@ -44,8 +44,8 @@ object Dependencies {
lazy val smithy4sHttp4sSwagger = smithy4s("http4s-swagger")
lazy val smithy4sJson = smithy4s("json")

val jsoniterCore = "com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-core" % "2.33.2"
val jsoniterMacro = "com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-macros" % "2.33.2"
val jsoniterCore = "com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-core" % "2.33.3"
val jsoniterMacro = "com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-macros" % "2.33.3"

val playWS = "com.typesafe.play" %% "play-ahc-ws-standalone" % "2.2.11"

Expand All @@ -63,9 +63,9 @@ object Dependencies {
val otel4sMetrics = "org.typelevel" %% "otel4s-experimental-metrics" % "0.6.0-RC1"

val log4Cats = "org.typelevel" %% "log4cats-slf4j" % "2.7.0"
val logback = "ch.qos.logback" % "logback-classic" % "1.5.17"
val logback = "ch.qos.logback" % "logback-classic" % "1.5.18"

val ducktape = "io.github.arainko" %% "ducktape" % "0.2.7"
val ducktape = "io.github.arainko" %% "ducktape" % "0.2.8"

val declineCore = "com.monovore" %% "decline" % V.decline
val declineCatsEffect = "com.monovore" %% "decline-effect" % V.decline
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.14.2")

addSbtPlugin("com.disneystreaming.smithy4s" % "smithy4s-sbt-codegen" % "0.18.30")
addSbtPlugin("com.disneystreaming.smithy4s" % "smithy4s-sbt-codegen" % "0.18.31")

addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.13.1")

Expand Down