Skip to content

Commit

Permalink
Update doobie-core, doobie-postgres to 1.0.0-RC5 (#388)
Browse files Browse the repository at this point in the history
* Update doobie-core, doobie-postgres to 1.0.0-RC5

* Fix CI

---------

Co-authored-by: zio-scala-steward[bot] <145262613+zio-scala-steward[bot]@users.noreply.github.com>
Co-authored-by: jules Ivanic <jules.ivanic@gmail.com>
  • Loading branch information
zio-scala-steward[bot] and guizmaii committed Mar 14, 2024
1 parent 6a0fa9e commit 9beb2ca
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ lazy val `quill-doobie` =
.settings(jdbcTestingSettings: _*)
.settings(
libraryDependencies ++= Seq(
"org.tpolecat" %% "doobie-core" % "1.0.0-RC2",
"org.tpolecat" %% "doobie-postgres" % "1.0.0-RC2" % Test
"org.tpolecat" %% "doobie-core" % "1.0.0-RC5",
"org.tpolecat" %% "doobie-postgres" % "1.0.0-RC5" % Test
)
)
.dependsOn(`quill-jdbc` % "compile->compile;test->test")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ class PeopleDoobieReturningSpec extends PeopleReturningSpec {
"org.postgresql.Driver",
s"jdbc:postgresql://${System.getenv("POSTGRES_HOST")}:${System.getenv("POSTGRES_PORT")}/quill_test",
"postgres",
System.getenv("POSTGRES_PASSWORD")
System.getenv("POSTGRES_PASSWORD"),
None
),
HC.commit
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ class PostgresDoobieContextSuite extends AnyFreeSpec with Matchers {
"org.postgresql.Driver",
s"jdbc:postgresql://${System.getenv("POSTGRES_HOST")}:${System.getenv("POSTGRES_PORT")}/doobie_test",
"postgres",
System.getenv("POSTGRES_PASSWORD")
System.getenv("POSTGRES_PASSWORD"),
None
),
HC.rollback,
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ class Issue1067 extends AnyFreeSpec with Matchers {
"org.postgresql.Driver",
s"jdbc:postgresql://${System.getenv("POSTGRES_HOST")}:${System.getenv("POSTGRES_PORT")}/doobie_test",
"postgres",
System.getenv("POSTGRES_PASSWORD")
System.getenv("POSTGRES_PASSWORD"),
None
)

val dc = new DoobieContext.Postgres(Literal)
Expand Down

0 comments on commit 9beb2ca

Please sign in to comment.