Skip to content

Commit daced9a

Browse files
committed
IC-40 Updates doobie version
1 parent 638fd38 commit daced9a

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed

build.sbt

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,22 @@ lazy val root = (project in file("."))
1818
testFrameworks += new TestFramework("weaver.framework.CatsEffect"),
1919
scalafmtOnCompile := true,
2020
libraryDependencies ++= Seq(
21-
"co.fs2" %% "fs2-core" % "2.5.3",
22-
"co.fs2" %% "fs2-io" % "2.5.3",
21+
"co.fs2" %% "fs2-core" % "2.5.5",
22+
"co.fs2" %% "fs2-io" % "2.5.5",
23+
"com.google.guava" % "guava" % "30.0-jre",
2324
"com.propensive" %% "magnolia" % "0.17.0",
2425
"de.siegmar" % "fastcsv" % "1.0.3",
2526
"org.mapdb" % "mapdb" % "3.0.8",
26-
"org.tpolecat" %% "doobie-core" % "0.9.0",
27-
"org.tpolecat" %% "doobie-hikari" % "0.9.0",
28-
"com.google.guava" % "guava" % "30.0-jre",
29-
"com.disneystreaming" %% "weaver-core" % "0.6.2" % Test,
27+
"org.tpolecat" %% "doobie-core" % "0.12.1",
28+
"org.tpolecat" %% "doobie-hikari" % "0.12.1",
3029
"com.disneystreaming" %% "weaver-cats" % "0.6.2" % Test,
31-
"org.tpolecat" %% "doobie-h2" % "0.9.0" % Test
32-
)
30+
"com.disneystreaming" %% "weaver-core" % "0.6.2" % Test,
31+
"org.tpolecat" %% "doobie-h2" % "0.12.1" % Test
32+
),
33+
/*
34+
https://github.com/sbt/sbt/issues/3249#issuecomment-534757714
35+
https://github.com/sbt/sbt/issues/3306
36+
https://www.scala-sbt.org/1.x/docs/In-Process-Classloaders.html#In+process+class+loading
37+
*/
38+
Test / classLoaderLayeringStrategy := ClassLoaderLayeringStrategy.Flat
3339
)

src/test/scala/com/intenthq/action_processor/integrations/SQLFeedSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import doobie.implicits.{toConnectionIOOps, toSqlInterpolator}
1515
import doobie.util.query.Query0
1616
import doobie.util.transactor.Transactor
1717
import doobie.util.update.Update
18-
import doobie.implicits.javatime._
18+
import doobie.implicits.javatimedrivernative._
1919
import weaver.IOSuite
2020
import scala.concurrent.{ExecutionContext, ExecutionContextExecutor}
2121

0 commit comments

Comments
 (0)