From cd28bf9f90b76839d13f7d3510a21f134ec5f1ba Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 31 Mar 2024 04:38:55 +0000 Subject: [PATCH] Update postgresql to 42.7.3 --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index fb32fb8f..72b5ac28 100644 --- a/build.sbt +++ b/build.sbt @@ -155,7 +155,7 @@ lazy val jdbc = project libraryDependencies ++= Seq( "dev.zio" %% "zio-test" % zioVersion % Test, "dev.zio" %% "zio-test-sbt" % zioVersion % Test, - "org.postgresql" % "postgresql" % "42.7.2" % Test, + "org.postgresql" % "postgresql" % "42.7.3" % Test, "com.dimafeng" %% "testcontainers-scala-postgresql" % testcontainersScalaVersion % Test ) ) @@ -236,7 +236,7 @@ lazy val postgres = project "org.testcontainers" % "database-commons" % testcontainersVersion % Test, "org.testcontainers" % "postgresql" % testcontainersVersion % Test, "org.testcontainers" % "jdbc" % testcontainersVersion % Test, - "org.postgresql" % "postgresql" % "42.7.2" % Compile, + "org.postgresql" % "postgresql" % "42.7.3" % Compile, "com.dimafeng" %% "testcontainers-scala-postgresql" % testcontainersScalaVersion % Test, "ch.qos.logback" % "logback-classic" % logbackVersion % Test )