Skip to content

Commit c00b8eb

Browse files
authored
NIFI-15015 - Bump Commons Lang3 to 3.19.0, H2 to 2.4.240, Datafaker to 2.5.1, and others (#10349)
- Spotbugs Maven Plugin from 4.9.5.0 to 4.9.6.0 - https://github.com/spotbugs/spotbugs-maven-plugin/releases/tag/spotbugs-maven-plugin-4.9.6.0 - License Maven Plugin from 2.6.0 to 2.7.0 - https://github.com/mojohaus/license-maven-plugin/releases/tag/2.7.0 - Version Maven Plugin from 2.19.0 to 2.19.1 - https://github.com/mojohaus/versions/releases/tag/2.19.1 - Angus Mail from 2.0.4 to 2.0.5 - https://github.com/eclipse-ee4j/angus-mail/releases/tag/2.0.5 - Datafaker from 2.5.0 to 2.5.1 - https://github.com/datafaker-net/datafaker/releases/tag/2.5.1 - JNA from 5.17.0 to 5.18.0 - https://github.com/java-native-access/jna/releases/tag/5.18.0 - Nimbus OAuth2 OIDC from 11.28 to 11.29.1 - https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions/src/master/CHANGELOG.txt - H2 Database from 2.3.232 to 2.4.240 - https://www.h2database.com/html/changelog.html - Apache Commons Lang3 from 3.18.0 to 3.19.0 - https://commons.apache.org/proper/commons-lang/changes.html#a3.19.0 - AWS SDK v2 from 2.34.0 to 2.34.3 - https://github.com/aws/aws-sdk-java-v2/blob/master/CHANGELOG.md Signed-off-by: David Handermann <[email protected]>
1 parent 537ce94 commit c00b8eb

File tree

11 files changed

+101
-63
lines changed
  • nifi-commons/nifi-xml-processing
  • nifi-extension-bundles
    • nifi-box-bundle/nifi-box-nar
    • nifi-email-bundle/nifi-email-processors
    • nifi-hadoop-libraries-bundle/nifi-hadoop-libraries-nar
    • nifi-standard-bundle
    • nifi-windows-event-log-bundle/nifi-windows-event-log-processors
  • nifi-framework-bundle
  • nifi-registry

11 files changed

+101
-63
lines changed

nifi-commons/nifi-xml-processing/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<plugin>
2828
<groupId>com.github.spotbugs</groupId>
2929
<artifactId>spotbugs-maven-plugin</artifactId>
30-
<version>4.9.5.0</version>
30+
<version>4.9.6.0</version>
3131
<executions>
3232
<execution>
3333
<phase>package</phase>

nifi-extension-bundles/nifi-box-bundle/nifi-box-nar/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<plugin>
4545
<groupId>org.codehaus.mojo</groupId>
4646
<artifactId>license-maven-plugin</artifactId>
47-
<version>2.6.0</version>
47+
<version>2.7.0</version>
4848
<configuration>
4949
<!--
5050
mvn clean license:add-third-party license:download-licenses

nifi-extension-bundles/nifi-email-bundle/nifi-email-processors/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
<dependency>
6363
<groupId>org.eclipse.angus</groupId>
6464
<artifactId>angus-mail</artifactId>
65-
<version>2.0.4</version>
65+
<version>2.0.5</version>
6666
</dependency>
6767
<dependency>
6868
<groupId>org.springframework.integration</groupId>

nifi-extension-bundles/nifi-hadoop-libraries-bundle/nifi-hadoop-libraries-nar/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
</parent>
1818
<artifactId>nifi-hadoop-libraries-nar</artifactId>
1919
<packaging>nar</packaging>
20+
<properties>
21+
<gcs.version>2.1.5</gcs.version>
22+
</properties>
2023
<dependencies>
2124
<dependency>
2225
<groupId>org.apache.nifi</groupId>

nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@
407407
<dependency>
408408
<groupId>net.datafaker</groupId>
409409
<artifactId>datafaker</artifactId>
410-
<version>2.5.0</version>
410+
<version>2.5.1</version>
411411
<exclusions>
412412
<!-- Exclude snakeyaml with android qualifier -->
413413
<exclusion>

nifi-extension-bundles/nifi-standard-bundle/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
<dependency>
8282
<groupId>org.eclipse.angus</groupId>
8383
<artifactId>angus-mail</artifactId>
84-
<version>2.0.4</version>
84+
<version>2.0.5</version>
8585
</dependency>
8686
<dependency>
8787
<groupId>com.sun.mail</groupId>

nifi-extension-bundles/nifi-windows-event-log-bundle/nifi-windows-event-log-processors/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ language governing permissions and limitations under the License. -->
2121
<packaging>jar</packaging>
2222

2323
<properties>
24-
<jna.version>5.17.0</jna.version>
24+
<jna.version>5.18.0</jna.version>
2525
<javassist.version>3.30.2-GA</javassist.version>
2626
</properties>
2727

nifi-framework-bundle/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
<dependency>
106106
<groupId>com.nimbusds</groupId>
107107
<artifactId>oauth2-oidc-sdk</artifactId>
108-
<version>11.28</version>
108+
<version>${nimbus-oauth2-oidc.version}</version>
109109
</dependency>
110110
<dependency>
111111
<groupId>com.nimbusds</groupId>

nifi-registry/nifi-registry-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
<dependency>
105105
<groupId>com.nimbusds</groupId>
106106
<artifactId>oauth2-oidc-sdk</artifactId>
107-
<version>11.28</version>
107+
<version>${nimbus-oauth2-oidc.version}</version>
108108
</dependency>
109109
<dependency>
110110
<groupId>com.nimbusds</groupId>

nifi-registry/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<flyway.tests.version>10.0.0</flyway.tests.version>
4141
<swagger.ui.version>3.12.0</swagger.ui.version>
4242
<jgit.version>7.3.0.202506031305-r</jgit.version>
43-
<h2.version>2.3.232</h2.version>
43+
<h2.version>2.4.240</h2.version>
4444
</properties>
4545
<dependencyManagement>
4646
<dependencies>

0 commit comments

Comments
 (0)