From 3342f330a6abb029c538b1be25990a0ea8fc2f76 Mon Sep 17 00:00:00 2001 From: "http4s-steward[bot]" <106843772+http4s-steward[bot]@users.noreply.github.com> Date: Tue, 12 Mar 2024 16:21:09 +0000 Subject: [PATCH 1/3] Update http4s-circe, http4s-client, ... to 1.0.0-M41 in main --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index d707e30c3..4b6a5454d 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ import Dependencies._ val Scala213 = "2.13.11" val Scala3 = "3.3.1" -val http4sVersion = "1.0.0-M40" +val http4sVersion = "1.0.0-M41" val munitCatsEffectVersion = "2.0.0-M4" ThisBuild / resolvers += From 73129bc08a55d44270d08291a2f4fb0ba8d6fc9b Mon Sep 17 00:00:00 2001 From: danicheg Date: Thu, 4 Apr 2024 13:51:08 +0400 Subject: [PATCH 2/3] Add an explicit dependency on log4cats in tests --- build.sbt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.sbt b/build.sbt index 4b6a5454d..e743922be 100644 --- a/build.sbt +++ b/build.sbt @@ -3,6 +3,7 @@ import Dependencies._ val Scala213 = "2.13.11" val Scala3 = "3.3.1" val http4sVersion = "1.0.0-M41" +val log4catsVersion = "2.6.0" val munitCatsEffectVersion = "2.0.0-M4" ThisBuild / resolvers += @@ -120,6 +121,7 @@ lazy val blazeServer = Project("http4s-blaze-server", file("blaze-server")) libraryDependencies ++= Seq( "org.http4s" %% "http4s-server" % http4sVersion, "org.http4s" %% "http4s-dsl" % http4sVersion % Test, + "org.typelevel" %% "log4cats-slf4j" % log4catsVersion % Test, ), Test / scalafixConfig := Some(file(".scalafix.test.conf")), ) @@ -146,6 +148,7 @@ lazy val examples = Project("blaze-examples", file("examples")) "org.http4s" %% "http4s-dsl" % http4sVersion, "org.http4s" %% "http4s-circe" % http4sVersion, "io.circe" %% "circe-generic" % "0.14.6", + "org.typelevel" %% "log4cats-slf4j" % log4catsVersion % Test, ), Test / scalafixConfig := Some(file(".scalafix.test.conf")), ) From 5633e7ebbd9f049a07fb254d7f5c0c8e0dd89b94 Mon Sep 17 00:00:00 2001 From: danicheg Date: Thu, 4 Apr 2024 13:55:49 +0400 Subject: [PATCH 3/3] Add an explicit dependency on log4cats in blaze-examples --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index e743922be..b965f3180 100644 --- a/build.sbt +++ b/build.sbt @@ -148,7 +148,7 @@ lazy val examples = Project("blaze-examples", file("examples")) "org.http4s" %% "http4s-dsl" % http4sVersion, "org.http4s" %% "http4s-circe" % http4sVersion, "io.circe" %% "circe-generic" % "0.14.6", - "org.typelevel" %% "log4cats-slf4j" % log4catsVersion % Test, + "org.typelevel" %% "log4cats-slf4j" % log4catsVersion, ), Test / scalafixConfig := Some(file(".scalafix.test.conf")), )