From 76dd9bdede62a662cd080bbf2ee26d2b8b6e5e62 Mon Sep 17 00:00:00 2001 From: xeniape Date: Wed, 8 Apr 2026 08:35:18 +0200 Subject: [PATCH 1/2] chore: Remove prefix in --- crates/stackable-operator/CHANGELOG.md | 1 + crates/stackable-operator/src/product_config_utils.rs | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/crates/stackable-operator/CHANGELOG.md b/crates/stackable-operator/CHANGELOG.md index ba11cbe2c..eafba2549 100644 --- a/crates/stackable-operator/CHANGELOG.md +++ b/crates/stackable-operator/CHANGELOG.md @@ -11,6 +11,7 @@ All notable changes to this project will be documented in this file. ### Changed - BREAKING: Change signature of `ContainerBuilder::add_env_vars` from `Vec` to `IntoIterator` ([#1163]). +- BREAKING: Remove `EXPERIMENTAL_` prefix in `CONFIG_OVERRIDE_FILE_HEADER_KEY` and `CONFIG_OVERRIDE_FILE_FOOTER_KEY` [#1163]: https://github.com/stackabletech/operator-rs/pull/1163 diff --git a/crates/stackable-operator/src/product_config_utils.rs b/crates/stackable-operator/src/product_config_utils.rs index bcf75572e..0a7cbde7a 100644 --- a/crates/stackable-operator/src/product_config_utils.rs +++ b/crates/stackable-operator/src/product_config_utils.rs @@ -9,8 +9,8 @@ use tracing::{debug, error, warn}; use crate::role_utils::{CommonConfiguration, Role}; -pub const CONFIG_OVERRIDE_FILE_HEADER_KEY: &str = "EXPERIMENTAL_FILE_HEADER"; -pub const CONFIG_OVERRIDE_FILE_FOOTER_KEY: &str = "EXPERIMENTAL_FILE_FOOTER"; +pub const CONFIG_OVERRIDE_FILE_HEADER_KEY: &str = "FILE_HEADER"; +pub const CONFIG_OVERRIDE_FILE_FOOTER_KEY: &str = "FILE_FOOTER"; type Result = std::result::Result; From 67ab45fc212b0ea6f35624d6442d29e99d95992c Mon Sep 17 00:00:00 2001 From: xeniape Date: Wed, 8 Apr 2026 08:39:42 +0200 Subject: [PATCH 2/2] adjust changelog entry --- crates/stackable-operator/CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/stackable-operator/CHANGELOG.md b/crates/stackable-operator/CHANGELOG.md index eafba2549..5499061e2 100644 --- a/crates/stackable-operator/CHANGELOG.md +++ b/crates/stackable-operator/CHANGELOG.md @@ -11,9 +11,10 @@ All notable changes to this project will be documented in this file. ### Changed - BREAKING: Change signature of `ContainerBuilder::add_env_vars` from `Vec` to `IntoIterator` ([#1163]). -- BREAKING: Remove `EXPERIMENTAL_` prefix in `CONFIG_OVERRIDE_FILE_HEADER_KEY` and `CONFIG_OVERRIDE_FILE_FOOTER_KEY` +- BREAKING: Remove `EXPERIMENTAL_` prefix in `CONFIG_OVERRIDE_FILE_HEADER_KEY` and `CONFIG_OVERRIDE_FILE_FOOTER_KEY` ([#1191]). [#1163]: https://github.com/stackabletech/operator-rs/pull/1163 +[#1191]: https://github.com/stackabletech/operator-rs/pull/1191 ## [0.109.0] - 2026-04-07