Skip to content

Commit

Permalink
Update circe-core, circe-generic, ... to 0.14.7 (#3730)
Browse files Browse the repository at this point in the history
Co-authored-by: scala-steward <scala-steward>
  • Loading branch information
softwaremill-ci authored May 7, 2024
1 parent 199a449 commit fc257a6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ libraryDependencies ++= Seq(
"com.softwaremill.sttp.tapir" %% "tapir-json-circe" % "1.10.0",
"com.softwaremill.sttp.tapir" %% "tapir-openapi-docs" % "1.10.0",
"com.softwaremill.sttp.apispec" %% "openapi-circe-yaml" % "0.8.0",
"io.circe" %% "circe-generic" % "0.14.6",
"io.circe" %% "circe-generic" % "0.14.7",
"com.beachape" %% "enumeratum" % "1.7.3",
"com.beachape" %% "enumeratum-circe" % "1.7.3",
"org.scalatest" %% "scalatest" % "3.2.18" % Test,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ libraryDependencies ++= Seq(
"com.softwaremill.sttp.tapir" %% "tapir-json-circe" % "1.10.0",
"com.softwaremill.sttp.tapir" %% "tapir-openapi-docs" % "1.10.0",
"com.softwaremill.sttp.apispec" %% "openapi-circe-yaml" % "0.8.0",
"io.circe" %% "circe-generic" % "0.14.6",
"io.circe" %% "circe-generic" % "0.14.7",
"org.latestbit" %% "circe-tagged-adt-codec" % "0.11.0",
"io.github.bishabosha" %% "enum-extensions" % "0.1.1",
"org.scalatest" %% "scalatest" % "3.2.18" % Test,
Expand All @@ -22,7 +22,8 @@ TaskKey[Unit]("check") := {
val generatedCode =
Source.fromFile("target/scala-3.3.1/src_managed/main/sbt-openapi-codegen/TapirGeneratedEndpoints.scala").getLines.mkString("\n")
val expected = Source.fromFile("Expected.scala.txt").getLines.mkString("\n")
val generatedTrimmed = generatedCode.linesIterator.zipWithIndex.filterNot(_._1.forall(_.isWhitespace)).map{ case (a, i) => a.trim -> i }.toSeq
val generatedTrimmed =
generatedCode.linesIterator.zipWithIndex.filterNot(_._1.forall(_.isWhitespace)).map { case (a, i) => a.trim -> i }.toSeq
val expectedTrimmed = expected.linesIterator.filterNot(_.forall(_.isWhitespace)).map(_.trim).toSeq
if (generatedTrimmed.size != expectedTrimmed.size)
sys.error(s"expected ${expectedTrimmed.size} non-empty lines, found ${generatedTrimmed.size}")
Expand Down
2 changes: 1 addition & 1 deletion project/Versions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ object Versions {
val http4sBlazeClient = "0.23.16"
val catsCore = "2.10.0"
val catsEffect = "3.5.4"
val circe = "0.14.6"
val circe = "0.14.7"
val circeGenericExtras = "0.14.3"
val circeYaml = "0.15.1"
val helidon = "4.0.0"
Expand Down
2 changes: 1 addition & 1 deletion project/build.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// needed for GenerateMimeDb
libraryDependencies += "io.circe" %% "circe-parser" % "0.14.6"
libraryDependencies += "io.circe" %% "circe-parser" % "0.14.7"

0 comments on commit fc257a6

Please sign in to comment.