From 852ff9ed16ec34f3e646de4756fd5a13c713f4ab Mon Sep 17 00:00:00 2001 From: "zio-scala-steward[bot]" <145262613+zio-scala-steward[bot]@users.noreply.github.com> Date: Tue, 10 Sep 2024 14:02:04 +0100 Subject: [PATCH] Update postgresql to 42.7.4 (#3077) 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 9bb76a39e..18dcc5eec 100644 --- a/build.sbt +++ b/build.sbt @@ -422,7 +422,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.3" % "provided", + "org.postgresql" % "postgresql" % "42.7.4" % "provided", "dev.zio" %% "zio-json" % "0.7.3" ), Test / testGrouping := { @@ -534,7 +534,7 @@ lazy val jdbcTestingLibraries = Seq( "com.zaxxer" % "HikariCP" % "5.1.0" exclude ("org.slf4j", "*"), "com.mysql" % "mysql-connector-j" % "9.0.0" % Test, "com.h2database" % "h2" % "2.3.230" % Test, - "org.postgresql" % "postgresql" % "42.7.3" % Test, + "org.postgresql" % "postgresql" % "42.7.4" % Test, "org.xerial" % "sqlite-jdbc" % "3.46.0.1" % Test, "com.microsoft.sqlserver" % "mssql-jdbc" % "7.4.1.jre11" % Test, "com.oracle.ojdbc" % "ojdbc8" % "19.3.0.0" % Test,