Skip to content

Commit e5dbe3f

Browse files
authored
feat(operator): Derive Clone for OperatorEnvironmentOptions (#1203)
* feat(operator): Derive Clone for OperatorEnvironmentOptions * chore(operator): Add changelog entry
1 parent b7c8a3a commit e5dbe3f

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

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+
### Added
8+
9+
- Derive `Clone` for `OperatorEnvironmentOptions` ([#1203]).
10+
11+
[#1203]: https://github.com/stackabletech/operator-rs/pull/1203
12+
713
## [0.111.0] - 2026-04-27
814

915
### Added

crates/stackable-operator/src/cli/environment.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#[derive(Debug, PartialEq, Eq, clap::Parser)]
1+
#[derive(Clone, Debug, PartialEq, Eq, clap::Parser)]
22
#[command(next_help_heading = "Environment Options")]
33
pub struct OperatorEnvironmentOptions {
44
/// The namespace the operator is running in, usually `stackable-operators`.

0 commit comments

Comments
 (0)