Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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 @@ -7,8 +7,12 @@ All notable changes to this project will be documented in this file.
### Changed

- Document Helm deployed RBAC permissions and remove unnecessary permissions ([#693]).
- Bump `stackable-operator` to 0.110.0 and `kube` to 3.1.0 ([#695]).
- Replace untyped config overrides with typed `HiveConfigOverrides` for `hive-site.xml` and `security.properties`.
Comment thread
sbernauer marked this conversation as resolved.
Outdated
- Require explicit `SecretClassVolumeProvisionParts` when provisioning secret volumes.
Comment thread
sbernauer marked this conversation as resolved.
Outdated

[#693]: https://github.com/stackabletech/hive-operator/pull/693
[#695]: https://github.com/stackabletech/hive-operator/pull/695

## [26.3.0] - 2026-03-16

Expand Down
97 changes: 66 additions & 31 deletions Cargo.lock

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

4 changes: 1 addition & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository = "https://github.com/stackabletech/hive-operator"

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

anyhow = "1.0"
built = { version = "0.8", features = ["chrono", "git2"] }
Expand All @@ -20,8 +20,6 @@ const_format = "0.2"
fnv = "1.0"
futures = { version = "0.3", features = ["compat"] }
indoc = "2.0"
# We pin the kube version, as we use a patch for 2.0.1 below
kube = "=2.0.1"
pin-project = "1.1"
rstest = "0.26"
semver = "1.0"
Expand Down
Loading
Loading