Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file.

### Changed

- Gracefully shutdown all concurrent tasks by forwarding the SIGTERM signal ([#674]).
- OLM deployer doesn't add owner references to cluster scoped objects anymore ([#667]).
Owner references ensure that objects are garbage collected by OpenShift upon operator removal but they cause problems when the operator is updated.
This means that cluster wide objects are not removed anymore when the operator is uninstalled.
Expand Down Expand Up @@ -36,6 +37,7 @@ All notable changes to this project will be documented in this file.
[#667]: https://github.com/stackabletech/secret-operator/pull/667
[#670]: https://github.com/stackabletech/secret-operator/pull/670
[#671]: https://github.com/stackabletech/secret-operator/pull/671
[#674]: https://github.com/stackabletech/secret-operator/pull/674

## [25.11.0] - 2025-11-07

Expand Down
32 changes: 16 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

53 changes: 27 additions & 26 deletions Cargo.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ edition = "2021"
repository = "https://github.com/stackabletech/secret-operator"

[workspace.dependencies]
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.101.2", features = ["time", "telemetry", "versioned", "webhook"] }
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.105.0", features = ["time", "telemetry", "versioned", "webhook"] }
krb5 = { git = "https://github.com/stackabletech/krb5-rs.git", tag = "v0.1.0" }

anyhow = "1.0"
Expand Down Expand Up @@ -56,4 +56,4 @@ yasna = "0.5"

[patch."https://github.com/stackabletech/operator-rs.git"]
# stackable-operator = { path = "../operator-rs/crates/stackable-operator" }
# stackable-operator = { git = "https://github.com/stackabletech//operator-rs.git", branch = "main" }
# stackable-operator = { git = "https://github.com/stackabletech//operator-rs.git", branch = "tmp/combined-shutdowns" }
18 changes: 9 additions & 9 deletions crate-hashes.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading