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

Upgrade dependencies #991

Merged
merged 4 commits into from
Aug 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

package zio.redis

import sttp.capabilities.WebSockets
import sttp.capabilities.zio.ZioStreams
import sttp.client3.SttpBackend
import zio.Task

Expand All @@ -26,5 +24,5 @@ package object example {
type Login = Login.Type
type Owner = Owner.Type
type Name = Name.Type
type Sttp = SttpBackend[Task, ZioStreams with WebSockets]
type Sttp = SttpBackend[Task, Any]
}
6 changes: 3 additions & 3 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ object Dependencies {
private object Versions {
val CatsEffect = "3.5.4"
val EmbeddedRedis = "0.6"
val Redis4Cats = "1.6.0"
val Redis4Cats = "1.7.1"
val Sttp = "3.9.8"
val TlsChannel = "0.9.1"
val ZHttp = "2.0.0-RC11"
val ZioConfig = "4.0.2"
val ZioJson = "0.6.2"
val ZioSchema = "1.2.2"
val ZioJson = "0.7.2"
val ZioSchema = "1.4.1"
val ZioTestContainers = "0.5.0"
}

Expand Down