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 a45c095bdb5 NIFI-16176 Bump LZ4 to 1.11.2, JUnit to 6.1.3, and others 
(#11517)
a45c095bdb5 is described below

commit a45c095bdb5a10af80aebc627da9a10b3b87addc
Author: Pierre Villard <[email protected]>
AuthorDate: Fri Aug 7 17:55:46 2026 +0200

    NIFI-16176 Bump LZ4 to 1.11.2, JUnit to 6.1.3, and others (#11517)
    
    - LZ4 from 1.11.1 to 1.11.2 - 
https://github.com/yawkat/lz4-java/releases/tag/v1.11.2
    - Micrometer to 1.15.12 - 
https://github.com/micrometer-metrics/micrometer/releases#release-v1.15.12
    - Greenmail from 2.1.11 to 2.1.12 - 
https://github.com/greenmail-mail-test/greenmail/releases/tag/release-2.1.12
    - FlywayDB from 13.1.0 to 13.2.0 - 
https://github.com/flyway/flyway/releases/tag/flyway-13.2.0
    - AWS SDK from 2.51.0 to 2.51.2 - 
https://github.com/aws/aws-sdk-java-v2/releases/tag/2.51.2
    - JUnit from 6.1.2 to 6.1.3 - 
https://github.com/junit-team/junit-framework/releases/tag/r6.1.3
    
    Signed-off-by: David Handermann <[email protected]>
---
 .../nifi-kafka-to-s3-integration-tests/pom.xml                      | 2 +-
 nifi-extension-bundles/nifi-aws-bundle/nifi-aws-processors/pom.xml  | 2 +-
 nifi-extension-bundles/nifi-azure-bundle/pom.xml                    | 6 ++++++
 .../nifi-email-bundle/nifi-email-processors/pom.xml                 | 2 +-
 .../nifi-iotdb-bundle/nifi-iotdb-processors/pom.xml                 | 2 +-
 .../nifi-kafka-bundle/nifi-kafka-service-aws/pom.xml                | 2 +-
 .../nifi-kafka-bundle/nifi-kafka-service-shared/pom.xml             | 2 +-
 .../nifi-standard-shared-bundle/nifi-standard-shared-bom/pom.xml    | 2 +-
 nifi-registry/pom.xml                                               | 2 +-
 pom.xml                                                             | 4 ++--
 10 files changed, 16 insertions(+), 10 deletions(-)

diff --git 
a/nifi-connectors/nifi-kafka-to-s3-bundle/nifi-kafka-to-s3-integration-tests/pom.xml
 
b/nifi-connectors/nifi-kafka-to-s3-bundle/nifi-kafka-to-s3-integration-tests/pom.xml
index c822fe4c2e9..ec4574d69d1 100644
--- 
a/nifi-connectors/nifi-kafka-to-s3-bundle/nifi-kafka-to-s3-integration-tests/pom.xml
+++ 
b/nifi-connectors/nifi-kafka-to-s3-bundle/nifi-kafka-to-s3-integration-tests/pom.xml
@@ -79,7 +79,7 @@
         <dependency>
             <groupId>at.yawk.lz4</groupId>
             <artifactId>lz4-java</artifactId>
-            <version>1.11.1</version>
+            <version>1.11.2</version>
         </dependency>
 
         <!-- Confluent Schema Registry and Avro dependencies for testing -->
diff --git a/nifi-extension-bundles/nifi-aws-bundle/nifi-aws-processors/pom.xml 
b/nifi-extension-bundles/nifi-aws-bundle/nifi-aws-processors/pom.xml
index 7a6c48532e4..a76c31401e2 100644
--- a/nifi-extension-bundles/nifi-aws-bundle/nifi-aws-processors/pom.xml
+++ b/nifi-extension-bundles/nifi-aws-bundle/nifi-aws-processors/pom.xml
@@ -316,7 +316,7 @@
         <dependency>
             <groupId>at.yawk.lz4</groupId>
             <artifactId>lz4-java</artifactId>
-            <version>1.11.1</version>
+            <version>1.11.2</version>
         </dependency>
     </dependencies>
     <build>
diff --git a/nifi-extension-bundles/nifi-azure-bundle/pom.xml 
b/nifi-extension-bundles/nifi-azure-bundle/pom.xml
index a9d22124fc0..715c8929e50 100644
--- a/nifi-extension-bundles/nifi-azure-bundle/pom.xml
+++ b/nifi-extension-bundles/nifi-azure-bundle/pom.xml
@@ -28,6 +28,7 @@
 
     <properties>
         <!-- when changing the Azure SDK version, also update msal4j to the 
version that is required by azure-identity -->
+        <micrometer.version>1.15.12</micrometer.version>
         <msal4j.version>1.23.1</msal4j.version>
         <qpid.proton.version>0.35.0</qpid.proton.version>
     </properties>
@@ -51,6 +52,11 @@
                 <type>pom</type>
                 <scope>import</scope>
             </dependency>
+            <dependency>
+                <groupId>io.micrometer</groupId>
+                <artifactId>micrometer-core</artifactId>
+                <version>${micrometer.version}</version>
+            </dependency>
             <dependency>
                 <groupId>com.google.guava</groupId>
                 <artifactId>guava</artifactId>
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 ffaa11bc9bd..d97bbd48501 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.11</version>
+            <version>2.1.12</version>
             <scope>test</scope>
             <exclusions>
                 <exclusion>
diff --git 
a/nifi-extension-bundles/nifi-iotdb-bundle/nifi-iotdb-processors/pom.xml 
b/nifi-extension-bundles/nifi-iotdb-bundle/nifi-iotdb-processors/pom.xml
index 4f795c18815..f4c76437170 100644
--- a/nifi-extension-bundles/nifi-iotdb-bundle/nifi-iotdb-processors/pom.xml
+++ b/nifi-extension-bundles/nifi-iotdb-bundle/nifi-iotdb-processors/pom.xml
@@ -48,7 +48,7 @@
         <dependency>
             <groupId>at.yawk.lz4</groupId>
             <artifactId>lz4-java</artifactId>
-            <version>1.11.1</version>
+            <version>1.11.2</version>
         </dependency>
         <dependency>
             <groupId>org.apache.nifi</groupId>
diff --git 
a/nifi-extension-bundles/nifi-kafka-bundle/nifi-kafka-service-aws/pom.xml 
b/nifi-extension-bundles/nifi-kafka-bundle/nifi-kafka-service-aws/pom.xml
index 34cbe30c98d..1d222656e82 100644
--- a/nifi-extension-bundles/nifi-kafka-bundle/nifi-kafka-service-aws/pom.xml
+++ b/nifi-extension-bundles/nifi-kafka-bundle/nifi-kafka-service-aws/pom.xml
@@ -66,7 +66,7 @@
         <dependency>
             <groupId>at.yawk.lz4</groupId>
             <artifactId>lz4-java</artifactId>
-            <version>1.11.1</version>
+            <version>1.11.2</version>
         </dependency>
         <dependency>
             <groupId>software.amazon.msk</groupId>
diff --git 
a/nifi-extension-bundles/nifi-kafka-bundle/nifi-kafka-service-shared/pom.xml 
b/nifi-extension-bundles/nifi-kafka-bundle/nifi-kafka-service-shared/pom.xml
index 1ec0ca07642..c439b625233 100644
--- a/nifi-extension-bundles/nifi-kafka-bundle/nifi-kafka-service-shared/pom.xml
+++ b/nifi-extension-bundles/nifi-kafka-bundle/nifi-kafka-service-shared/pom.xml
@@ -77,7 +77,7 @@
         <dependency>
             <groupId>at.yawk.lz4</groupId>
             <artifactId>lz4-java</artifactId>
-            <version>1.11.1</version>
+            <version>1.11.2</version>
         </dependency>
         <dependency>
             <groupId>org.apache.nifi</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 d0fc2be4528..f1a97c7bb00 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
@@ -121,7 +121,7 @@
             <dependency>
                 <groupId>org.checkerframework</groupId>
                 <artifactId>checker-qual</artifactId>
-                <version>4.2.1</version>
+                <version>4.2.2</version>
                 <scope>provided</scope>
             </dependency>
             <dependency>
diff --git a/nifi-registry/pom.xml b/nifi-registry/pom.xml
index f63b5a5c645..9ad9a5ff389 100644
--- a/nifi-registry/pom.xml
+++ b/nifi-registry/pom.xml
@@ -36,7 +36,7 @@
     </modules>
     <properties>
         <spring.boot.version>4.1.0</spring.boot.version>
-        <flyway.version>13.1.0</flyway.version>
+        <flyway.version>13.2.0</flyway.version>
         <flyway.tests.version>10.0.0</flyway.tests.version>
         <swagger.ui.version>3.12.0</swagger.ui.version>
         <jgit.version>7.7.1.202607240634-r</jgit.version>
diff --git a/pom.xml b/pom.xml
index 10a6ffa7a14..bc219ce4e68 100644
--- a/pom.xml
+++ b/pom.xml
@@ -122,7 +122,7 @@
         <nifi.nar.maven.plugin.version>2.3.0</nifi.nar.maven.plugin.version>
 
         <!-- CSPs SDK -->
-        <software.amazon.awssdk.version>2.51.0</software.amazon.awssdk.version>
+        <software.amazon.awssdk.version>2.51.2</software.amazon.awssdk.version>
         
<software.amazon.encryption.s3.version>4.0.1</software.amazon.encryption.s3.version>
         <azure.sdk.bom.version>1.3.8</azure.sdk.bom.version> <!-- when 
changing this version, also update msal4j to the version that is required by 
azure-identity -->
 
@@ -207,7 +207,7 @@
         <swagger.annotations.version>2.2.53</swagger.annotations.version>
 
         <!-- Testing and quality -->
-        <junit.version>6.1.2</junit.version>
+        <junit.version>6.1.3</junit.version>
         <mockito.version>5.23.0</mockito.version>
         <pmd.version>7.26.0</pmd.version>
         <checkstyle.version>13.9.0</checkstyle.version>

Reply via email to