Skip to content

Commit d4908f8

Browse files
committed
Upgrade/downgrade dependencies to ensure none are incompatible
1 parent fc20f55 commit d4908f8

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

build.sbt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ val Scala_212 = "2.12.8"
22
val Scala_211 = "2.11.11"
33

44
val catsEffectVersion = "1.4.0"
5-
val catsTaglessVersion = "0.9"
5+
val catsTaglessVersion = "0.5"
66
val catsParVersion = "0.2.1"
77
val doobieVersion = "0.7.0"
88
val catsVersion = "1.6.1"
@@ -11,12 +11,12 @@ val scalatestVersion = "3.0.8"
1111
val simulacrumVersion = "0.19.0"
1212
val scalacacheVersion = "0.28.0"
1313
val macroParadiseVersion = "2.1.1"
14-
val kindProjectorVersion = "0.9.10"
14+
val kindProjectorVersion = "0.10.3"
1515
val refinedVersion = "0.9.9"
16-
val fs2RedisVersion = "0.7.0"
16+
val fs2RedisVersion = "0.8.2"
1717
val h2Version = "1.4.199"
1818
val log4CatsVersion = "0.3.0"
19-
val http4sVersion = "0.20.9"
19+
val http4sVersion = "0.20.10"
2020
val circeVersion = "0.11.1"
2121
val sttpVersion = "1.6.4"
2222

@@ -37,7 +37,7 @@ inThisBuild(
3737

3838
val compilerPlugins = List(
3939
compilerPlugin("org.scalamacros" % "paradise" % macroParadiseVersion).cross(CrossVersion.full),
40-
compilerPlugin("org.spire-math" %% "kind-projector" % kindProjectorVersion)
40+
compilerPlugin("org.typelevel" %% "kind-projector" % kindProjectorVersion)
4141
)
4242

4343
val commonSettings = Seq(
@@ -96,7 +96,7 @@ val redis = module("redis")
9696
.settings(
9797
crossScalaVersions := List(Scala_212),
9898
libraryDependencies ++= Seq(
99-
"com.github.gvolpe" %% "fs2-redis-effects" % fs2RedisVersion
99+
"dev.profunktor" %% "redis4cats-effects" % fs2RedisVersion
100100
)
101101
)
102102
.dependsOn(core)

microsite/src/main/tut/guide/fs2-redis.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
layout: docs
3-
title: fs2-redis
3+
title: redis4cats
44
---
55

6-
sup has an fs2-redis module:
6+
sup has a redis4cats module:
77

88
```tut:passthrough
99
sup.microsite.sbtDependencies("redis")
@@ -21,7 +21,7 @@ import sup._, sup.modules.redis._
2121
You can build a connection check out of a `Ping` algebra (included in `RedisCommands`). Let's create one first:
2222

2323
```tut:book
24-
import com.github.gvolpe.fs2redis.algebra.Ping, cats.effect._
24+
import dev.profunktor.redis4cats.algebra.Ping, cats.effect._
2525
2626
implicit def ping: Ping[IO] = ???
2727
```

modules/redis/src/main/scala/sup/modules/redis.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ package sup.modules
22

33
import cats.implicits._
44
import cats.{ApplicativeError, Id}
5-
import com.github.gvolpe.fs2redis.algebra.Ping
5+
import dev.profunktor.redis4cats.algebra.Ping
66
import sup.{Health, HealthCheck, HealthResult}
77

88
object redis {
99

1010
/**
11-
* Creates a healthcheck for an fs2-redis connection. If the check fails, the result is [[Health.Sick]].
11+
* Creates a healthcheck for a redis4cats connection. If the check fails, the result is [[Health.Sick]].
1212
* */
1313
def pingCheck[F[_], E](implicit cmd: Ping[F], F: ApplicativeError[F, E]): HealthCheck[F, Id] =
1414
HealthCheck.liftF {

modules/redis/src/test/scala/sup/RedisCheckSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package sup
22

33
import cats.implicits._
4-
import com.github.gvolpe.fs2redis.algebra.Ping
4+
import dev.profunktor.redis4cats.algebra.Ping
55
import org.scalatest.{Matchers, WordSpec}
66
import sup.modules.redis
77

0 commit comments

Comments
 (0)