Skip to content

Commit 1ac5f65

Browse files
authored
NIFI-14623 Bump Azure SDK to 1.2.35, Box SDK to 4.16.2, Flyway to 11.9.0 and others (apache#9985)
- Azure SDK BOM from 1.2.34 to 1.2.35 - https://github.com/Azure/azure-sdk-for-java/releases/tag/azure-sdk-bom_1.2.35 - MSAL4J from 1.19.1 to 1.20.1 - https://github.com/AzureAD/microsoft-authentication-library-for-java/releases/tag/v1.20.1 - Box SDK from 4.16.1 to 4.16.2 - https://github.com/box/box-java-sdk/releases/tag/v4.16.2 - IoTDB SDK from 2.0.2-1 to 2.0.3 - https://github.com/apache/iotdb/releases/tag/v2.0.3 - Camel Salesforce from 4.11.0 to 4.12.0 - https://github.com/apache/camel/releases/tag/camel-4.12.0 - Clojure from 1.12.0 to 1.12.1 - https://github.com/clojure/clojure/blob/master/changes.md#changes-to-clojure-in-version-1121 - checker-qual from 3.49.3 to 3.49.4 - https://github.com/typetools/checker-framework/releases/tag/checker-framework-3.49.4 - FlywayDB from 11.8.2 to 11.9.0 - https://github.com/flyway/flyway/releases/tag/flyway-11.9.0 - OpenCSV from 5.11 to 5.11.1 - https://sourceforge.net/p/opencsv/wiki/What%27s%20new/ - AWS SDK v2 from 2.31.52 to 2.31.55 - https://github.com/aws/aws-sdk-java-v2/blob/master/CHANGELOG.md Signed-off-by: David Handermann <exceptionfactory@apache.org>
1 parent 0150ed2 commit 1ac5f65

File tree

9 files changed

+10
-10
lines changed
  • nifi-extension-bundles
    • nifi-azure-bundle
    • nifi-box-bundle
    • nifi-iotdb-bundle
    • nifi-salesforce-bundle/nifi-salesforce-processors
    • nifi-scripting-bundle/nifi-scripting-processors
    • nifi-standard-shared-bundle/nifi-standard-shared-bom
  • nifi-registry
  • nifi-toolkit/nifi-toolkit-cli

9 files changed

+10
-10
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828

2929
<properties>
3030
<!-- when changing the Azure SDK version, also update msal4j to the version that is required by azure-identity -->
31-
<azure.sdk.bom.version>1.2.34</azure.sdk.bom.version>
32-
<msal4j.version>1.19.1</msal4j.version>
31+
<azure.sdk.bom.version>1.2.35</azure.sdk.bom.version>
32+
<msal4j.version>1.20.1</msal4j.version>
3333
<qpid.proton.version>0.34.1</qpid.proton.version>
3434
</properties>
3535

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<dependency>
4040
<groupId>com.box</groupId>
4141
<artifactId>box-java-sdk</artifactId>
42-
<version>4.16.1</version>
42+
<version>4.16.2</version>
4343
</dependency>
4444
</dependencies>
4545
</dependencyManagement>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</modules>
3131

3232
<properties>
33-
<iotdb.sdk.version>2.0.2-1</iotdb.sdk.version>
33+
<iotdb.sdk.version>2.0.3</iotdb.sdk.version>
3434
</properties>
3535
</project>
3636

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<dependency>
4343
<groupId>org.apache.camel</groupId>
4444
<artifactId>camel-salesforce</artifactId>
45-
<version>4.11.0</version>
45+
<version>4.12.0</version>
4646
<exclusions>
4747
<exclusion>
4848
<groupId>*</groupId>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
<dependency>
7070
<groupId>org.clojure</groupId>
7171
<artifactId>clojure</artifactId>
72-
<version>1.12.0</version>
72+
<version>1.12.1</version>
7373
</dependency>
7474
<dependency>
7575
<groupId>org.apache.commons</groupId>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
<dependency>
122122
<groupId>org.checkerframework</groupId>
123123
<artifactId>checker-qual</artifactId>
124-
<version>3.49.3</version>
124+
<version>3.49.4</version>
125125
<scope>provided</scope>
126126
</dependency>
127127
<dependency>

nifi-registry/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
</modules>
3737
<properties>
3838
<spring.boot.version>3.4.6</spring.boot.version>
39-
<flyway.version>11.8.2</flyway.version>
39+
<flyway.version>11.9.0</flyway.version>
4040
<flyway.tests.version>10.0.0</flyway.tests.version>
4141
<swagger.ui.version>3.12.0</swagger.ui.version>
4242
<jgit.version>7.2.1.202505142326-r</jgit.version>

nifi-toolkit/nifi-toolkit-cli/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
<dependency>
120120
<groupId>com.opencsv</groupId>
121121
<artifactId>opencsv</artifactId>
122-
<version>5.11</version>
122+
<version>5.11.1</version>
123123
<exclusions>
124124
<exclusion>
125125
<groupId>commons-logging</groupId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
111111
<inceptionYear>2014</inceptionYear>
112112
<com.amazonaws.version>1.12.783</com.amazonaws.version>
113-
<software.amazon.awssdk.version>2.31.52</software.amazon.awssdk.version>
113+
<software.amazon.awssdk.version>2.31.55</software.amazon.awssdk.version>
114114
<gson.version>2.13.1</gson.version>
115115
<io.fabric8.kubernetes.client.version>7.3.1</io.fabric8.kubernetes.client.version>
116116
<kotlin.version>2.1.21</kotlin.version>

0 commit comments

Comments
 (0)