Skip to content

Commit 60a9a18

Browse files
chore: bump operator-rs to 0.60.1 (#438)
* 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]>
1 parent 031938e commit 60a9a18

File tree

11 files changed

+300
-400
lines changed

11 files changed

+300
-400
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,16 @@
99
### Changed
1010

1111
- `operator-rs` `0.56.1` -> `0.57.0` ([#425]).
12+
- Use new label builders ([#438]).
13+
- Use Snafu instead of thiserror ([#438]).
14+
15+
### Removed
16+
17+
- [BREAKING] Removed legacy node selector on roleGroups ([#438]).
18+
1219

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

1523
## [23.11.0] - 2023-11-24
1624

Cargo.lock

Lines changed: 72 additions & 60 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
[workspace]
2-
members = [
3-
"rust/crd", "rust/operator-binary"
4-
]
2+
members = ["rust/crd", "rust/operator-binary"]
53
resolver = "2"
64

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

1412
[workspace.dependencies]
1513
anyhow = "1.0"
16-
built = { version = "0.6", features = ["chrono", "git2"] }
14+
built = { version = "0.6", features = ["chrono", "git2"] }
1715
clap = "4.3"
1816
fnv = "1.0"
1917
futures = { version = "0.3", features = ["compat"] }
@@ -22,7 +20,7 @@ serde = { version = "1.0", features = ["derive"] }
2220
serde_json = "1.0"
2321
serde_yaml = "0.9"
2422
snafu = "0.7"
25-
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.57.0" }
23+
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.60.1" }
2624
product-config = { git = "https://github.com/stackabletech/product-config.git", tag = "0.6.0" }
2725
strum = { version = "0.25", features = ["derive"] }
2826
tokio = { version = "1.29", features = ["full"] }

0 commit comments

Comments
 (0)