Skip to content

Commit b79bc64

Browse files
committed
changelog
1 parent 9a9a99c commit b79bc64

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

crates/stackable-operator/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
### Added
8+
9+
- Add `ProductSpecificCommonConfig`, so that products can have custom fields on the `commonConfig`.
10+
Also add a `JavaCommonConfig`, which can be used by JVM based tools to offer `jvmArgumentOverrides` ([#931])
11+
12+
[#931]: https://github.com/stackabletech/operator-rs/pull/931
13+
714
## [0.83.0] - 2024-12-03
815

916
### Added

crates/stackable-operator/src/role_utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ pub struct CommonConfiguration<T, ProductSpecificCommonConfig> {
159159
// No docs needed, as we flatten this struct.
160160
//
161161
// This field is product-specific and can contain e.g. jvmArgumentOverrides.
162-
// It is not accessible by operators, please use <TODO link to functions> to read the value
162+
// It is not accessible by operators, please use [`Role::get_product_specific_common_configs`] to read the values.
163163
#[serde(flatten, default)]
164164
pub(crate) product_specific_common_config: ProductSpecificCommonConfig,
165165
}

0 commit comments

Comments
 (0)