Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nifi-code-coverage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>4.33.5</version>
<version>4.34.0</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down
2 changes: 1 addition & 1 deletion nifi-commons/nifi-calcite-utils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>4.33.5</version>
<version>4.34.0</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion nifi-extension-bundles/nifi-aws-bundle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<properties>
<guava.version>33.5.0-jre</guava.version>
<protobuf.version>4.33.5</protobuf.version>
<protobuf.version>4.34.0</protobuf.version>
</properties>

<modules>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ language governing permissions and limitations under the License. -->
<dependency>
<groupId>io.debezium</groupId>
<artifactId>mysql-binlog-connector-java</artifactId>
<version>0.40.4</version>
<version>0.40.5</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand Down
2 changes: 1 addition & 1 deletion nifi-extension-bundles/nifi-elasticsearch-bundle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ language governing permissions and limitations under the License. -->
</modules>

<properties>
<elasticsearch.client.version>9.3.0</elasticsearch.client.version>
<elasticsearch.client.version>9.3.1</elasticsearch.client.version>
</properties>

<dependencyManagement>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-drive</artifactId>
<version>v3-rev20251210-2.0.0</version>
<version>v3-rev20260220-2.0.0</version>
</dependency>
<dependency>
<groupId>com.tdunning</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-common</artifactId>
<version>3.4.2</version>
<version>${hadoop.version}</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
Expand Down
2 changes: 1 addition & 1 deletion nifi-extension-bundles/nifi-opentelemetry-bundle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-bom</artifactId>
<version>4.33.5</version>
<version>4.34.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<artifactId>nifi-protobuf-services</artifactId>

<properties>
<protobuf.version>4.33.5</protobuf.version>
<protobuf.version>4.34.0</protobuf.version>
<wire.version>5.5.0</wire.version>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion nifi-extension-bundles/nifi-snowflake-bundle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<properties>
<parquet.version>1.17.0</parquet.version>
<guava.version>33.5.0-jre</guava.version>
<protobuf.version>4.33.5</protobuf.version>
<protobuf.version>4.34.0</protobuf.version>
<grpc.version>1.79.0</grpc.version>
<!-- Check Ingest SDK and JDBC compatibility when upgrading -->
<snowflake-ingest-sdk.version>4.4.2-unshaded</snowflake-ingest-sdk.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>26.0.2-1</version>
<version>26.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public static List<File> getProvenanceLogFiles(final String baseName, final Coll

public static org.apache.lucene.search.Query convertQuery(final org.apache.nifi.provenance.search.Query query) {
if (query.getStartDate() == null && query.getEndDate() == null && query.getSearchTerms().isEmpty()) {
return new MatchAllDocsQuery();
return MatchAllDocsQuery.INSTANCE;
}

final BooleanQuery.Builder queryBuilder = new BooleanQuery.Builder();
Expand Down Expand Up @@ -134,7 +134,7 @@ public static org.apache.lucene.search.Query convertQuery(final org.apache.nifi.
}

if (!occurMust) {
queryBuilder.add(new MatchAllDocsQuery(), Occur.SHOULD);
queryBuilder.add(MatchAllDocsQuery.INSTANCE, Occur.SHOULD);
}

return queryBuilder.build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public void testMultipleWritersSimultaneouslySameIndex() throws IOException {
mgr.returnIndexWriter(writer1);

final EventIndexSearcher searcher = mgr.borrowIndexSearcher(dir);
final TopDocs topDocs = searcher.getIndexSearcher().search(new MatchAllDocsQuery(), 2);
final TopDocs topDocs = searcher.getIndexSearcher().search(MatchAllDocsQuery.INSTANCE, 2);
assertEquals(2, topDocs.totalHits.value());
mgr.returnIndexSearcher(searcher);
} finally {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<module>nifi-provenance-repository-nar</module>
</modules>
<properties>
<lucene.version>10.3.2</lucene.version>
<lucene.version>10.4.0</lucene.version>
</properties>
<dependencyManagement>
<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<dependency>
<groupId>org.questdb</groupId>
<artifactId>questdb</artifactId>
<version>9.3.2</version>
<version>9.3.3</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@

<!-- NiFi build -->
<nifi-api.version>2.6.0</nifi-api.version>
<nifi.nar.maven.plugin.version>2.2.0</nifi.nar.maven.plugin.version>
<nifi.nar.maven.plugin.version>2.3.0</nifi.nar.maven.plugin.version>

<!-- CSPs SDK -->
<software.amazon.awssdk.version>2.41.34</software.amazon.awssdk.version>
<software.amazon.awssdk.version>2.42.3</software.amazon.awssdk.version>
<software.amazon.encryption.s3.version>4.0.1</software.amazon.encryption.s3.version>
<azure.sdk.bom.version>1.3.4</azure.sdk.bom.version> <!-- when changing this version, also update msal4j to the version that is required by azure-identity -->

Expand All @@ -137,7 +137,7 @@
<org.apache.commons.text.version>1.15.0</org.apache.commons.text.version>

<!-- Big data platforms -->
<hadoop.version>3.4.2</hadoop.version>
<hadoop.version>3.4.3</hadoop.version>
<ozone.version>1.4.1</ozone.version>

<!-- Kubernetes -->
Expand All @@ -155,7 +155,7 @@
<jackson.annotations.version>2.21</jackson.annotations.version>
<jackson.bom.version>2.21.1</jackson.bom.version>
<json.smart.version>2.6.0</json.smart.version>
<snakeyaml.version>2.5</snakeyaml.version>
<snakeyaml.version>2.6</snakeyaml.version>

<!-- JVM languages and bytecode -->
<aspectj.version>1.9.25.1</aspectj.version>
Expand Down
Loading