Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update cats-effect, cats-effect-kernel, ... to 3.5.0 in series/0.9 #864

Merged
merged 8 commits into from
May 13, 2023
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ ThisBuild / mergifyRequiredJobs += "site"
ThisBuild / mergifyLabelPaths += "docs" -> file("docs")

val catsV = "2.9.0"
val catsEffectV = "3.4.11"
val fs2V = "3.6.1"
val catsEffectV = "3.5.0"
val fs2V = "3.7.0"
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"
val caseInsensitiveV = "1.4.0"

val munitV = "1.0.0-M7"
val munitCatsEffectV = "2.0.0-M3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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._
Expand Down Expand Up @@ -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] =
Expand Down