diff --git a/crates/stackable-operator/CHANGELOG.md b/crates/stackable-operator/CHANGELOG.md index ab35b1497..0e11bc7a6 100644 --- a/crates/stackable-operator/CHANGELOG.md +++ b/crates/stackable-operator/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +### Added + +- Derive `Clone` for `OperatorEnvironmentOptions` ([#1203]). + +[#1203]: https://github.com/stackabletech/operator-rs/pull/1203 + ## [0.111.0] - 2026-04-27 ### Added diff --git a/crates/stackable-operator/src/cli/environment.rs b/crates/stackable-operator/src/cli/environment.rs index 72db906d1..632dd340f 100644 --- a/crates/stackable-operator/src/cli/environment.rs +++ b/crates/stackable-operator/src/cli/environment.rs @@ -1,4 +1,4 @@ -#[derive(Debug, PartialEq, Eq, clap::Parser)] +#[derive(Clone, Debug, PartialEq, Eq, clap::Parser)] #[command(next_help_heading = "Environment Options")] pub struct OperatorEnvironmentOptions { /// The namespace the operator is running in, usually `stackable-operators`.