Skip to content
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
2 changes: 1 addition & 1 deletion modules/common/js/src/main/scala/h4sm/common/AjaxAPI.scala
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package h4sm.common

import cats.implicits._
import cats.syntax.all._

import io.circe.{Decoder, Encoder}
import io.circe.syntax._
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package h4sm.db.config

import scala.util.Try
import cats.effect.Sync
import cats.implicits._
import cats.syntax.all._
import javax.sql.DataSource
import org.flywaydb.core.Flyway
import org.flywaydb.core.api.FlywayException
Expand Down
2 changes: 1 addition & 1 deletion modules/db/jvm/src/main/scala/h4sm/db/config/package.scala
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package h4sm.db

import cats.{Applicative, ApplicativeError, Functor}
import cats.implicits._
import cats.syntax.all._
import cats.mtl.{ApplicativeAsk, DefaultApplicativeAsk}
import io.circe.Decoder
import io.circe.config.parser
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
package h4sm.featurerequests.comm

import cats.implicits._
import h4sm.featurerequests.comm.domain.features.FeatureRequest
import h4sm.testutil.arbitraries._
import org.scalacheck.Arbitrary
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package h4sm.testutil

import cats.implicits._
import cats.syntax.all._
import java.time.Instant
import org.scalacheck.{Arbitrary, Gen}
import org.scalacheck.cats.implicits._
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package testutil.infrastructure.endpoints

import org.http4s._
import cats.effect.Sync
import cats.implicits._
import cats.syntax.all._

sealed abstract class ClientError extends Throwable with Product with Serializable
final case class UriError(message: String) extends ClientError
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package testutil
import java.sql.DriverManager

import cats.effect.{Async, ContextShift, Sync}
import cats.implicits._
import cats.syntax.all._
import doobie.util.transactor.Transactor
import h4sm.db.config.DatabaseConfig
import io.circe.config.parser
Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ object dependencies {
val apacheLang3 = "3.11"
val bcrypt = "3.1"
val betterMonadicFor = "0.3.1"
val cats = "2.1.1"
val cats = "2.6.1"
val catsScalacheck = "0.2.0.1"
val catsMtl = "0.7.1"
val catsEffect = "2.3.0"
Expand Down