Skip to content

Commit e31b447

Browse files
authored
NIFI-15225 Bump Lucene to 10.3.2, POI to 5.5.0, OkHTTP to 5.3.1, and others (#10537)
- Amazon Kinesis Client from 3.2.0 to 3.2.1 - https://github.com/awslabs/amazon-kinesis-client/releases/tag/v3.2.1 - JanusGraph from 1.2.0-20251108-015359.2fa5bca to 1.2.0-20251114-142114.b424a8f - https://github.com/JanusGraph/janusgraph - Apache POI from 5.4.1 to 5.5.0 - https://poi.apache.org/changes.html - Spring Data Redis from 3.5.5 to 4.0.0 - https://github.com/spring-projects/spring-data-redis/releases/tag/4.0.0 - Apache Lucene from 10.3.1 to 10.3.2 - https://github.com/apache/lucene/releases/tag/releases%2Flucene%2F10.3.2 - AWS SDK v2 from 2.38.6 to 2.38.7 - https://github.com/aws/aws-sdk-java-v2/blob/master/CHANGELOG.md - OkHTTP from 5.3.0 to 5.3.1 - https://square.github.io/okhttp/changelogs/changelog/#version-531 - Okio from 3.16.2 to 3.16.3 - https://square.github.io/okio/changelog/ Signed-off-by: David Handermann <[email protected]>
1 parent 4db5f05 commit e31b447

File tree

7 files changed

+9
-9
lines changed
  • nifi-extension-bundles
  • nifi-framework-bundle/nifi-framework-extensions/nifi-provenance-repository-bundle

7 files changed

+9
-9
lines changed

nifi-extension-bundles/nifi-aws-bundle/nifi-aws-kinesis/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<dependency>
5050
<groupId>software.amazon.kinesis</groupId>
5151
<artifactId>amazon-kinesis-client</artifactId>
52-
<version>3.2.0</version>
52+
<version>3.2.1</version>
5353
<exclusions>
5454
<exclusion>
5555
<groupId>com.google.code.findbugs</groupId>

nifi-extension-bundles/nifi-graph-bundle/nifi-graph-test-clients/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<artifactId>nifi-graph-test-clients</artifactId>
2626
<packaging>jar</packaging>
2727
<properties>
28-
<janusgraph.version>1.2.0-20251108-015359.2fa5bca</janusgraph.version>
28+
<janusgraph.version>1.2.0-20251114-142114.b424a8f</janusgraph.version>
2929
<guava.version>33.5.0-jre</guava.version>
3030
<amqp-client.version>5.27.1</amqp-client.version>
3131
</properties>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<packaging>pom</packaging>
2525

2626
<properties>
27-
<poi.version>5.4.1</poi.version>
27+
<poi.version>5.5.0</poi.version>
2828
<mime4j.version>0.8.13</mime4j.version>
2929
</properties>
3030

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<artifactId>nifi-poi-bundle</artifactId>
2525
<packaging>pom</packaging>
2626
<properties>
27-
<poi.version>5.4.1</poi.version>
27+
<poi.version>5.5.0</poi.version>
2828
</properties>
2929
<modules>
3030
<module>nifi-poi-nar</module>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<packaging>pom</packaging>
2626

2727
<properties>
28-
<spring.data.redis.version>3.5.5</spring.data.redis.version>
28+
<spring.data.redis.version>4.0.0</spring.data.redis.version>
2929
<jedis.version>7.0.0</jedis.version>
3030
</properties>
3131

nifi-framework-bundle/nifi-framework-extensions/nifi-provenance-repository-bundle/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<module>nifi-provenance-repository-nar</module>
2828
</modules>
2929
<properties>
30-
<lucene.version>10.3.1</lucene.version>
30+
<lucene.version>10.3.2</lucene.version>
3131
</properties>
3232
<dependencyManagement>
3333
<dependencies>

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
<nifi.nar.maven.plugin.version>2.2.0</nifi.nar.maven.plugin.version>
121121

122122
<!-- CSPs SDK -->
123-
<software.amazon.awssdk.version>2.38.6</software.amazon.awssdk.version>
123+
<software.amazon.awssdk.version>2.38.7</software.amazon.awssdk.version>
124124
<software.amazon.encryption.s3.version>3.5.0</software.amazon.encryption.s3.version>
125125
<azure.sdk.bom.version>1.3.2</azure.sdk.bom.version> <!-- when changing this version, also update msal4j to the version that is required by azure-identity -->
126126

@@ -171,8 +171,8 @@
171171

172172
<!-- Networking and transport -->
173173
<netty.4.version>4.2.7.Final</netty.4.version>
174-
<okhttp.version>5.3.0</okhttp.version>
175-
<okio.version>3.16.2</okio.version>
174+
<okhttp.version>5.3.1</okhttp.version>
175+
<okio.version>3.16.3</okio.version>
176176
<org.apache.httpcomponents.httpclient.version>4.5.14</org.apache.httpcomponents.httpclient.version>
177177
<org.apache.httpcomponents.httpcore.version>4.4.16</org.apache.httpcomponents.httpcore.version>
178178
<org.apache.sshd.version>2.16.0</org.apache.sshd.version>

0 commit comments

Comments
 (0)