From d21192748e6c3bd34c10b2a81c992441faebf991 Mon Sep 17 00:00:00 2001 From: "http4s-steward[bot]" <106843772+http4s-steward[bot]@users.noreply.github.com> Date: Fri, 12 May 2023 04:23:12 +0000 Subject: [PATCH 1/5] Update case-insensitive to 1.4.0 in series/0.9 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index b1d1b5f3..35e95854 100644 --- a/build.sbt +++ b/build.sbt @@ -41,7 +41,7 @@ val scodecV = "1.1.37" val http4sV = "0.23.18" val reactiveStreamsV = "1.0.4" val vaultV = "3.5.0" -val caseInsensitiveV = "1.3.0" +val caseInsensitiveV = "1.4.0" val munitV = "1.0.0-M7" val munitCatsEffectV = "2.0.0-M3" From 8fde60aaa7fe785b7a91cb105899974bfa5939f4 Mon Sep 17 00:00:00 2001 From: "http4s-steward[bot]" <106843772+http4s-steward[bot]@users.noreply.github.com> Date: Fri, 12 May 2023 04:23:16 +0000 Subject: [PATCH 2/5] Update cats-effect, cats-effect-kernel, ... to 3.5.0 in series/0.9 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index b1d1b5f3..98a6c94f 100644 --- a/build.sbt +++ b/build.sbt @@ -35,7 +35,7 @@ ThisBuild / mergifyRequiredJobs += "site" ThisBuild / mergifyLabelPaths += "docs" -> file("docs") val catsV = "2.9.0" -val catsEffectV = "3.4.11" +val catsEffectV = "3.5.0" val fs2V = "3.6.1" val scodecV = "1.1.37" val http4sV = "0.23.18" From 7fae446d13ef145bdeac47d54c97c78353e825c1 Mon Sep 17 00:00:00 2001 From: "http4s-steward[bot]" <106843772+http4s-steward[bot]@users.noreply.github.com> Date: Fri, 12 May 2023 12:36:38 +0000 Subject: [PATCH 3/5] Update fs2-core to 3.7.0 in series/0.9 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index b1d1b5f3..2e10e4b6 100644 --- a/build.sbt +++ b/build.sbt @@ -36,7 +36,7 @@ ThisBuild / mergifyLabelPaths += "docs" -> file("docs") val catsV = "2.9.0" val catsEffectV = "3.4.11" -val fs2V = "3.6.1" +val fs2V = "3.7.0" val scodecV = "1.1.37" val http4sV = "0.23.18" val reactiveStreamsV = "1.0.4" From 544235b1919e56c82d2ecf91eea01357484aca2d Mon Sep 17 00:00:00 2001 From: "http4s-steward[bot]" <106843772+http4s-steward[bot]@users.noreply.github.com> Date: Fri, 12 May 2023 22:26:07 +0000 Subject: [PATCH 4/5] Update http4s-client, ... to 0.23.19 in series/0.9 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index b1d1b5f3..fde57030 100644 --- a/build.sbt +++ b/build.sbt @@ -38,7 +38,7 @@ val catsV = "2.9.0" val catsEffectV = "3.4.11" val fs2V = "3.6.1" val scodecV = "1.1.37" -val http4sV = "0.23.18" +val http4sV = "0.23.19" val reactiveStreamsV = "1.0.4" val vaultV = "3.5.0" val caseInsensitiveV = "1.3.0" From f24c6787dc4e83b618e92a3c646a3a743d89a29b Mon Sep 17 00:00:00 2001 From: Arman Bilge Date: Fri, 12 May 2023 22:40:15 +0000 Subject: [PATCH 5/5] Fix deprecation --- .../jdkhttpclient/CompletableFutureTerminationTest.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/test/scala/org/http4s/jdkhttpclient/CompletableFutureTerminationTest.scala b/core/src/test/scala/org/http4s/jdkhttpclient/CompletableFutureTerminationTest.scala index 18a5b00d..a1b79923 100644 --- a/core/src/test/scala/org/http4s/jdkhttpclient/CompletableFutureTerminationTest.scala +++ b/core/src/test/scala/org/http4s/jdkhttpclient/CompletableFutureTerminationTest.scala @@ -21,6 +21,7 @@ import cats.effect._ import cats.effect.std.Semaphore import cats.syntax.all._ import com.comcast.ip4s._ +import fs2.io.net.Network import munit.CatsEffectSuite import org.http4s._ import org.http4s.ember.server._ @@ -171,7 +172,7 @@ object CompletableFutureTerminationTest { * ensure the server has received the request. This permit is acquired ''before'' one is * acquired from `semaphore`. */ - private def stallingServerR[F[_]]( + private def stallingServerR[F[_]: Network]( semaphore: Semaphore[F], gotRequest: Semaphore[F] )(implicit F: Async[F]): Resource[F, Server] =