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

Update finatra-http-server, inject-app, ... to 22.3.0 #1995

Merged
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 project/Versions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ object Versions {
val swaggerUi = "4.9.1"
val upickle = "1.5.0"
val playJson = "2.9.2"
val finatra = "22.1.0"
val finatra = "22.3.0"
val catbird = "21.12.0"
val json4s = "4.0.4"
val sprayJson = "1.3.6"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package sttp.tapir.server.finatra.cats
import cats.effect.Async
import cats.effect.std.Dispatcher
import cats.~>
import com.twitter.inject.Logging
import com.twitter.util.Future
import sttp.monad.MonadError
import sttp.tapir.integ.cats.CatsMonadError
Expand Down Expand Up @@ -31,7 +30,7 @@ import scala.util.Try
import sttp.tapir.server.finatra.cats.conversions._
import sttp.tapir.server.model.{ServerResponse, ValuedEndpointOutput}

trait FinatraCatsServerInterpreter[F[_]] extends Logging {
trait FinatraCatsServerInterpreter[F[_]] {

implicit def fa: Async[F]

Expand Down