Skip to content

Commit

Permalink
Common: bump snowplow-badrows to 2.1.0 (close #199)
Browse files Browse the repository at this point in the history
  • Loading branch information
chuwy committed Oct 30, 2020
1 parent 439b737 commit d160ac0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@
package com.snowplowanalytics.snowplow.rdbloader.dsl

import cats.implicits._
import cats.effect.{Clock, Sync}

import cats.effect.{Sync, Clock, Async}
import cats.effect.concurrent.Ref

import com.snowplowanalytics.iglu.client.Client

import com.snowplowanalytics.snowplow.rdbloader.config.CliConfig
import com.snowplowanalytics.snowplow.rdbloader.utils.S3

Expand All @@ -31,7 +34,7 @@ class RealWorld[F[_]](cache: Cache[F], logging: Logging[F], iglu: Iglu[F], aws:
}

object RealWorld {
def initialize[F[_] : Sync : Clock](config: CliConfig): F[RealWorld[F]] =
def initialize[F[_] : Async: Clock](config: CliConfig): F[RealWorld[F]] =
for {
cacheMap <- Ref.of[F, Map[String, Option[S3.Key]]](Map.empty)
messages <- Ref.of[F, List[String]](List.empty[String])
Expand Down
14 changes: 7 additions & 7 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ object Dependencies {
object V {
// Scala (Loader)
val decline = "0.6.2"
val igluClient = "0.6.2"
val igluCore = "0.5.1"
val badrows = "0.1.0"
val igluClient = "1.0.2"
val igluCore = "1.0.0"
val badrows = "2.1.0"
val scalaTracker = "0.6.1"
val circeYaml = "0.9.0"
val circe = "0.11.1"
val circeOptics = "0.11.0"
val cats = "1.6.1"
val circe = "0.13.0"
val circeOptics = "0.13.0"
val cats = "2.2.0"
val manifest = "0.2.0"
val fs2 = "1.0.4"
val fs2 = "2.4.4"

// Scala (Shredder)
val spark = "3.0.1"
Expand Down

0 comments on commit d160ac0

Please sign in to comment.