Skip to content
Closed
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
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ lazy val `quill-caliban` =
// Don't want to make this dependant on zio-test for the testing code so importing this here separately
"org.scalatest" %% "scalatest" % scalatestVersion % Test,
"org.scalatest" %% "scalatest-mustmatchers" % scalatestVersion % Test,
"org.postgresql" % "postgresql" % "42.7.10" % Test,
"org.postgresql" % "postgresql" % "42.7.12" % Test,
)
)
.dependsOn(`quill-jdbc-zio` % "compile->compile")
Expand All @@ -204,7 +204,7 @@ lazy val `quill-jdbc-zio` =
.settings(
libraryDependencies ++= Seq(
// Needed for PGObject in JsonExtensions but not necessary if user is not using postgres
"org.postgresql" % "postgresql" % "42.7.10" % "provided",
"org.postgresql" % "postgresql" % "42.7.12" % "provided",
"dev.zio" %% "zio-json" % "0.8.0"
),
Test / runMain / fork := true,
Expand Down Expand Up @@ -271,7 +271,7 @@ lazy val jdbcTestingLibraries = Seq(
"com.mysql" % "mysql-connector-j" % "9.6.0" % Test,
"com.h2database" % "h2" % "2.4.240" % Test,
// In 42.2.18 error happens: PSQLException: conversion to class java.time.OffsetTime from timetz not supported
"org.postgresql" % "postgresql" % "42.7.10" % Test,
"org.postgresql" % "postgresql" % "42.7.12" % Test,
"org.xerial" % "sqlite-jdbc" % "3.51.2.0" % Test,
// In 7.1.1-jre8-preview error happens: The conversion to class java.time.OffsetDateTime is unsupported.
"com.microsoft.sqlserver" % "mssql-jdbc" % "7.4.1.jre11" % Test,
Expand Down
Loading