This is an automated email from the ASF dual-hosted git repository.
exceptionfactory pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/main by this push:
new f577ba049e NIFI-14998 Bump Log4J2 to 2.25.2, Guava to 33.5.0-jre,
Mockito to 5.20.0, and others (#10333)
f577ba049e is described below
commit f577ba049ed147feb3f07eb52cc5aa62bddbc94c
Author: Pierre Villard <[email protected]>
AuthorDate: Mon Sep 22 20:20:03 2025 +0200
NIFI-14998 Bump Log4J2 to 2.25.2, Guava to 33.5.0-jre, Mockito to 5.20.0,
and others (#10333)
- Jetbrains Annotations from 24.1.0 to 26.0.2-1 -
https://github.com/JetBrains/java-annotations/releases/tag/26.0.2-1
- Eclipse JDT ECJ from 3.42.0 to 3.43.0 -
https://github.com/eclipse-jdt/eclipse.jdt.core
- Guava from 33.4.8-jre to 33.5.0-jre -
https://github.com/google/guava/releases/tag/v33.5.0
- Jakarta Mail API from 2.1.4 to 2.1.5 -
https://github.com/jakartaee/mail-api/releases/tag/2.1.5
- PostgreSQL from 42.7.7 to 42.7.8 -
https://github.com/pgjdbc/pgjdbc/releases/tag/REL42.7.8
- Error Prone Annotations from 2.33.0 to 2.42.0 -
https://github.com/google/error-prone/releases/tag/v2.42.0
- AWS SDK v2 from 2.33.12 to 2.34.0 -
https://github.com/aws/aws-sdk-java-v2/blob/master/CHANGELOG.md
- Log4J2 from 2.25.1 to 2.25.2 -
https://github.com/apache/logging-log4j2/releases/tag/rel%2F2.25.2
- Mockito from 5.19.0 to 5.20.0 -
https://github.com/mockito/mockito/releases/tag/v5.20.0
Signed-off-by: David Handermann <[email protected]>
---
minifi/minifi-bootstrap/pom.xml | 2 +-
nifi-commons/pom.xml | 3 +--
nifi-extension-bom/pom.xml | 2 +-
nifi-extension-bundles/nifi-aws-bundle/pom.xml | 2 +-
nifi-extension-bundles/nifi-azure-bundle/pom.xml | 2 +-
.../nifi-email-bundle/nifi-email-processors/pom.xml | 2 +-
.../nifi-evtx-bundle/nifi-evtx-processors/pom.xml | 3 +--
nifi-extension-bundles/nifi-gcp-bundle/pom.xml | 2 +-
.../nifi-graph-bundle/nifi-graph-test-clients/pom.xml | 2 +-
nifi-extension-bundles/nifi-hadoop-libraries-bundle/pom.xml | 2 +-
nifi-extension-bundles/nifi-opentelemetry-bundle/pom.xml | 2 +-
nifi-extension-bundles/nifi-protobuf-bundle/pom.xml | 4 ++--
nifi-extension-bundles/nifi-sql-reporting-bundle/pom.xml | 2 +-
.../nifi-standard-bundle/nifi-standard-processors/pom.xml | 2 +-
nifi-extension-bundles/nifi-standard-bundle/pom.xml | 4 ++--
.../nifi-standard-shared-bundle/nifi-standard-shared-bom/pom.xml | 4 ++--
nifi-framework-bundle/pom.xml | 2 +-
nifi-registry/nifi-registry-core/nifi-registry-test/pom.xml | 2 +-
nifi-registry/nifi-registry-core/pom.xml | 2 +-
pom.xml | 6 +++---
20 files changed, 25 insertions(+), 27 deletions(-)
diff --git a/minifi/minifi-bootstrap/pom.xml b/minifi/minifi-bootstrap/pom.xml
index 4a88cd8e39..caac8aee80 100644
--- a/minifi/minifi-bootstrap/pom.xml
+++ b/minifi/minifi-bootstrap/pom.xml
@@ -60,7 +60,7 @@ limitations under the License.
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
- <version>24.1.0</version>
+ <version>26.0.2-1</version>
</dependency>
<dependency>
<groupId>org.apache.nifi.minifi</groupId>
diff --git a/nifi-commons/pom.xml b/nifi-commons/pom.xml
index 48d049b065..3c6071ea3f 100644
--- a/nifi-commons/pom.xml
+++ b/nifi-commons/pom.xml
@@ -71,8 +71,7 @@
<module>nifi-calcite-utils</module>
</modules>
<properties>
- <gcp.sdk.version>26.38.0</gcp.sdk.version>
- <guava.version>33.4.8-jre</guava.version>
+ <guava.version>33.5.0-jre</guava.version>
</properties>
<dependencyManagement>
<dependencies>
diff --git a/nifi-extension-bom/pom.xml b/nifi-extension-bom/pom.xml
index d203a283c8..502fe203af 100644
--- a/nifi-extension-bom/pom.xml
+++ b/nifi-extension-bom/pom.xml
@@ -249,7 +249,7 @@
<dependency>
<groupId>org.eclipse.jdt</groupId>
<artifactId>ecj</artifactId>
- <version>3.42.0</version>
+ <version>3.43.0</version>
<scope>provided</scope>
</dependency>
<!-- Jetty EE10 Glassfish JSTL and deps -->
diff --git a/nifi-extension-bundles/nifi-aws-bundle/pom.xml
b/nifi-extension-bundles/nifi-aws-bundle/pom.xml
index 26d6407e2f..368e2ab6f8 100644
--- a/nifi-extension-bundles/nifi-aws-bundle/pom.xml
+++ b/nifi-extension-bundles/nifi-aws-bundle/pom.xml
@@ -47,7 +47,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
- <version>33.4.8-jre</version>
+ <version>33.5.0-jre</version>
</dependency>
<dependency>
<groupId>org.apache.nifi</groupId>
diff --git a/nifi-extension-bundles/nifi-azure-bundle/pom.xml
b/nifi-extension-bundles/nifi-azure-bundle/pom.xml
index 416edbb3e9..400965286b 100644
--- a/nifi-extension-bundles/nifi-azure-bundle/pom.xml
+++ b/nifi-extension-bundles/nifi-azure-bundle/pom.xml
@@ -56,7 +56,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
- <version>33.4.8-jre</version>
+ <version>33.5.0-jre</version>
</dependency>
<!-- Override Apache Qpid Proton J for Azure EventHubs to resolve
PROTON-2347 -->
<dependency>
diff --git
a/nifi-extension-bundles/nifi-email-bundle/nifi-email-processors/pom.xml
b/nifi-extension-bundles/nifi-email-bundle/nifi-email-processors/pom.xml
index dafc832eba..9d33b0f03f 100644
--- a/nifi-extension-bundles/nifi-email-bundle/nifi-email-processors/pom.xml
+++ b/nifi-extension-bundles/nifi-email-bundle/nifi-email-processors/pom.xml
@@ -48,7 +48,7 @@
<dependency>
<groupId>jakarta.mail</groupId>
<artifactId>jakarta.mail-api</artifactId>
- <version>2.1.4</version>
+ <version>2.1.5</version>
</dependency>
<dependency>
<groupId>jakarta.activation</groupId>
diff --git
a/nifi-extension-bundles/nifi-evtx-bundle/nifi-evtx-processors/pom.xml
b/nifi-extension-bundles/nifi-evtx-bundle/nifi-evtx-processors/pom.xml
index e169da019c..34548bc359 100644
--- a/nifi-extension-bundles/nifi-evtx-bundle/nifi-evtx-processors/pom.xml
+++ b/nifi-extension-bundles/nifi-evtx-bundle/nifi-evtx-processors/pom.xml
@@ -27,11 +27,10 @@
<packaging>jar</packaging>
<dependencies>
-
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
- <version>33.4.8-jre</version>
+ <version>33.5.0-jre</version>
</dependency>
<dependency>
<groupId>org.apache.nifi</groupId>
diff --git a/nifi-extension-bundles/nifi-gcp-bundle/pom.xml
b/nifi-extension-bundles/nifi-gcp-bundle/pom.xml
index 315547bb67..9e666f9ac7 100644
--- a/nifi-extension-bundles/nifi-gcp-bundle/pom.xml
+++ b/nifi-extension-bundles/nifi-gcp-bundle/pom.xml
@@ -41,7 +41,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
- <version>33.4.8-jre</version>
+ <version>33.5.0-jre</version>
</dependency>
</dependencies>
</dependencyManagement>
diff --git
a/nifi-extension-bundles/nifi-graph-bundle/nifi-graph-test-clients/pom.xml
b/nifi-extension-bundles/nifi-graph-bundle/nifi-graph-test-clients/pom.xml
index a986df28db..ed8e6350ec 100644
--- a/nifi-extension-bundles/nifi-graph-bundle/nifi-graph-test-clients/pom.xml
+++ b/nifi-extension-bundles/nifi-graph-bundle/nifi-graph-test-clients/pom.xml
@@ -26,7 +26,7 @@
<packaging>jar</packaging>
<properties>
<janusgraph.version>1.2.0-20250815-215833.1b92960</janusgraph.version>
- <guava.version>33.4.8-jre</guava.version>
+ <guava.version>33.5.0-jre</guava.version>
<amqp-client.version>5.26.0</amqp-client.version>
</properties>
<dependencyManagement>
diff --git a/nifi-extension-bundles/nifi-hadoop-libraries-bundle/pom.xml
b/nifi-extension-bundles/nifi-hadoop-libraries-bundle/pom.xml
index fc4676fb8f..0578d627e5 100644
--- a/nifi-extension-bundles/nifi-hadoop-libraries-bundle/pom.xml
+++ b/nifi-extension-bundles/nifi-hadoop-libraries-bundle/pom.xml
@@ -43,7 +43,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
- <version>33.4.8-jre</version>
+ <version>33.5.0-jre</version>
</dependency>
</dependencies>
</dependencyManagement>
diff --git a/nifi-extension-bundles/nifi-opentelemetry-bundle/pom.xml
b/nifi-extension-bundles/nifi-opentelemetry-bundle/pom.xml
index f766b8aee1..9ee23aace5 100644
--- a/nifi-extension-bundles/nifi-opentelemetry-bundle/pom.xml
+++ b/nifi-extension-bundles/nifi-opentelemetry-bundle/pom.xml
@@ -40,7 +40,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
- <version>33.4.8-jre</version>
+ <version>33.5.0-jre</version>
</dependency>
</dependencies>
</dependencyManagement>
diff --git a/nifi-extension-bundles/nifi-protobuf-bundle/pom.xml
b/nifi-extension-bundles/nifi-protobuf-bundle/pom.xml
index 04360c5cdd..6dd00c6734 100644
--- a/nifi-extension-bundles/nifi-protobuf-bundle/pom.xml
+++ b/nifi-extension-bundles/nifi-protobuf-bundle/pom.xml
@@ -37,9 +37,9 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
- <version>33.4.8-jre</version>
+ <version>33.5.0-jre</version>
</dependency>
</dependencies>
</dependencyManagement>
-</project>
\ No newline at end of file
+</project>
diff --git a/nifi-extension-bundles/nifi-sql-reporting-bundle/pom.xml
b/nifi-extension-bundles/nifi-sql-reporting-bundle/pom.xml
index 2a8687e2a5..214fb60bdc 100644
--- a/nifi-extension-bundles/nifi-sql-reporting-bundle/pom.xml
+++ b/nifi-extension-bundles/nifi-sql-reporting-bundle/pom.xml
@@ -23,7 +23,7 @@
<artifactId>nifi-sql-reporting-bundle</artifactId>
<packaging>pom</packaging>
<properties>
- <guava.version>33.4.8-jre</guava.version>
+ <guava.version>33.5.0-jre</guava.version>
</properties>
<modules>
<module>nifi-sql-reporting-tasks</module>
diff --git
a/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml
b/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml
index d1363628ac..6d71123d29 100644
---
a/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml
+++
b/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml
@@ -569,7 +569,7 @@
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
- <version>42.7.7</version>
+ <version>42.7.8</version>
<scope>test</scope>
</dependency>
</dependencies>
diff --git a/nifi-extension-bundles/nifi-standard-bundle/pom.xml
b/nifi-extension-bundles/nifi-standard-bundle/pom.xml
index 44833c16d7..4f0fb4470b 100644
--- a/nifi-extension-bundles/nifi-standard-bundle/pom.xml
+++ b/nifi-extension-bundles/nifi-standard-bundle/pom.xml
@@ -76,7 +76,7 @@
<dependency>
<groupId>jakarta.mail</groupId>
<artifactId>jakarta.mail-api</artifactId>
- <version>2.1.4</version>
+ <version>2.1.5</version>
</dependency>
<dependency>
<groupId>org.eclipse.angus</groupId>
@@ -225,7 +225,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
- <version>33.4.8-jre</version>
+ <version>33.5.0-jre</version>
</dependency>
<dependency>
<groupId>com.networknt</groupId>
diff --git
a/nifi-extension-bundles/nifi-standard-shared-bundle/nifi-standard-shared-bom/pom.xml
b/nifi-extension-bundles/nifi-standard-shared-bundle/nifi-standard-shared-bom/pom.xml
index 47da267029..47f590468a 100644
---
a/nifi-extension-bundles/nifi-standard-shared-bundle/nifi-standard-shared-bom/pom.xml
+++
b/nifi-extension-bundles/nifi-standard-shared-bundle/nifi-standard-shared-bom/pom.xml
@@ -127,7 +127,7 @@
<dependency>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_annotations</artifactId>
- <version>2.33.0</version>
+ <version>2.42.0</version>
<scope>provided</scope>
</dependency>
<!-- OkHttp -->
@@ -171,7 +171,7 @@
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
- <version>24.1.0</version>
+ <version>26.0.2-1</version>
<scope>provided</scope>
</dependency>
<dependency>
diff --git a/nifi-framework-bundle/pom.xml b/nifi-framework-bundle/pom.xml
index 32b6e8eede..69ac42f705 100644
--- a/nifi-framework-bundle/pom.xml
+++ b/nifi-framework-bundle/pom.xml
@@ -24,7 +24,7 @@
<packaging>pom</packaging>
<description>NiFi: Framework Bundle</description>
<properties>
- <guava.version>33.4.8-jre</guava.version>
+ <guava.version>33.5.0-jre</guava.version>
<org.opensaml.version>5.1.3</org.opensaml.version>
</properties>
<modules>
diff --git a/nifi-registry/nifi-registry-core/nifi-registry-test/pom.xml
b/nifi-registry/nifi-registry-core/nifi-registry-test/pom.xml
index bf26ad80df..791c03fc97 100644
--- a/nifi-registry/nifi-registry-core/nifi-registry-test/pom.xml
+++ b/nifi-registry/nifi-registry-core/nifi-registry-test/pom.xml
@@ -79,7 +79,7 @@
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
- <version>42.7.7</version>
+ <version>42.7.8</version>
</dependency>
</dependencies>
</project>
diff --git a/nifi-registry/nifi-registry-core/pom.xml
b/nifi-registry/nifi-registry-core/pom.xml
index 7592efbb38..2fc947bbd0 100644
--- a/nifi-registry/nifi-registry-core/pom.xml
+++ b/nifi-registry/nifi-registry-core/pom.xml
@@ -114,7 +114,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
- <version>33.4.8-jre</version>
+ <version>33.5.0-jre</version>
</dependency>
</dependencies>
</dependencyManagement>
diff --git a/pom.xml b/pom.xml
index 203aec3ac3..5f647dd36f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -110,7 +110,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<inceptionYear>2014</inceptionYear>
<com.amazonaws.version>1.12.791</com.amazonaws.version>
-
<software.amazon.awssdk.version>2.33.12</software.amazon.awssdk.version>
+ <software.amazon.awssdk.version>2.34.0</software.amazon.awssdk.version>
<gson.version>2.13.2</gson.version>
<io.fabric8.kubernetes.client.version>7.4.0</io.fabric8.kubernetes.client.version>
<kotlin.version>2.2.20</kotlin.version>
@@ -152,9 +152,9 @@
<gcs.version>2.1.5</gcs.version>
<aspectj.version>1.9.24</aspectj.version>
<jersey.bom.version>3.1.11</jersey.bom.version>
- <log4j2.version>2.25.1</log4j2.version>
+ <log4j2.version>2.25.2</log4j2.version>
<logback.version>1.5.18</logback.version>
- <mockito.version>5.19.0</mockito.version>
+ <mockito.version>5.20.0</mockito.version>
<junit.version>5.13.4</junit.version>
<netty.3.version>3.10.6.Final</netty.3.version>
<snakeyaml.version>2.5</snakeyaml.version>