Skip to content

Commit

Permalink
chore: bump operator-rs to 0.60.1 (#438)
Browse files Browse the repository at this point in the history
* upgrade operator-rs, format Cargo.toml (consistent with secret-operator)

* remove legacy node selector code

* use snafu errors (stackabletech/operator-rs#694)

* remove unused imports from legacy roleGroup node selector removal

* use new label builders

* enum variant code style per https://docs.stackable.tech/home/nightly/contributor/code-style-guide#_formatting_of_struct_fields_and_enum_variants

* refactor per clippy recommendation: https://rust-lang.github.io/rust-clippy/master/index.html#/format_collect

* make regenerate-charts

* update changelog

* remove extra space in snafu error message

Co-authored-by: Sebastian Bernauer <[email protected]>

---------

Co-authored-by: Sebastian Bernauer <[email protected]>
  • Loading branch information
NickLarsenNZ and sbernauer authored Jan 12, 2024
1 parent 031938e commit 60a9a18
Show file tree
Hide file tree
Showing 11 changed files with 300 additions and 400 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,16 @@
### Changed

- `operator-rs` `0.56.1` -> `0.57.0` ([#425]).
- Use new label builders ([#438]).
- Use Snafu instead of thiserror ([#438]).

### Removed

- [BREAKING] Removed legacy node selector on roleGroups ([#438]).


[#425]: https://github.com/stackabletech/hbase-operator/pull/425
[#438]: https://github.com/stackabletech/hbase-operator/pull/438

## [23.11.0] - 2023-11-24

Expand Down
132 changes: 72 additions & 60 deletions Cargo.lock

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

8 changes: 3 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
[workspace]
members = [
"rust/crd", "rust/operator-binary"
]
members = ["rust/crd", "rust/operator-binary"]
resolver = "2"

[workspace.package]
Expand All @@ -13,7 +11,7 @@ repository = "https://github.com/stackabletech/hbase-operator"

[workspace.dependencies]
anyhow = "1.0"
built = { version = "0.6", features = ["chrono", "git2"] }
built = { version = "0.6", features = ["chrono", "git2"] }
clap = "4.3"
fnv = "1.0"
futures = { version = "0.3", features = ["compat"] }
Expand All @@ -22,7 +20,7 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
snafu = "0.7"
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.57.0" }
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.60.1" }
product-config = { git = "https://github.com/stackabletech/product-config.git", tag = "0.6.0" }
strum = { version = "0.25", features = ["derive"] }
tokio = { version = "1.29", features = ["full"] }
Expand Down
Loading

0 comments on commit 60a9a18

Please sign in to comment.