Skip to content

Commit 550f2d2

Browse files
committed
bring changes back in
1 parent 2c22e42 commit 550f2d2

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

crates/stackable-operator/CHANGELOG.md

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

55
## [Unreleased]
66

7+
### Changed
8+
9+
- Change `status` field type in KubernetesArguments and KubernetesOptions ([#982]).
10+
11+
[#982]: https://github.com/stackabletech/operator-rs/pull/982
12+
713
## [0.87.3] - 2025-03-14
814

915
### Added

crates/stackable-versioned-macros/src/attrs/k8s.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ pub(crate) struct KubernetesArguments {
3030
pub(crate) namespaced: Flag,
3131
// root
3232
pub(crate) crates: Option<KubernetesCrateArguments>,
33-
pub(crate) status: Option<String>,
33+
pub(crate) status: Option<Path>,
3434
// derive
3535
// schema
3636
// scale

crates/stackable-versioned-macros/src/codegen/container/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ pub(crate) struct KubernetesOptions {
275275
pub(crate) namespaced: bool,
276276
// root
277277
pub(crate) crates: KubernetesCrateOptions,
278-
pub(crate) status: Option<String>,
278+
pub(crate) status: Option<Path>,
279279
// derive
280280
// schema
281281
// scale

0 commit comments

Comments
 (0)