From fcd3515aa1952ef47fa40ac35ae23deb0a1b82cb Mon Sep 17 00:00:00 2001 From: Techassi Date: Tue, 28 Apr 2026 11:42:38 +0200 Subject: [PATCH 1/2] feat(operator): Derive Clone for OperatorEnvironmentOptions --- crates/stackable-operator/src/cli/environment.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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`. From 8c87fcd623d53341158198972609a2300de9891e Mon Sep 17 00:00:00 2001 From: Techassi Date: Tue, 28 Apr 2026 11:45:14 +0200 Subject: [PATCH 2/2] chore(operator): Add changelog entry --- crates/stackable-operator/CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) 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