From 865e7d938bd92d0fd3d8b8ffebfb54209417f69f Mon Sep 17 00:00:00 2001 From: scala-steward Date: Mon, 1 Dec 2025 00:16:37 +0000 Subject: [PATCH] Update enumeratum, enumeratum-circe to 1.9.1 --- build.sbt | 4 ++-- .../src/sbt-test/sbt-openapi-codegen/nifi_test/build.sbt | 4 ++-- .../sbt-openapi-codegen/oneOf-json-roundtrip/build.sbt | 4 ++-- .../oneOf-json-roundtrip_jsoniter/build.sbt | 2 +- .../oneOf-json-roundtrip_jsoniter_scala3/build.sbt | 2 +- .../src/sbt-test/sbt-openapi-codegen/petstore/build.sbt | 2 +- project/Versions.scala | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/build.sbt b/build.sbt index e3db988cf9..9896525c6f 100644 --- a/build.sbt +++ b/build.sbt @@ -2166,8 +2166,8 @@ lazy val openapiCodegenCore: ProjectMatrix = (projectMatrix in file("openapi-cod "com.47deg" %% "scalacheck-toolbox-datetime" % "0.7.0" % Test, scalaOrganization.value % "scala-reflect" % scalaVersion.value, scalaOrganization.value % "scala-compiler" % scalaVersion.value % Test, - "com.beachape" %% "enumeratum" % "1.9.0" % Test, - "com.beachape" %% "enumeratum-circe" % "1.9.0" % Test, + "com.beachape" %% "enumeratum" % "1.9.1" % Test, + "com.beachape" %% "enumeratum-circe" % "1.9.1" % Test, "com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-core" % "2.38.2" % Test, "com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-macros" % "2.38.2" % Provided ) diff --git a/openapi-codegen/sbt-plugin/src/sbt-test/sbt-openapi-codegen/nifi_test/build.sbt b/openapi-codegen/sbt-plugin/src/sbt-test/sbt-openapi-codegen/nifi_test/build.sbt index 37dc677be2..710a0fd42a 100644 --- a/openapi-codegen/sbt-plugin/src/sbt-test/sbt-openapi-codegen/nifi_test/build.sbt +++ b/openapi-codegen/sbt-plugin/src/sbt-test/sbt-openapi-codegen/nifi_test/build.sbt @@ -17,8 +17,8 @@ libraryDependencies ++= Seq( "com.softwaremill.sttp.apispec" %% "openapi-circe-yaml" % "0.11.10", "com.softwaremill.sttp.client3" %% "http4s-backend" % "3.11.0", "io.circe" %% "circe-generic" % "0.14.15", - "com.beachape" %% "enumeratum" % "1.9.0", - "com.beachape" %% "enumeratum-circe" % "1.9.0", + "com.beachape" %% "enumeratum" % "1.9.1", + "com.beachape" %% "enumeratum-circe" % "1.9.1", "com.github.geirolz" %% "cats-xml" % catsXmlVersion, "com.github.geirolz" %% "cats-xml-generic" % catsXmlVersion, "org.scalatest" %% "scalatest" % "3.2.19" % Test, 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 72a7930852..beaa4b701d 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 @@ -16,8 +16,8 @@ libraryDependencies ++= Seq( "com.softwaremill.sttp.apispec" %% "openapi-circe-yaml" % "0.11.10", "com.softwaremill.sttp.client3" %% "http4s-backend" % "3.11.0", "io.circe" %% "circe-generic" % "0.14.15", - "com.beachape" %% "enumeratum" % "1.9.0", - "com.beachape" %% "enumeratum-circe" % "1.9.0", + "com.beachape" %% "enumeratum" % "1.9.1", + "com.beachape" %% "enumeratum-circe" % "1.9.1", "org.scalatest" %% "scalatest" % "3.2.19" % Test, "com.softwaremill.sttp.tapir" %% "tapir-sttp-stub-server" % "1.11.16" % Test ) diff --git a/openapi-codegen/sbt-plugin/src/sbt-test/sbt-openapi-codegen/oneOf-json-roundtrip_jsoniter/build.sbt b/openapi-codegen/sbt-plugin/src/sbt-test/sbt-openapi-codegen/oneOf-json-roundtrip_jsoniter/build.sbt index a1e33202d0..aefb3cc1e5 100644 --- a/openapi-codegen/sbt-plugin/src/sbt-test/sbt-openapi-codegen/oneOf-json-roundtrip_jsoniter/build.sbt +++ b/openapi-codegen/sbt-plugin/src/sbt-test/sbt-openapi-codegen/oneOf-json-roundtrip_jsoniter/build.sbt @@ -17,7 +17,7 @@ libraryDependencies ++= Seq( "com.softwaremill.sttp.tapir" %% "tapir-openapi-docs" % tapirVersion, "com.softwaremill.sttp.tapir" %% "tapir-pekko-http-server" % tapirVersion, "com.softwaremill.sttp.apispec" %% "openapi-circe-yaml" % "0.11.10", - "com.beachape" %% "enumeratum" % "1.9.0", + "com.beachape" %% "enumeratum" % "1.9.1", "com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-core" % jsoniterScalaVersion, "com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-macros" % jsoniterScalaVersion % "compile-internal", "com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-circe" % jsoniterScalaVersion, diff --git a/openapi-codegen/sbt-plugin/src/sbt-test/sbt-openapi-codegen/oneOf-json-roundtrip_jsoniter_scala3/build.sbt b/openapi-codegen/sbt-plugin/src/sbt-test/sbt-openapi-codegen/oneOf-json-roundtrip_jsoniter_scala3/build.sbt index 46e22364b0..36a759b99f 100644 --- a/openapi-codegen/sbt-plugin/src/sbt-test/sbt-openapi-codegen/oneOf-json-roundtrip_jsoniter_scala3/build.sbt +++ b/openapi-codegen/sbt-plugin/src/sbt-test/sbt-openapi-codegen/oneOf-json-roundtrip_jsoniter_scala3/build.sbt @@ -16,7 +16,7 @@ libraryDependencies ++= Seq( "com.softwaremill.sttp.tapir" %% "tapir-openapi-docs" % tapirVersion, "com.softwaremill.sttp.tapir" %% "tapir-http4s-server" % tapirVersion, "com.softwaremill.sttp.apispec" %% "openapi-circe-yaml" % "0.11.10", - "com.beachape" %% "enumeratum" % "1.9.0", + "com.beachape" %% "enumeratum" % "1.9.1", "co.fs2" %% "fs2-core" % "3.12.2", "com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-core" % "2.38.2", "com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-macros" % "2.38.2" % "compile-internal", diff --git a/openapi-codegen/sbt-plugin/src/sbt-test/sbt-openapi-codegen/petstore/build.sbt b/openapi-codegen/sbt-plugin/src/sbt-test/sbt-openapi-codegen/petstore/build.sbt index e6ff3bc5e0..fba8adc247 100644 --- a/openapi-codegen/sbt-plugin/src/sbt-test/sbt-openapi-codegen/petstore/build.sbt +++ b/openapi-codegen/sbt-plugin/src/sbt-test/sbt-openapi-codegen/petstore/build.sbt @@ -16,7 +16,7 @@ libraryDependencies ++= Seq( "com.softwaremill.sttp.apispec" %% "openapi-circe-yaml" % "0.11.10", "io.circe" %% "circe-generic" % "0.14.15", "com.beachape" %% "enumeratum" % "1.7.5", - "com.beachape" %% "enumeratum-circe" % "1.9.0", + "com.beachape" %% "enumeratum-circe" % "1.9.1", "com.github.geirolz" %% "cats-xml" % catsXmlVersion, "com.github.geirolz" %% "cats-xml-generic" % catsXmlVersion, "org.scalatest" %% "scalatest" % "3.2.19" % Test, diff --git a/project/Versions.scala b/project/Versions.scala index b7f8c5a543..cd32845bd6 100644 --- a/project/Versions.scala +++ b/project/Versions.scala @@ -36,7 +36,7 @@ object Versions { val scalaTestPlusScalaCheck = "3.2.19.0" val refined = "0.11.3" val iron = "3.0.3" - val enumeratum = "1.9.0" + val enumeratum = "1.9.1" val zio = "2.1.23" val zioHttp = "3.7.0" val zioInteropCats = "23.1.0.11"