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 a5a7f1a51a4 NIFI-15915 Bump Netty to 4.2.13.Final, Jetty to 12.1.9, 
Groovy to 5.0.6, and others (#11218)
a5a7f1a51a4 is described below

commit a5a7f1a51a4c0a37b7aaaad164205171e9c5109a
Author: Pierre Villard <[email protected]>
AuthorDate: Thu May 7 15:41:57 2026 +0200

    NIFI-15915 Bump Netty to 4.2.13.Final, Jetty to 12.1.9, Groovy to 5.0.6, 
and others (#11218)
    
    - Elasticsearch from 9.3.4 to 9.4.0 - 
https://github.com/elastic/elasticsearch-java/releases/tag/v9.4.0
    - Gitlab4J from 6.2.0 to 6.3.0 - 
https://github.com/gitlab4j/gitlab4j-api/releases/tag/6.3.0
    - AWS MSK IAM Auth from 2.3.5 to 2.3.6 - 
https://github.com/aws/aws-msk-iam-auth/releases/tag/v2.3.6
    - ASW SDK BOM from 2.44.0 to 2.44.3 - 
https://github.com/aws/aws-sdk-java-v2/blob/master/CHANGELOG.md
    - HiveMQ MQTT Client from 1.3.13 to 1.3.14 - 
https://github.com/hivemq/hivemq-mqtt-client/releases/tag/v1.3.14
    - JLine from 4.0.14 to 4.1.0 - 
https://github.com/jline/jline3/releases/tag/4.1.0
    - Groovy from 5.0.5 to 5.0.6 - 
https://groovy-lang.org/changelogs/changelog-5.0.6.html
    - Netty from 4.2.12.Final to 4.2.13.Final - 
https://github.com/netty/netty/releases/tag/netty-4.2.13.Final
    - Jetty from 12.1.8 to 12.1.9 - 
https://github.com/jetty/jetty.project/releases/tag/jetty-12.1.9
    - JAXB from 4.0.7 to 4.0.8 - 
https://github.com/eclipse-ee4j/jaxb-ri/releases/tag/4.0.8-RI
    - Nimbus OAuth2 OIDC from 11.37 to 11.37.1 - 
https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions/src/master/CHANGELOG.txt
    
    Signed-off-by: David Handermann <[email protected]>
---
 nifi-extension-bundles/nifi-elasticsearch-bundle/pom.xml     |  2 +-
 nifi-extension-bundles/nifi-gitlab-bundle/pom.xml            |  2 +-
 .../nifi-kafka-bundle/nifi-kafka-service-aws/pom.xml         |  2 +-
 .../nifi-mqtt-bundle/nifi-mqtt-processors/pom.xml            |  2 +-
 nifi-toolkit/nifi-toolkit-cli/pom.xml                        |  2 +-
 pom.xml                                                      | 12 ++++++------
 6 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/nifi-extension-bundles/nifi-elasticsearch-bundle/pom.xml 
b/nifi-extension-bundles/nifi-elasticsearch-bundle/pom.xml
index bf07331b5c9..f89b81f4b88 100644
--- a/nifi-extension-bundles/nifi-elasticsearch-bundle/pom.xml
+++ b/nifi-extension-bundles/nifi-elasticsearch-bundle/pom.xml
@@ -33,7 +33,7 @@ language governing permissions and limitations under the 
License. -->
     </modules>
 
     <properties>
-        <elasticsearch.client.version>9.3.4</elasticsearch.client.version>
+        <elasticsearch.client.version>9.4.0</elasticsearch.client.version>
     </properties>
 
     <dependencyManagement>
diff --git a/nifi-extension-bundles/nifi-gitlab-bundle/pom.xml 
b/nifi-extension-bundles/nifi-gitlab-bundle/pom.xml
index 1f7d94ac641..9d3ffbffeeb 100644
--- a/nifi-extension-bundles/nifi-gitlab-bundle/pom.xml
+++ b/nifi-extension-bundles/nifi-gitlab-bundle/pom.xml
@@ -26,7 +26,7 @@
     <packaging>pom</packaging>
 
     <properties>
-        <gitlab4j-api.version>6.2.0</gitlab4j-api.version>
+        <gitlab4j-api.version>6.3.0</gitlab4j-api.version>
     </properties>
 
     <modules>
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 79b08d6be38..d7a371d1669 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
@@ -71,7 +71,7 @@
         <dependency>
             <groupId>software.amazon.msk</groupId>
             <artifactId>aws-msk-iam-auth</artifactId>
-            <version>2.3.5</version>
+            <version>2.3.6</version>
         </dependency>
         <dependency>
             <groupId>software.amazon.awssdk</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 81c15b870fe..06834e761c2 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.13</version>
+            <version>1.3.14</version>
         </dependency>
         <dependency>
             <groupId>org.apache.commons</groupId>
diff --git a/nifi-toolkit/nifi-toolkit-cli/pom.xml 
b/nifi-toolkit/nifi-toolkit-cli/pom.xml
index 59758f11819..dfcd621b4c1 100644
--- a/nifi-toolkit/nifi-toolkit-cli/pom.xml
+++ b/nifi-toolkit/nifi-toolkit-cli/pom.xml
@@ -24,7 +24,7 @@
     <description>Tooling to make tls configuration easier</description>
 
     <properties>
-        <jline.version>4.0.14</jline.version>
+        <jline.version>4.1.0</jline.version>
     </properties>
 
     <build>
diff --git a/pom.xml b/pom.xml
index 9f213fdeac7..3def3b89542 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.44.0</software.amazon.awssdk.version>
+        <software.amazon.awssdk.version>2.44.3</software.amazon.awssdk.version>
         
<software.amazon.encryption.s3.version>4.0.1</software.amazon.encryption.s3.version>
         <azure.sdk.bom.version>1.3.6</azure.sdk.bom.version> <!-- when 
changing this version, also update msal4j to the version that is required by 
azure-identity -->
 
@@ -163,7 +163,7 @@
 
         <!-- JVM languages and bytecode -->
         <aspectj.version>1.9.25.1</aspectj.version>
-        <groovy.version>5.0.5</groovy.version>
+        <groovy.version>5.0.6</groovy.version>
         <kotlin.version>2.3.21</kotlin.version>
 
         <!-- Logging and observability -->
@@ -174,7 +174,7 @@
         <simple-syslog-5424.version>0.0.19</simple-syslog-5424.version>
 
         <!-- Networking and transport -->
-        <netty.4.version>4.2.12.Final</netty.4.version>
+        <netty.4.version>4.2.13.Final</netty.4.version>
         <okhttp.version>5.3.2</okhttp.version>
         <okio.version>3.17.0</okio.version>
         
<org.apache.httpcomponents.httpclient.version>4.5.14</org.apache.httpcomponents.httpclient.version>
@@ -183,7 +183,7 @@
 
         <!-- Security -->
         <nimbus-jose-jwt.version>10.9</nimbus-jose-jwt.version>
-        <nimbus-oauth2-oidc.version>11.37</nimbus-oauth2-oidc.version>
+        <nimbus-oauth2-oidc.version>11.37.1</nimbus-oauth2-oidc.version>
         <org.bouncycastle.version>1.84</org.bouncycastle.version>
 
         <!-- Utilities -->
@@ -196,9 +196,9 @@
         <jakarta.ws.rs-api.version>4.0.0</jakarta.ws.rs-api.version>
         <jakarta.xml.bind-api.version>4.0.5</jakarta.xml.bind-api.version>
         <jakarta.activation-api.version>2.1.4</jakarta.activation-api.version>
-        <jaxb.runtime.version>4.0.7</jaxb.runtime.version>
+        <jaxb.runtime.version>4.0.8</jaxb.runtime.version>
         <jersey.bom.version>4.0.2</jersey.bom.version>
-        <jetty.version>12.1.8</jetty.version>
+        <jetty.version>12.1.9</jetty.version>
         <servlet-api.version>6.1.0</servlet-api.version>
         <spring.security.version>7.0.5</spring.security.version>
         <spring.version>7.0.7</spring.version>

Reply via email to