This is an automated email from the ASF dual-hosted git repository.
aglinxinyuan pushed a commit to branch dependabot/sbt/sbt-patch-13c662c86b
in repository https://gitbox.apache.org/repos/asf/texera.git
The following commit(s) were added to
refs/heads/dependabot/sbt/sbt-patch-13c662c86b by this push:
new 9056542ef8 fix(deps): keep codegen pgjdbc at 42.7.4, sync amber
LICENSE-binary to 42.7.13
9056542ef8 is described below
commit 9056542ef88bf1cd5a9d931312af4e49405a19e5
Author: probe <probe@x>
AuthorDate: Tue Jul 7 16:25:27 2026 -0700
fix(deps): keep codegen pgjdbc at 42.7.4, sync amber LICENSE-binary to
42.7.13
Dependabot also bumped the jOOQ code-generation driver in
project/plugins.sbt
to 42.7.13, past the comment pinning it to 42.7.4. pgjdbc >= 42.7.5 returns
JDBC-spec uppercase metadata labels (KEY_SEQ) that jOOQ 3.16.23's
PostgresDatabase.loadForeignKeys can't read, breaking codegen and every
Scala
build. Revert that driver to 42.7.4; the runtime bump in amber/build.sbt to
42.7.13 is fine. Sync amber/LICENSE-binary-java (postgresql is a direct
amber
dep) to 42.7.13 so the bundled-jar license check passes.
---
amber/LICENSE-binary-java | 2 +-
project/plugins.sbt | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/amber/LICENSE-binary-java b/amber/LICENSE-binary-java
index e81bd83408..b3be2ebe4c 100644
--- a/amber/LICENSE-binary-java
+++ b/amber/LICENSE-binary-java
@@ -611,7 +611,7 @@ Scala/Java jars:
- com.github.marianobarrios.lbmq-0.6.0.jar
- dnsjava.dnsjava-3.6.1.jar
- org.codehaus.woodstox.stax2-api-4.2.1.jar
- - org.postgresql.postgresql-42.7.12.jar
+ - org.postgresql.postgresql-42.7.13.jar
--------------------------------------------------------------------------------
Dependencies under the ISC License
diff --git a/project/plugins.sbt b/project/plugins.sbt
index 36cac6ae85..a27a258fe7 100644
--- a/project/plugins.sbt
+++ b/project/plugins.sbt
@@ -40,5 +40,5 @@ libraryDependencies ++= Seq(
// PostgresDatabase.loadForeignKeys can't read (it looks up lowercase
key_seq),
// breaking JOOQ code generation. Fixed only in jOOQ 3.20+
(jOOQ/jOOQ#17873); until
// the codegen jOOQ is upgraded, keep this driver at the last compatible
release.
- "org.postgresql" % "postgresql" % "42.7.13"
+ "org.postgresql" % "postgresql" % "42.7.4"
)