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 dd3fae3365 NIFI-14901 Bump Apache MINA sshd to 2.16.0, Apache Groovy 
to 5.0.0, and others (#10239)
dd3fae3365 is described below

commit dd3fae3365217d6b6484f8a15cb43c3dcefdbb9a
Author: Pierre Villard <[email protected]>
AuthorDate: Mon Aug 25 18:18:04 2025 +0200

    NIFI-14901 Bump Apache MINA sshd to 2.16.0, Apache Groovy to 5.0.0, and 
others (#10239)
    
    - io.dropwizard.metrics metrics core and 4.2.33 to 4.2.34 - 
https://github.com/dropwizard/metrics/releases/tag/v4.2.34
    - Google Drive Service API from v3-rev20250723-2.0.0 to 
v3-rev20250819-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
    - Apache SSHD from 2.15.0 to 2.16.0 - 
https://github.com/apache/mina-sshd/releases/tag/sshd-2.16.0
    - Spring Boot from 3.5.4 to 3.5.5 - 
https://github.com/spring-projects/spring-boot/releases/tag/v3.5.5
    - FlywayDB from 11.11.1 to 11.11.2 - 
https://github.com/flyway/flyway/releases/tag/flyway-11.11.2
    - AWS SDK v2 from 2.32.27 to 2.32.29 - 
https://github.com/aws/aws-sdk-java-v2/blob/master/CHANGELOG.md
    - Apache Groovy from 4.0.28 to 5.0.0 - 
https://groovy-lang.org/releasenotes/groovy-5.0.html
    - jsoup from 1.21.1 to 1.21.2 - 
https://github.com/jhy/jsoup/releases/tag/jsoup-1.21.2
    
    Signed-off-by: David Handermann <[email protected]>
---
 nifi-code-coverage/pom.xml                                         | 1 -
 nifi-commons/nifi-metrics/pom.xml                                  | 4 ++--
 nifi-extension-bundles/nifi-gcp-bundle/nifi-gcp-processors/pom.xml | 2 +-
 .../src/test/resources/groovy/test_lookup_inline.groovy            | 4 ++--
 .../src/test/resources/groovy/test_simple_lookup_inline.groovy     | 2 +-
 nifi-extension-bundles/nifi-standard-bundle/pom.xml                | 1 -
 nifi-framework-bundle/pom.xml                                      | 2 +-
 nifi-registry/pom.xml                                              | 5 ++---
 pom.xml                                                            | 7 ++++---
 9 files changed, 13 insertions(+), 15 deletions(-)

diff --git a/nifi-code-coverage/pom.xml b/nifi-code-coverage/pom.xml
index c8e110fa61..bb4d4e7986 100644
--- a/nifi-code-coverage/pom.xml
+++ b/nifi-code-coverage/pom.xml
@@ -28,7 +28,6 @@
 
     <properties>
         <ant.version>1.10.15</ant.version>
-        <org.apache.sshd.version>2.15.0</org.apache.sshd.version>
         <mime4j.version>0.8.13</mime4j.version>
     </properties>
 
diff --git a/nifi-commons/nifi-metrics/pom.xml 
b/nifi-commons/nifi-metrics/pom.xml
index 40534058f7..46bae40200 100644
--- a/nifi-commons/nifi-metrics/pom.xml
+++ b/nifi-commons/nifi-metrics/pom.xml
@@ -31,12 +31,12 @@
         <dependency>
             <groupId>io.dropwizard.metrics</groupId>
             <artifactId>metrics-jvm</artifactId>
-            <version>4.2.33</version>
+            <version>4.2.34</version>
         </dependency>
         <dependency>
             <groupId>io.dropwizard.metrics</groupId>
             <artifactId>metrics-core</artifactId>
-            <version>4.2.33</version>
+            <version>4.2.34</version>
         </dependency>
     </dependencies>
 </project>
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 720d9e3750..d362e854a2 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
@@ -127,7 +127,7 @@
         <dependency>
             <groupId>com.google.apis</groupId>
             <artifactId>google-api-services-drive</artifactId>
-            <version>v3-rev20250723-2.0.0</version>
+            <version>v3-rev20250819-2.0.0</version>
         </dependency>
         <dependency>
             <groupId>com.tdunning</groupId>
diff --git 
a/nifi-extension-bundles/nifi-scripting-bundle/nifi-scripting-processors/src/test/resources/groovy/test_lookup_inline.groovy
 
b/nifi-extension-bundles/nifi-scripting-bundle/nifi-scripting-processors/src/test/resources/groovy/test_lookup_inline.groovy
index 0c2acc10b9..ecabde7596 100644
--- 
a/nifi-extension-bundles/nifi-scripting-bundle/nifi-scripting-processors/src/test/resources/groovy/test_lookup_inline.groovy
+++ 
b/nifi-extension-bundles/nifi-scripting-bundle/nifi-scripting-processors/src/test/resources/groovy/test_lookup_inline.groovy
@@ -39,8 +39,8 @@ class GroovyLookupService implements LookupService<String> {
     }
 
     @Override
-    Optional<String> lookup(Map<String, String> coordinates) {
-        final String key = coordinates.values().iterator().next();
+    Optional<String> lookup(Map<String, Object> coordinates) {
+        final String key = coordinates.values().iterator().next()
         Optional.ofNullable(lookupTable[key])
     }
     
diff --git 
a/nifi-extension-bundles/nifi-scripting-bundle/nifi-scripting-processors/src/test/resources/groovy/test_simple_lookup_inline.groovy
 
b/nifi-extension-bundles/nifi-scripting-bundle/nifi-scripting-processors/src/test/resources/groovy/test_simple_lookup_inline.groovy
index 81792672f7..47dfce1fc9 100644
--- 
a/nifi-extension-bundles/nifi-scripting-bundle/nifi-scripting-processors/src/test/resources/groovy/test_simple_lookup_inline.groovy
+++ 
b/nifi-extension-bundles/nifi-scripting-bundle/nifi-scripting-processors/src/test/resources/groovy/test_simple_lookup_inline.groovy
@@ -30,7 +30,7 @@ class SimpleGroovyLookupService implements 
StringLookupService {
 
 
     @Override
-    Optional<String> lookup(Map<String, String> coordinates) {
+    Optional<String> lookup(Map<String, Object> coordinates) {
         final String key = coordinates.values().iterator().next()
         Optional.ofNullable(lookupTable[key])
     }
diff --git a/nifi-extension-bundles/nifi-standard-bundle/pom.xml 
b/nifi-extension-bundles/nifi-standard-bundle/pom.xml
index 7e3a291a79..bc9ce3e691 100644
--- a/nifi-extension-bundles/nifi-standard-bundle/pom.xml
+++ b/nifi-extension-bundles/nifi-standard-bundle/pom.xml
@@ -34,7 +34,6 @@
         <module>nifi-standard-content-viewer-nar</module>
     </modules>
     <properties>
-        <org.apache.sshd.version>2.15.0</org.apache.sshd.version>
         <tika.version>3.2.2</tika.version>
     </properties>
     <dependencyManagement>
diff --git a/nifi-framework-bundle/pom.xml b/nifi-framework-bundle/pom.xml
index 8a64997e1c..cbffa1d688 100644
--- a/nifi-framework-bundle/pom.xml
+++ b/nifi-framework-bundle/pom.xml
@@ -309,7 +309,7 @@
             <dependency>
                 <groupId>io.dropwizard.metrics</groupId>
                 <artifactId>metrics-core</artifactId>
-                <version>4.2.33</version>
+                <version>4.2.34</version>
             </dependency>
             <dependency>
                 <groupId>org.apache.curator</groupId>
diff --git a/nifi-registry/pom.xml b/nifi-registry/pom.xml
index 6b50ad3efa..50c785b1f6 100644
--- a/nifi-registry/pom.xml
+++ b/nifi-registry/pom.xml
@@ -35,12 +35,11 @@
         <module>nifi-registry-docker-maven</module>
     </modules>
     <properties>
-        <spring.boot.version>3.5.4</spring.boot.version>
-        <flyway.version>11.11.1</flyway.version>
+        <spring.boot.version>3.5.5</spring.boot.version>
+        <flyway.version>11.11.2</flyway.version>
         <flyway.tests.version>10.0.0</flyway.tests.version>
         <swagger.ui.version>3.12.0</swagger.ui.version>
         <jgit.version>7.3.0.202506031305-r</jgit.version>
-        <org.apache.sshd.version>2.15.0</org.apache.sshd.version>
     </properties>
     <dependencyManagement>
         <dependencies>
diff --git a/pom.xml b/pom.xml
index 629d658f19..69968516dc 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.788</com.amazonaws.version>
-        
<software.amazon.awssdk.version>2.32.27</software.amazon.awssdk.version>
+        
<software.amazon.awssdk.version>2.32.29</software.amazon.awssdk.version>
         <gson.version>2.13.1</gson.version>
         
<io.fabric8.kubernetes.client.version>7.3.1</io.fabric8.kubernetes.client.version>
         <kotlin.version>2.2.10</kotlin.version>
@@ -129,6 +129,7 @@
         <org.apache.commons.csv.version>1.14.1</org.apache.commons.csv.version>
         
<org.apache.httpcomponents.httpclient.version>4.5.14</org.apache.httpcomponents.httpclient.version>
         
<org.apache.httpcomponents.httpcore.version>4.4.16</org.apache.httpcomponents.httpcore.version>
+        <org.apache.sshd.version>2.16.0</org.apache.sshd.version>
         <org.bouncycastle.version>1.81</org.bouncycastle.version>
         <pmd.version>7.16.0</pmd.version>
         <testcontainers.version>1.21.3</testcontainers.version>
@@ -143,7 +144,7 @@
         <jakarta.xml.bind-api.version>4.0.2</jakarta.xml.bind-api.version>
         <jakarta.ws.rs-api.version>3.1.0</jakarta.ws.rs-api.version>
         <json.smart.version>2.6.0</json.smart.version>
-        <groovy.version>4.0.28</groovy.version>
+        <groovy.version>5.0.0</groovy.version>
         <surefire.version>3.5.1</surefire.version>
         <hadoop.version>3.4.1</hadoop.version>
         <ozone.version>1.4.1</ozone.version>
@@ -564,7 +565,7 @@
             <dependency>
                 <groupId>org.jsoup</groupId>
                 <artifactId>jsoup</artifactId>
-                <version>1.21.1</version>
+                <version>1.21.2</version>
             </dependency>
             <dependency>
                 <groupId>com.github.ben-manes.caffeine</groupId>

Reply via email to