From cd567954c080819082fab3e097f1078c1d0ce4de Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 26 Nov 2022 21:34:58 +0000 Subject: [PATCH] Update postgresql to 42.4.3 --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index d7fd0930a..cf2d23a31 100644 --- a/build.sbt +++ b/build.sbt @@ -117,7 +117,7 @@ lazy val jdbc = project libraryDependencies ++= Seq( "dev.zio" %% "zio-test" % zioVersion % Test, "dev.zio" %% "zio-test-sbt" % zioVersion % Test, - "org.postgresql" % "postgresql" % "42.4.2" % Test, + "org.postgresql" % "postgresql" % "42.4.3" % Test, "com.dimafeng" %% "testcontainers-scala-postgresql" % testcontainersScalaVersion % Test ) ) @@ -198,7 +198,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.4.2" % Compile, + "org.postgresql" % "postgresql" % "42.4.3" % Compile, "com.dimafeng" %% "testcontainers-scala-postgresql" % testcontainersScalaVersion % Test, "ch.qos.logback" % "logback-classic" % logbackVersion % Test )