From a66b310a6035f7ea7ce21dc0497485e8a1dc19d6 Mon Sep 17 00:00:00 2001 From: xerial-bot Date: Tue, 20 Feb 2024 09:08:17 -0800 Subject: [PATCH] Update postgresql to 42.7.2 (#3393) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## About this PR 📦 Updates [org.postgresql:postgresql](https://github.com/pgjdbc/pgjdbc) from `42.7.1` to `42.7.2` 📜 [Changelog](https://github.com/pgjdbc/pgjdbc/blob/master/CHANGELOG.md) ## Usage ✅ **Please merge!** I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd like to skip this version, you can just close this PR. If you have any feedback, just mention me in the comments below. Configure Scala Steward for your repository with a [`.scala-steward.conf`](https://github.com/scala-steward-org/scala-steward/blob/b83aae55d9dd000548c3b3c9b63d79636e7b3c8b/docs/repo-specific-configuration.md) file. _Have a fantastic day writing Scala!_
âš™ Adjust future updates Add this to your `.scala-steward.conf` file to ignore future updates of this dependency: ``` updates.ignore = [ { groupId = "org.postgresql", artifactId = "postgresql" } ] ``` Or, add this to slow down future updates of this dependency: ``` dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "org.postgresql", artifactId = "postgresql" } }] ```
labels: library-update --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 1bb3f7572..023ab450a 100644 --- a/build.sbt +++ b/build.sbt @@ -642,7 +642,7 @@ lazy val jdbc = libraryDependencies ++= Seq( "org.xerial" % "sqlite-jdbc" % SQLITE_JDBC_VERSION, "org.duckdb" % "duckdb_jdbc" % "0.10.0", - "org.postgresql" % "postgresql" % "42.7.1", + "org.postgresql" % "postgresql" % "42.7.2", "com.zaxxer" % "HikariCP" % "5.1.0", // For routing slf4j log to airframe-log "org.slf4j" % "slf4j-jdk14" % SLF4J_VERSION