Skip to content

Commit

Permalink
Transitively update pureconfig to 0.17.3 (#110)
Browse files Browse the repository at this point in the history
Co-authored-by: Ilya Surkov <isurkov@evolution.com>
  • Loading branch information
i-surkov and Ilya Surkov committed Jun 2, 2023
1 parent 87b9619 commit 9153c55
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ object Dependencies {
val scalatest = "org.scalatest" %% "scalatest" % "3.2.3"
val `future-helper` = "com.evolutiongaming" %% "future-helper" % "1.0.6"
val `cassandra-launcher` = "com.evolutiongaming" %% "cassandra-launcher" % "0.0.4"
val scassandra = "com.evolutiongaming" %% "scassandra" % "3.2.1"
val scassandra = "com.evolutiongaming" %% "scassandra" % "3.5.0"

object Logback {
private val version = "1.2.3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class CassandraSyncSpec extends AnyWordSpec with BeforeAndAfterAll with Matchers
val cassandraSync = for {
session <- cluster.connect
cassandraSync = CassandraSync.of(session, keyspace = "test", autoCreate = AutoCreate.KeyspaceAndTable.Default)
cassandraSync <- Resource.liftF(cassandraSync)
cassandraSync <- Resource.eval(cassandraSync)
} yield {
val toFuture = new FunctionK[IO, Future] {
def apply[A](fa: IO[A]) = fa.toFuture
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ object IOSuite {
implicit val concurrentIO: Concurrent[IO] = IO.ioConcurrentEffect
implicit val timerIO: Timer[IO] = IO.timer(executor)
implicit val parallelIO: Parallel[IO] = IO.ioParallel
implicit val fromGFutureIO: FromGFuture[IO] = FromGFuture.lift[IO]
implicit val fromGFutureIO: FromGFuture[IO] = FromGFuture.lift1[IO]

def runIO[A](io: IO[A], timeout: FiniteDuration = Timeout): Future[Succeeded.type] = {
io.timeout(timeout).as(Succeeded).unsafeToFuture()
Expand Down

0 comments on commit 9153c55

Please sign in to comment.