Skip to content

Commit

Permalink
chore: Patch dependency updates (#3187)
Browse files Browse the repository at this point in the history
Co-authored-by: Christian Kleinbölting <[email protected]>
Co-authored-by: Christian Kleinbölting <[email protected]>
  • Loading branch information
3 people authored Apr 15, 2024
1 parent 26e62f8 commit d4c8c02
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ object Dependencies {
val PekkoActorVersion = "1.0.2"
val PekkoHttpVersion = "1.0.1"
val JenaVersion = "5.0.0"
val Rdf4jVersion = "4.3.10"
val Rdf4jVersion = "4.3.11"

val ZioConfigVersion = "4.0.1"
val ZioLoggingVersion = "2.2.2"
val ZioNioVersion = "2.0.2"
val ZioMetricsConnectorsVersion = "2.3.1"
val ZioPreludeVersion = "1.0.0-RC23"
val ZioSchemaVersion = "0.2.0"
val ZioVersion = "2.0.21"
val ZioVersion = "2.0.22"

// ZIO - all Scala 3 compatible
val zio = "dev.zio" %% "zio" % ZioVersion
Expand Down Expand Up @@ -67,7 +67,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.12" // the logging interface
val slf4jApi = "org.slf4j" % "slf4j-api" % "2.0.13" // the logging interface

// Metrics
val aspectjweaver = "org.aspectj" % "aspectjweaver" % "1.9.22"
Expand Down Expand Up @@ -116,7 +116,7 @@ object Dependencies {
// found/added by the plugin but deleted anyway
val commonsLang3 = "org.apache.commons" % "commons-lang3" % "3.14.0"

val tapirVersion = "1.10.0"
val tapirVersion = "1.10.4"

val tapir = Seq(
"com.softwaremill.sttp.tapir" %% "tapir-pekko-http-server" % tapirVersion,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,9 @@ final case class DspIngestClientLive(
for {
importUrl <- ZIO.fromEither(URL.decode(s"${projectsPath(shortcode)}/import"))
token <- jwtService.createJwtForDspIngest()
body <- Body.fromFile(fileToImport.toFile)
request = Request
.post(importUrl, Body.fromFile(fileToImport.toFile))
.post(importUrl, body)
.addHeaders(
Headers(
Header.Authorization.Bearer(token.jwtString),
Expand Down

0 comments on commit d4c8c02

Please sign in to comment.