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 d17bc32b4eb NIFI-15339 - Bump Netty to 4.2.9.Final, jGit to 7.5.0, 
Excel Streaming Reader to 5.2.0, and others (#10641)
d17bc32b4eb is described below

commit d17bc32b4eb3b060cb2d5f2566b1c0ecc5a9fc17
Author: Pierre Villard <[email protected]>
AuthorDate: Mon Dec 15 16:09:32 2025 +0100

    NIFI-15339 - Bump Netty to 4.2.9.Final, jGit to 7.5.0, Excel Streaming 
Reader to 5.2.0, and others (#10641)
    
    - Google Drive API from v3-rev20251114-2.0.0 to v3-rev20251210-2.0.0 - 
https://github.com/googleapis/google-api-java-client-services/blob/main/clients/google-api-services-drive/v3/2.0.0/README.md
    - HiveMQ MQTT Client from 1.3.10 to 1.3.11 - 
https://github.com/hivemq/hivemq-mqtt-client/releases/tag/v1.3.11
    - Excel Streaming Reader from 5.1.2 to 5.2.0 - 
https://github.com/pjfanning/excel-streaming-reader/releases/tag/v5.2.0
    - Spring Data Redis from 4.0.0 to 4.0.1 - 
https://github.com/spring-projects/spring-data-redis/releases/tag/4.0.1
    - JSON Schema Validator from 2.0.0 to 2.0.1 - 
https://github.com/networknt/json-schema-validator/releases/tag/2.0.1
    - jGit from 7.4.0.202509020913-r to 7.5.0.202512021534-r - 
https://github.com/eclipse-jgit/jgit/releases/tag/v7.5.0.202512021534-r
    - AWS SDK BOM from 2.40.6 to 2.40.8 - 
https://github.com/aws/aws-sdk-java-v2/blob/master/CHANGELOG.md
    - Greenmail from 2.1.7 to 2.1.8 - 
https://github.com/greenmail-mail-test/greenmail/releases/tag/release-2.1.8
    - Localstack from 4.10.0 to 4.12.0 - 
https://github.com/localstack/localstack/releases/tag/v4.12.0
    
    Signed-off-by: David Handermann <[email protected]>
---
 .../java/org/apache/nifi/processors/aws/kinesis/ConsumeKinesisIT.java | 2 +-
 .../org/apache/nifi/processors/aws/util/LocalStackContainers.java     | 2 +-
 .../nifi-email-bundle/nifi-email-processors/pom.xml                   | 2 +-
 nifi-extension-bundles/nifi-gcp-bundle/nifi-gcp-processors/pom.xml    | 2 +-
 nifi-extension-bundles/nifi-mqtt-bundle/nifi-mqtt-processors/pom.xml  | 2 +-
 nifi-extension-bundles/nifi-poi-bundle/pom.xml                        | 2 +-
 nifi-extension-bundles/nifi-redis-bundle/pom.xml                      | 2 +-
 .../nifi-registry-bundle/nifi-registry-service/pom.xml                | 2 +-
 nifi-extension-bundles/nifi-standard-bundle/pom.xml                   | 2 +-
 nifi-registry/pom.xml                                                 | 2 +-
 pom.xml                                                               | 4 ++--
 11 files changed, 12 insertions(+), 12 deletions(-)

diff --git 
a/nifi-extension-bundles/nifi-aws-bundle/nifi-aws-kinesis/src/test/java/org/apache/nifi/processors/aws/kinesis/ConsumeKinesisIT.java
 
b/nifi-extension-bundles/nifi-aws-bundle/nifi-aws-kinesis/src/test/java/org/apache/nifi/processors/aws/kinesis/ConsumeKinesisIT.java
index daef96b94b1..ac353124e67 100644
--- 
a/nifi-extension-bundles/nifi-aws-bundle/nifi-aws-kinesis/src/test/java/org/apache/nifi/processors/aws/kinesis/ConsumeKinesisIT.java
+++ 
b/nifi-extension-bundles/nifi-aws-bundle/nifi-aws-kinesis/src/test/java/org/apache/nifi/processors/aws/kinesis/ConsumeKinesisIT.java
@@ -99,7 +99,7 @@ import static 
org.junit.jupiter.api.Timeout.ThreadMode.SEPARATE_THREAD;
 class ConsumeKinesisIT {
 
     private static final Logger logger = 
LoggerFactory.getLogger(ConsumeKinesisIT.class);
-    private static final DockerImageName LOCALSTACK_IMAGE = 
DockerImageName.parse("localstack/localstack:4.10.0");
+    private static final DockerImageName LOCALSTACK_IMAGE = 
DockerImageName.parse("localstack/localstack:4.12.0");
 
     private static final LocalStackContainer localstack = new 
LocalStackContainer(LOCALSTACK_IMAGE).withServices("kinesis", "dynamodb", 
"cloudwatch");
 
diff --git 
a/nifi-extension-bundles/nifi-aws-bundle/nifi-aws-processors/src/test/java/org/apache/nifi/processors/aws/util/LocalStackContainers.java
 
b/nifi-extension-bundles/nifi-aws-bundle/nifi-aws-processors/src/test/java/org/apache/nifi/processors/aws/util/LocalStackContainers.java
index 3ae49b4c823..99445af2921 100644
--- 
a/nifi-extension-bundles/nifi-aws-bundle/nifi-aws-processors/src/test/java/org/apache/nifi/processors/aws/util/LocalStackContainers.java
+++ 
b/nifi-extension-bundles/nifi-aws-bundle/nifi-aws-processors/src/test/java/org/apache/nifi/processors/aws/util/LocalStackContainers.java
@@ -21,7 +21,7 @@ import org.testcontainers.utility.DockerImageName;
 
 public class LocalStackContainers {
 
-    private static final DockerImageName localStackImageName = 
DockerImageName.parse("localstack/localstack:4.10.0");
+    private static final DockerImageName localStackImageName = 
DockerImageName.parse("localstack/localstack:4.12.0");
 
     public static LocalStackContainer newContainer() {
         return new LocalStackContainer(localStackImageName);
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 d159045197c..11864864adf 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
@@ -99,7 +99,7 @@
         <dependency>
             <groupId>com.icegreen</groupId>
             <artifactId>greenmail</artifactId>
-            <version>2.1.7</version>
+            <version>2.1.8</version>
             <scope>test</scope>
             <exclusions>
                 <exclusion>
diff --git a/nifi-extension-bundles/nifi-gcp-bundle/nifi-gcp-processors/pom.xml 
b/nifi-extension-bundles/nifi-gcp-bundle/nifi-gcp-processors/pom.xml
index 993c5cb27e3..0780c348203 100644
--- a/nifi-extension-bundles/nifi-gcp-bundle/nifi-gcp-processors/pom.xml
+++ b/nifi-extension-bundles/nifi-gcp-bundle/nifi-gcp-processors/pom.xml
@@ -132,7 +132,7 @@
         <dependency>
             <groupId>com.google.apis</groupId>
             <artifactId>google-api-services-drive</artifactId>
-            <version>v3-rev20251114-2.0.0</version>
+            <version>v3-rev20251210-2.0.0</version>
         </dependency>
         <dependency>
             <groupId>com.tdunning</groupId>
diff --git 
a/nifi-extension-bundles/nifi-mqtt-bundle/nifi-mqtt-processors/pom.xml 
b/nifi-extension-bundles/nifi-mqtt-bundle/nifi-mqtt-processors/pom.xml
index e02df8515b7..0ae88fcf5f4 100644
--- a/nifi-extension-bundles/nifi-mqtt-bundle/nifi-mqtt-processors/pom.xml
+++ b/nifi-extension-bundles/nifi-mqtt-bundle/nifi-mqtt-processors/pom.xml
@@ -59,7 +59,7 @@
         <dependency>
             <groupId>com.hivemq</groupId>
             <artifactId>hivemq-mqtt-client</artifactId>
-            <version>1.3.10</version>
+            <version>1.3.11</version>
         </dependency>
         <dependency>
             <groupId>org.apache.commons</groupId>
diff --git a/nifi-extension-bundles/nifi-poi-bundle/pom.xml 
b/nifi-extension-bundles/nifi-poi-bundle/pom.xml
index 994841cc90f..91e823e1776 100644
--- a/nifi-extension-bundles/nifi-poi-bundle/pom.xml
+++ b/nifi-extension-bundles/nifi-poi-bundle/pom.xml
@@ -45,7 +45,7 @@
             <dependency>
                 <groupId>com.github.pjfanning</groupId>
                 <artifactId>excel-streaming-reader</artifactId>
-                <version>5.1.2</version>
+                <version>5.2.0</version>
             </dependency>
         </dependencies>
     </dependencyManagement>
diff --git a/nifi-extension-bundles/nifi-redis-bundle/pom.xml 
b/nifi-extension-bundles/nifi-redis-bundle/pom.xml
index 135ff2b368f..5720a5c6f91 100644
--- a/nifi-extension-bundles/nifi-redis-bundle/pom.xml
+++ b/nifi-extension-bundles/nifi-redis-bundle/pom.xml
@@ -25,7 +25,7 @@
     <packaging>pom</packaging>
 
     <properties>
-        <spring.data.redis.version>4.0.0</spring.data.redis.version>
+        <spring.data.redis.version>4.0.1</spring.data.redis.version>
         <jedis.version>7.1.0</jedis.version>
     </properties>
 
diff --git 
a/nifi-extension-bundles/nifi-registry-bundle/nifi-registry-service/pom.xml 
b/nifi-extension-bundles/nifi-registry-bundle/nifi-registry-service/pom.xml
index e881e99754f..5bd7b225f8b 100644
--- a/nifi-extension-bundles/nifi-registry-bundle/nifi-registry-service/pom.xml
+++ b/nifi-extension-bundles/nifi-registry-bundle/nifi-registry-service/pom.xml
@@ -56,7 +56,7 @@ language governing permissions and limitations under the 
License. -->
         <dependency>
             <groupId>com.networknt</groupId>
             <artifactId>json-schema-validator</artifactId>
-            <version>2.0.0</version>
+            <version>2.0.1</version>
         </dependency>
         <dependency>
             <groupId>org.apache.nifi</groupId>
diff --git a/nifi-extension-bundles/nifi-standard-bundle/pom.xml 
b/nifi-extension-bundles/nifi-standard-bundle/pom.xml
index c2d2ca368c1..5b52ad7586b 100644
--- a/nifi-extension-bundles/nifi-standard-bundle/pom.xml
+++ b/nifi-extension-bundles/nifi-standard-bundle/pom.xml
@@ -230,7 +230,7 @@
             <dependency>
                 <groupId>com.networknt</groupId>
                 <artifactId>json-schema-validator</artifactId>
-                <version>2.0.0</version>
+                <version>2.0.1</version>
             </dependency>
         </dependencies>
     </dependencyManagement>
diff --git a/nifi-registry/pom.xml b/nifi-registry/pom.xml
index 6b73887207f..9e411e937cc 100644
--- a/nifi-registry/pom.xml
+++ b/nifi-registry/pom.xml
@@ -41,7 +41,7 @@
         <flyway.version>11.19.0</flyway.version>
         <flyway.tests.version>10.0.0</flyway.tests.version>
         <swagger.ui.version>3.12.0</swagger.ui.version>
-        <jgit.version>7.4.0.202509020913-r</jgit.version>
+        <jgit.version>7.5.0.202512021534-r</jgit.version>
         <h2.version>2.4.240</h2.version>
     </properties>
     <dependencyManagement>
diff --git a/pom.xml b/pom.xml
index 5d68c0d7c6f..7297b4b2744 100644
--- a/pom.xml
+++ b/pom.xml
@@ -120,7 +120,7 @@
         <nifi.nar.maven.plugin.version>2.2.0</nifi.nar.maven.plugin.version>
 
         <!-- CSPs SDK -->
-        <software.amazon.awssdk.version>2.40.6</software.amazon.awssdk.version>
+        <software.amazon.awssdk.version>2.40.8</software.amazon.awssdk.version>
         
<software.amazon.encryption.s3.version>3.5.0</software.amazon.encryption.s3.version>
         <azure.sdk.bom.version>1.3.3</azure.sdk.bom.version> <!-- when 
changing this version, also update msal4j to the version that is required by 
azure-identity -->
 
@@ -170,7 +170,7 @@
         <simple-syslog-5424.version>0.0.19</simple-syslog-5424.version>
 
         <!-- Networking and transport -->
-        <netty.4.version>4.2.7.Final</netty.4.version>
+        <netty.4.version>4.2.9.Final</netty.4.version>
         <okhttp.version>5.3.2</okhttp.version>
         <okio.version>3.16.4</okio.version>
         
<org.apache.httpcomponents.httpclient.version>4.5.14</org.apache.httpcomponents.httpclient.version>

Reply via email to