From b3e3468da08e6c664db6482856f130eadd5686be Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 18 Aug 2022 19:51:47 +0000 Subject: [PATCH] Update postgresql to 42.4.2 --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 2b81d0e3b..079abeb63 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.1" % Test, + "org.postgresql" % "postgresql" % "42.4.2" % Test, "com.dimafeng" %% "testcontainers-scala-postgresql" % testcontainersScalaVersion % Test ) ) @@ -181,7 +181,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.1" % Compile, + "org.postgresql" % "postgresql" % "42.4.2" % Compile, "com.dimafeng" %% "testcontainers-scala-postgresql" % testcontainersScalaVersion % Test, "ch.qos.logback" % "logback-classic" % logbackVersion % Test )