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: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ All notable changes to this project will be documented in this file.
Remove all HBase dependencies from the Spark 4 image.
Pull logging dependencies with `mvn` instead of `curl` to remove manual maintenance in Nexus `packages`.
- hbase: Update `hbase-operator-tools` from `1.3.0-fd5a5fb` to `1.3.0` ([#1425]).
- nifi: Backported NiFi-15567 to NiFi 2.6.0 and 2.7.2 to fix CVE CVE-2026-25903 ([#1429]).

### Removed

Expand Down Expand Up @@ -104,6 +105,7 @@ All notable changes to this project will be documented in this file.
[#1425]: https://github.com/stackabletech/docker-images/pull/1425
[#1426]: https://github.com/stackabletech/docker-images/pull/1426
[#1428]: https://github.com/stackabletech/docker-images/pull/1428
[#1429]: https://github.com/stackabletech/docker-images/pull/1429

## [25.11.0] - 2025-11-07

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 22fff64167758481f7c66a85bc86df1467928e00 Mon Sep 17 00:00:00 2001
From b1cf1b8747c3d877c2aeca1892be0708355a6676 Mon Sep 17 00:00:00 2001
From: Lars Francke <git@lars-francke.de>
Date: Wed, 13 Aug 2025 14:16:55 +0200
Subject: NIFI-14858: Make SNI checking configurable
Expand Down Expand Up @@ -64,7 +64,7 @@ index 26d09706a1..132973cad5 100644
}

diff --git a/nifi-commons/nifi-properties/src/main/java/org/apache/nifi/util/NiFiProperties.java b/nifi-commons/nifi-properties/src/main/java/org/apache/nifi/util/NiFiProperties.java
index 9e85c05d22..89d81813f4 100644
index 9e85c05d22..9c26cb7eb3 100644
--- a/nifi-commons/nifi-properties/src/main/java/org/apache/nifi/util/NiFiProperties.java
+++ b/nifi-commons/nifi-properties/src/main/java/org/apache/nifi/util/NiFiProperties.java
@@ -205,6 +205,8 @@ public class NiFiProperties extends ApplicationProperties {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
From 1fe22dcc974b52d83b8288d5279c3aa8c41a1243 Mon Sep 17 00:00:00 2001
From 1b21f7709cf3bfafecd9f75ffadf6b6dc7391055 Mon Sep 17 00:00:00 2001
From: dervoeti <lukas.krug@stackable.tech>
Date: Wed, 22 Oct 2025 15:27:29 +0200
Subject: fix: pin esbuild to fix NiFi 2.6.0 build
Expand Down
Loading