From 6753fcd626b7c6c38d947e1d116ae5455d506629 Mon Sep 17 00:00:00 2001 From: "zio-scala-steward[bot]" <145262613+zio-scala-steward[bot]@users.noreply.github.com> Date: Thu, 14 Mar 2024 11:15:09 +0800 Subject: [PATCH] Update postgresql to 42.7.2 (#415) Co-authored-by: zio-scala-steward[bot] <145262613+zio-scala-steward[bot]@users.noreply.github.com> Co-authored-by: Jules Ivanic --- build.sbt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index c8655b0c..bfd3c256 100644 --- a/build.sbt +++ b/build.sbt @@ -178,7 +178,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.0" % Test, + "org.postgresql" % "postgresql" % "42.7.2" % Test, "com.softwaremill.sttp.tapir" %% "tapir-json-zio" % "1.8.5" % Test ) ) @@ -203,7 +203,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.0" % "provided", + "org.postgresql" % "postgresql" % "42.7.2" % "provided", "dev.zio" %% "zio-json" % "0.6.2" ), Test / runMain / fork := true, @@ -270,7 +270,7 @@ lazy val jdbcTestingLibraries = Seq( "com.mysql" % "mysql-connector-j" % "8.2.0" % Test, "com.h2database" % "h2" % "2.2.224" % Test, // In 42.2.18 error happens: PSQLException: conversion to class java.time.OffsetTime from timetz not supported - "org.postgresql" % "postgresql" % "42.7.0" % Test, + "org.postgresql" % "postgresql" % "42.7.2" % Test, "org.xerial" % "sqlite-jdbc" % "3.42.0.1" % 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,