Skip to content

Commit 5c4f643

Browse files
jakubjanecekmergify[bot]
authored andcommitted
build: Downgrade doobie to 0.7.x because of compatibility with http4s 0.20.x (#57)
1 parent 5697873 commit 5c4f643

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doobie-hikari/src/main/scala/com/avast/sst/doobie/DoobieHikariModule.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ object DoobieHikariModule {
2626
)(implicit cs: ContextShift[F]): Resource[F, HikariTransactor[F]] = {
2727
for {
2828
hikariConfig <- Resource.liftF(makeHikariConfig(config, metricsTrackerFactory))
29-
transactor <- HikariTransactor.fromHikariConfig(hikariConfig, boundedConnectExecutionContext, blocker)
29+
transactor <- HikariTransactor.fromHikariConfig(hikariConfig, boundedConnectExecutionContext, blocker.blockingContext)
3030
} yield transactor
3131
}
3232

project/Dependencies.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ object Dependencies {
3030

3131
object Versions {
3232

33-
val doobie = "0.8.4"
33+
val doobie = "0.7.1"
3434
val http4s = "0.20.11"
3535
val micrometer = "1.3.0"
3636
val silencer = "1.4.4"

0 commit comments

Comments
 (0)