From b69f601b9c26c8b4f17398d3c26d67991c330800 Mon Sep 17 00:00:00 2001 From: "zio-scala-steward[bot]" <145262613+zio-scala-steward[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 15:20:06 +0100 Subject: [PATCH] Update postgresql to 42.7.0 (#2960) Co-authored-by: zio-scala-steward[bot] <145262613+zio-scala-steward[bot]@users.noreply.github.com> --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 0f8f8ec849..e2ab884f67 100644 --- a/build.sbt +++ b/build.sbt @@ -463,7 +463,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.6.0" % "provided", + "org.postgresql" % "postgresql" % "42.7.0" % "provided", "dev.zio" %% "zio-json" % "0.6.2" ), Test / testGrouping := { @@ -585,7 +585,7 @@ lazy val jdbcTestingLibraries = Seq( "com.zaxxer" % "HikariCP" % "5.1.0" exclude ("org.slf4j", "*"), "com.mysql" % "mysql-connector-j" % "8.2.0" % Test, "com.h2database" % "h2" % "2.2.224" % Test, - "org.postgresql" % "postgresql" % "42.6.0" % Test, + "org.postgresql" % "postgresql" % "42.7.0" % Test, "org.xerial" % "sqlite-jdbc" % "3.42.0.1" % Test, "com.microsoft.sqlserver" % "mssql-jdbc" % "7.4.1.jre11" % Test, "com.oracle.ojdbc" % "ojdbc8" % "19.3.0.0" % Test,