From 67705f4a0933e3f86c7c86df9f4eadee9e019abf Mon Sep 17 00:00:00 2001 From: "dwolla-oss-scala-steward[bot]" <212073+dwolla-oss-scala-steward[bot]@users.noreply.github.com> Date: Mon, 12 Aug 2024 20:06:48 +0000 Subject: [PATCH 1/2] Update munit to 1.0.1 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 2766842..5537659 100644 --- a/build.sbt +++ b/build.sbt @@ -34,7 +34,7 @@ ThisBuild / mergifySuccessConditions += MergifyCondition.Custom("#approved-revie lazy val log4catsVersion = "2.7.0" lazy val http4sVersion = "0.23.27" -lazy val munitVersion = "1.0.0" +lazy val munitVersion = "1.0.1" lazy val root = tlCrossRootProject.aggregate( `http4s-consul-middleware`, From 7c959b80012058db191ce842fb60de398e06fa91 Mon Sep 17 00:00:00 2001 From: Brian Holt Date: Wed, 28 Aug 2024 17:02:41 -0500 Subject: [PATCH 2/2] decouple munit and munit-scalacheck versions --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 5537659..2988f6e 100644 --- a/build.sbt +++ b/build.sbt @@ -68,7 +68,7 @@ lazy val `http4s-consul-middleware` = crossProject(JSPlatform, JVMPlatform) "org.http4s" %%% "http4s-dsl" % http4sVersion % Test, "org.http4s" %%% "http4s-laws" % http4sVersion % Test, "org.scalameta" %%% "munit" % munitVersion % Test, - "org.scalameta" %%% "munit-scalacheck" % munitVersion % Test, + "org.scalameta" %%% "munit-scalacheck" % "1.0.0" % Test, "com.comcast" %%% "ip4s-test-kit" % "3.6.0" % Test, ) ++ (if (scalaVersion.value.startsWith("2.")) Seq( compilerPlugin("org.typelevel" %% "kind-projector" % "0.13.3" cross CrossVersion.full),