From 4da74c99f72778e06bdce3963fe552839a825e56 Mon Sep 17 00:00:00 2001 From: xerial-bot Date: Tue, 5 Nov 2024 14:54:02 -0800 Subject: [PATCH] Update duckdb_jdbc to 1.1.3 (#3715) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## About this PR 📦 Updates org.duckdb:duckdb_jdbc from `1.1.2` to `1.1.3` ## 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/7ec418cd5441d449f037bca6d34326534c07a5dd/docs/repo-specific-configuration.md) file. _Have a fantastic day writing Scala!_
🔍 Files still referring to the old version number The following files still refer to the old version number (1.1.2). You might want to review and update them manually. ``` airspec/src/test/scala/examples/AsyncTest.scala build.sbt docs/release-notes.md project/plugin.sbt sbt-airframe/src/sbt-test/sbt-airframe/generate-client/build.sbt sbt-airframe/src/sbt-test/sbt-airframe/rpc-netty/build.sbt ```
⚙ Adjust future updates Add this to your `.scala-steward.conf` file to ignore future updates of this dependency: ``` updates.ignore = [ { groupId = "org.duckdb", artifactId = "duckdb_jdbc" } ] ``` Or, add this to slow down future updates of this dependency: ``` dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "org.duckdb", artifactId = "duckdb_jdbc" } }] ```
labels: library-update --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index aca1487e1..be96cfb07 100644 --- a/build.sbt +++ b/build.sbt @@ -735,7 +735,7 @@ lazy val jdbc = description := "JDBC connection pool service", libraryDependencies ++= Seq( "org.xerial" % "sqlite-jdbc" % SQLITE_JDBC_VERSION, - "org.duckdb" % "duckdb_jdbc" % "1.1.2", + "org.duckdb" % "duckdb_jdbc" % "1.1.3", "org.postgresql" % "postgresql" % "42.7.4", "com.zaxxer" % "HikariCP" % "6.0.0", // For routing slf4j log to airframe-log