Skip to content

Commit

Permalink
Update iglu-scala-client to 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward committed Feb 20, 2024
1 parent 1df13c2 commit ffe732c
Showing 1 changed file with 36 additions and 40 deletions.
76 changes: 36 additions & 40 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ object Dependencies {
object V {
val IgluCore = "1.1.2"
val SchemaDdl = "0.18.0"
val IgluClient = "1.1.1"
val IgluClient = "1.5.0"

val Http4s = "0.21.34"
val Rho = "0.21.0"
Expand All @@ -38,47 +38,43 @@ object Dependencies {
val Snakeyaml = "2.0"
val Guava = "32.0.0-jre"

val Specs2 = "4.5.1"
val Logback = "1.2.3"
val Specs2 = "4.5.1"
val Logback = "1.2.3"
}

val all = Seq(
"com.snowplowanalytics" %% "iglu-core-circe" % V.IgluCore,
"com.snowplowanalytics" %% "schema-ddl" % V.SchemaDdl,
"com.snowplowanalytics" %% "iglu-scala-client" % V.IgluClient,

"com.monovore" %% "decline" % V.Decline,
"org.typelevel" %% "log4cats-slf4j" % V.Log4Cats,
"org.http4s" %% "http4s-blaze-server" % V.Http4s,
"org.http4s" %% "http4s-blaze-client" % V.Http4s,
"org.http4s" %% "http4s-circe" % V.Http4s,
"org.http4s" %% "http4s-dsl" % V.Http4s,
"org.http4s" %% "rho-swagger" % V.Rho,
"io.circe" %% "circe-generic" % V.Circe,
"io.circe" %% "circe-jawn" % V.Circe,
"io.circe" %% "circe-literal" % V.Circe,
"io.circe" %% "circe-refined" % V.Circe,
"io.circe" %% "circe-fs2" % V.CirceFs2,
"eu.timepit" %% "refined" % V.Refined,
"com.github.pureconfig" %% "pureconfig" % V.PureConfig,
"com.github.pureconfig" %% "pureconfig-http4s" % V.PureConfig,
"org.tpolecat" %% "doobie-core" % V.Doobie,
"org.tpolecat" %% "doobie-postgres" % V.Doobie,
"org.tpolecat" %% "doobie-postgres-circe" % V.Doobie,
"org.tpolecat" %% "doobie-hikari" % V.Doobie,
"com.github.cb372" %% "scalacache-cats-effect" % V.ScalaCache,
"com.github.cb372" %% "scalacache-caffeine" % V.ScalaCache,

"org.webjars" % "swagger-ui" % V.SwaggerUi,
"org.slf4j" % "slf4j-simple" % V.Slf4j,
"org.postgresql" % "postgresql" % V.Postgresql,
"com.fasterxml.jackson.core" % "jackson-databind" % V.Jackson, // override transitive version to address security vulnerabilities
"org.yaml" % "snakeyaml" % V.Snakeyaml, // override transitive version to address security vulnerabilities
"com.google.guava" % "guava" % V.Guava, // override transitive version to address security vulnerabilities


"org.tpolecat" %% "doobie-specs2" % V.Doobie % Test,
"org.specs2" %% "specs2-core" % V.Specs2 % Test,
"org.specs2" %% "specs2-cats" % V.Specs2 % Test
"com.snowplowanalytics" %% "iglu-core-circe" % V.IgluCore,
"com.snowplowanalytics" %% "schema-ddl" % V.SchemaDdl,
"com.snowplowanalytics" %% "iglu-scala-client" % V.IgluClient,
"com.monovore" %% "decline" % V.Decline,
"org.typelevel" %% "log4cats-slf4j" % V.Log4Cats,
"org.http4s" %% "http4s-blaze-server" % V.Http4s,
"org.http4s" %% "http4s-blaze-client" % V.Http4s,
"org.http4s" %% "http4s-circe" % V.Http4s,
"org.http4s" %% "http4s-dsl" % V.Http4s,
"org.http4s" %% "rho-swagger" % V.Rho,
"io.circe" %% "circe-generic" % V.Circe,
"io.circe" %% "circe-jawn" % V.Circe,
"io.circe" %% "circe-literal" % V.Circe,
"io.circe" %% "circe-refined" % V.Circe,
"io.circe" %% "circe-fs2" % V.CirceFs2,
"eu.timepit" %% "refined" % V.Refined,
"com.github.pureconfig" %% "pureconfig" % V.PureConfig,
"com.github.pureconfig" %% "pureconfig-http4s" % V.PureConfig,
"org.tpolecat" %% "doobie-core" % V.Doobie,
"org.tpolecat" %% "doobie-postgres" % V.Doobie,
"org.tpolecat" %% "doobie-postgres-circe" % V.Doobie,
"org.tpolecat" %% "doobie-hikari" % V.Doobie,
"com.github.cb372" %% "scalacache-cats-effect" % V.ScalaCache,
"com.github.cb372" %% "scalacache-caffeine" % V.ScalaCache,
"org.webjars" % "swagger-ui" % V.SwaggerUi,
"org.slf4j" % "slf4j-simple" % V.Slf4j,
"org.postgresql" % "postgresql" % V.Postgresql,
"com.fasterxml.jackson.core" % "jackson-databind" % V.Jackson, // override transitive version to address security vulnerabilities
"org.yaml" % "snakeyaml" % V.Snakeyaml, // override transitive version to address security vulnerabilities
"com.google.guava" % "guava" % V.Guava, // override transitive version to address security vulnerabilities
"org.tpolecat" %% "doobie-specs2" % V.Doobie % Test,
"org.specs2" %% "specs2-core" % V.Specs2 % Test,
"org.specs2" %% "specs2-cats" % V.Specs2 % Test
)
}

0 comments on commit ffe732c

Please sign in to comment.