This is an automated email from the ASF dual-hosted git repository.
pdallig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/master by this push:
new 8ca6e57f27 [MINOR] postgresql 42.7.7
8ca6e57f27 is described below
commit 8ca6e57f27324b1e74fc78bea5cabd176b607408
Author: PJ Fanning <[email protected]>
AuthorDate: Thu Jul 3 16:16:51 2025 +0100
[MINOR] postgresql 42.7.7
Our current version does not have a CVE but a new CVE applies to newer
versions but latest version fixes that.
https://mvnrepository.com/artifact/org.postgresql/postgresql
Seems best to upgrade to latest version.
Closes #4954 from pjfanning/postgres.
Signed-off-by: Philipp Dallig <[email protected]>
---
jdbc/pom.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/jdbc/pom.xml b/jdbc/pom.xml
index 339e938496..1b2dae812b 100644
--- a/jdbc/pom.xml
+++ b/jdbc/pom.xml
@@ -34,7 +34,7 @@
<properties>
<!--library versions-->
<interpreter.name>jdbc</interpreter.name>
- <postgresql.version>42.7.2</postgresql.version>
+ <postgresql.version>42.7.7</postgresql.version>
<h2.version>2.2.220</h2.version>
<commons.dbcp2.version>2.0.1</commons.dbcp2.version>
<hive3.version>3.1.3</hive3.version>
@@ -46,7 +46,7 @@
<dependencies>
- <dependency>
+ <dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>${postgresql.version}</version>