From 3411caa4a414588639b0ffa373aacf3ab6f32a56 Mon Sep 17 00:00:00 2001 From: softwaremill-ci Date: Sat, 11 Jan 2025 19:34:32 +0100 Subject: [PATCH] Update circe-core, circe-generic, ... to 0.14.10 (#4023) --- build.sbt | 2 +- .../sbt-openapi-codegen/oneOf-json-roundtrip/build.sbt | 2 +- .../sbt-openapi-codegen/oneOf-json-roundtrip_scala3/build.sbt | 2 +- project/Versions.scala | 3 ++- project/build.sbt | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/build.sbt b/build.sbt index 35e130d502..dbfa6df8ad 100644 --- a/build.sbt +++ b/build.sbt @@ -650,7 +650,7 @@ lazy val refined: ProjectMatrix = (projectMatrix in file("integrations/refined") libraryDependencies ++= Seq( "eu.timepit" %%% "refined" % Versions.refined, scalaTest.value % Test, - "io.circe" %%% "circe-refined" % Versions.circe % Test + "io.circe" %%% "circe-refined" % Versions.circeRefined % Test ) ) .jvmPlatform(scalaVersions = scala2And3Versions, settings = commonJvmSettings) diff --git a/openapi-codegen/sbt-plugin/src/sbt-test/sbt-openapi-codegen/oneOf-json-roundtrip/build.sbt b/openapi-codegen/sbt-plugin/src/sbt-test/sbt-openapi-codegen/oneOf-json-roundtrip/build.sbt index dd0e5c6bae..e757d9f9ee 100644 --- a/openapi-codegen/sbt-plugin/src/sbt-test/sbt-openapi-codegen/oneOf-json-roundtrip/build.sbt +++ b/openapi-codegen/sbt-plugin/src/sbt-test/sbt-openapi-codegen/oneOf-json-roundtrip/build.sbt @@ -12,7 +12,7 @@ libraryDependencies ++= Seq( "com.softwaremill.sttp.tapir" %% "tapir-openapi-docs" % "1.10.0", "com.softwaremill.sttp.tapir" %% "tapir-pekko-http-server" % "1.10.0", "com.softwaremill.sttp.apispec" %% "openapi-circe-yaml" % "0.8.0", - "io.circe" %% "circe-generic" % "0.14.9", + "io.circe" %% "circe-generic" % "0.14.10", "com.beachape" %% "enumeratum" % "1.7.5", "com.beachape" %% "enumeratum-circe" % "1.7.5", "org.scalatest" %% "scalatest" % "3.2.19" % Test, diff --git a/openapi-codegen/sbt-plugin/src/sbt-test/sbt-openapi-codegen/oneOf-json-roundtrip_scala3/build.sbt b/openapi-codegen/sbt-plugin/src/sbt-test/sbt-openapi-codegen/oneOf-json-roundtrip_scala3/build.sbt index b9dca7596a..c4f75db9d9 100644 --- a/openapi-codegen/sbt-plugin/src/sbt-test/sbt-openapi-codegen/oneOf-json-roundtrip_scala3/build.sbt +++ b/openapi-codegen/sbt-plugin/src/sbt-test/sbt-openapi-codegen/oneOf-json-roundtrip_scala3/build.sbt @@ -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.9", + "io.circe" %% "circe-generic" % "0.14.10", "org.latestbit" %% "circe-tagged-adt-codec" % "0.11.0", "io.github.bishabosha" %% "enum-extensions" % "0.1.1", "org.scalatest" %% "scalatest" % "3.2.19" % Test, diff --git a/project/Versions.scala b/project/Versions.scala index 2561a6c894..7aef39dddc 100644 --- a/project/Versions.scala +++ b/project/Versions.scala @@ -4,7 +4,8 @@ object Versions { val http4sBlazeClient = "0.23.17" val catsCore = "2.12.0" val catsEffect = "3.5.7" - val circe = "0.14.9" + val circe = "0.14.10" + val circeRefined = "0.15.1" val circeGenericExtras = "0.14.3" val circeYaml = "0.15.2" val helidon = "4.0.10" diff --git a/project/build.sbt b/project/build.sbt index f53c05b0b1..0c0933907c 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,2 +1,2 @@ // needed for GenerateMimeDb -libraryDependencies += "io.circe" %% "circe-parser" % "0.14.9" +libraryDependencies += "io.circe" %% "circe-parser" % "0.14.10"