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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,13 @@ All notable changes to this project will be documented in this file.

- Bump stackable-operator to 0.114.0 ([#439]).
- Bump stackabke-operator to 0.115.0 ([#444]).
- The StatefulSet restarter now keys its annotations on a digest of the mounted ConfigMap/Secret
content instead of the object's `resourceVersion`, so a content-identical write by a third party
no longer triggers a rolling restart of the whole role group ([#449]).

[#439]: https://github.com/stackabletech/commons-operator/pull/439
[#444]: https://github.com/stackabletech/commons-operator/pull/444
[#449]: https://github.com/stackabletech/commons-operator/issues/449

## [26.7.0] - 2026-07-21

Expand Down
1 change: 1 addition & 0 deletions Cargo.lock

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

4 changes: 4 additions & 0 deletions Cargo.nix

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

6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ edition = "2024"
repository = "https://github.com/stackabletech/commons-operator"

[workspace.dependencies]
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.115.0", features = ["crds", "webhook"] }
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.115.0", features = [
"crds",
"webhook",
] }

anyhow = "1.0"
built = { version = "0.8", features = ["chrono", "git2"] }
Expand All @@ -21,6 +24,7 @@ http = "1.3"
json-patch = "4.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
snafu = "0.9"
strum = { version = "0.28", features = ["derive"] }
tokio = { version = "1.40", features = ["full"] }
Expand Down
1 change: 1 addition & 0 deletions rust/operator-binary/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ futures.workspace = true
json-patch.workspace = true
serde.workspace = true
serde_json.workspace = true
sha2.workspace = true
snafu.workspace = true
strum.workspace = true
tokio.workspace = true
Expand Down
Loading
Loading