Skip to content
Merged
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
12 changes: 11 additions & 1 deletion CHANGELOG.md
Comment thread
siegfriedweber marked this conversation as resolved.
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,22 @@

## [Unreleased]

### Added

- Support floating tags for product images via the new `spec.image.stackableVersionPolicy` field
([#809]).

### Changed

- BREAKING: `spec.image.stackableVersion` must now be a full, valid semver version, e.g. `26.7.1`.
Abbreviated values such as `26.7` are no longer accepted ([#809]).
- BREAKING: `spec.image.pullPolicy` now defaults to `IfNotPresent` for non-floating tags instead of
always defaulting to `Always` ([#809]).
- Internal operator refactoring: introduce a build() step in the reconciler that
assembles all relevant Kubernetes resources before anything is applied ([#776]).
- The RBAC ServiceAccount and RoleBinding are now built with the operator-rs `v2::rbac`
functions and carry the full set of recommended labels ([#782]).
- Bump stackable-operator to 0.116.0 ([#786], [#799]).
- Bump stackable-operator to 0.118.0 ([#786], [#799], [#809]).
- The reconciler now applies resources and derives the cluster status in discrete
apply and update_status steps ([#787]).
- All product containers now run with `securityContext.runAsNonRoot` set to `true` to improve security ([#792]).
Expand Down Expand Up @@ -43,6 +52,7 @@
[#797]: https://github.com/stackabletech/hbase-operator/pull/797
[#799]: https://github.com/stackabletech/hbase-operator/pull/799
[#803]: https://github.com/stackabletech/hbase-operator/pull/803
[#809]: https://github.com/stackabletech/hbase-operator/pull/809

## [26.7.0] - 2026-07-21

Expand Down
33 changes: 19 additions & 14 deletions Cargo.lock
Comment thread
siegfriedweber marked this conversation as resolved.

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

73 changes: 48 additions & 25 deletions Cargo.nix

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

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

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

anyhow = "1.0"
built = { version = "0.8", features = ["chrono", "git2"] }
Expand All @@ -20,6 +20,7 @@ fnv = "1.0"
futures = { version = "0.3", features = ["compat"] }
indoc = "2.0"
rstest = "0.26"
semver = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
Expand Down
18 changes: 9 additions & 9 deletions crate-hashes.json
Comment thread
siegfriedweber marked this conversation as resolved.

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

Loading
Loading