Skip to content

Commit 6fdbe2b

Browse files
authored
Merge branch 'main' into feat/config-overrides-json
2 parents 312d33a + 9f06eb8 commit 6fdbe2b

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

crates/stackable-operator/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ All notable changes to this project will be documented in this file.
1111
### Changed
1212

1313
- BREAKING: Change signature of `ContainerBuilder::add_env_vars` from `Vec<EnvVar>` to `IntoIterator<Item = EnvVar>` ([#1163]).
14+
- BREAKING: Remove `EXPERIMENTAL_` prefix in `CONFIG_OVERRIDE_FILE_HEADER_KEY` and `CONFIG_OVERRIDE_FILE_FOOTER_KEY` ([#1191]).
1415

1516
[#1163]: https://github.com/stackabletech/operator-rs/pull/1163
17+
[#1191]: https://github.com/stackabletech/operator-rs/pull/1191
1618

1719
## [0.109.0] - 2026-04-07
1820

crates/stackable-operator/src/product_config_utils.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ use crate::{
1212
role_utils::{CommonConfiguration, Role},
1313
};
1414

15-
pub const CONFIG_OVERRIDE_FILE_HEADER_KEY: &str = "EXPERIMENTAL_FILE_HEADER";
16-
pub const CONFIG_OVERRIDE_FILE_FOOTER_KEY: &str = "EXPERIMENTAL_FILE_FOOTER";
15+
pub const CONFIG_OVERRIDE_FILE_HEADER_KEY: &str = "FILE_HEADER";
16+
pub const CONFIG_OVERRIDE_FILE_FOOTER_KEY: &str = "FILE_FOOTER";
1717

1818
type Result<T, E = Error> = std::result::Result<T, E>;
1919

0 commit comments

Comments
 (0)