Skip to content

Commit 5f5b857

Browse files
committed
Merge remote-tracking branch 'origin/main' into chore/pedantic-clippy-lints
2 parents 78c2034 + 03913eb commit 5f5b857

37 files changed

Lines changed: 2318 additions & 545 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ json-patch = "4.0.0"
4242
k8s-openapi = { version = "0.27.0", default-features = false, features = ["schemars", "v1_35"] }
4343
# We use rustls instead of openssl for easier portability, e.g. so that we can build stackablectl without the need to vendor (build from source) openssl
4444
# We use ring instead of aws-lc-rs, as this currently fails to build in "make run-dev"
45-
# We need a few schema fixes in kube, that went into main, but are not released yet
46-
kube = { git = "https://github.com/kube-rs/kube-rs", rev = "fe69cc486ff8e62a7da61d64ec3ebbd9e64c43b5", version = "=3.0.1", default-features = false, features = ["client", "jsonpatch", "runtime", "derive", "admission", "rustls-tls", "ring"] }
45+
kube = { version = "3.1.0", default-features = false, features = ["client", "jsonpatch", "runtime", "derive", "admission", "rustls-tls", "ring"] }
4746
opentelemetry = "0.31.0"
4847
opentelemetry_sdk = { version = "0.31.0", features = ["rt-tokio"] }
4948
opentelemetry-appender-tracing = "0.31.0"
@@ -69,7 +68,7 @@ serde_json = "1.0.128"
6968
serde_yaml = "0.9.34" # This is the last available version, see https://github.com/dtolnay/serde-yaml/releases/tag/0.9.34 for details
7069
sha2 = { version = "0.10.8", features = ["oid"] }
7170
signature = "2.2.0"
72-
snafu = "0.8.4"
71+
snafu = "0.9.0"
7372
stackable-operator-derive = { path = "stackable-operator-derive" }
7473
strum = { version = "0.28.0", features = ["derive"] }
7574
syn = "2.0.77"

crates/stackable-operator/CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,36 @@ All notable changes to this project will be documented in this file.
66

77
### Added
88

9+
- Add generic database connection mechanism ([#1163]).
10+
- Add `config_overrides` module with `KeyValueOverridesProvider` trait, enabling
11+
structured config file formats (e.g. JSON) in addition to key-value overrides ([#1177]).
12+
13+
### Changed
14+
15+
- BREAKING: Change signature of `ContainerBuilder::add_env_vars` from `Vec<EnvVar>` to `IntoIterator<Item = EnvVar>` ([#1163]).
16+
- BREAKING: Remove `EXPERIMENTAL_` prefix in `CONFIG_OVERRIDE_FILE_HEADER_KEY` and `CONFIG_OVERRIDE_FILE_FOOTER_KEY` ([#1191]).
17+
- BREAKING: Bump `kube` from a custom version (`fe69cc486ff8e62a7da61d64ec3ebbd9e64c43b5`, which is between `3.0.1` and `3.1.0`
18+
and was needed to pull in schema fixes) to `3.1.0`. This means that the CRD schema generation bugs
19+
[#1934](https://github.com/kube-rs/kube/pull/1934) and [#1942](https://github.com/kube-rs/kube/pull/1942) are fixed ([#1192]).
20+
- BREAKING: Add `ConfigOverrides` type parameter to `CommonConfiguration`, `Role` and `RoleGroup`.
21+
The `config_overrides` field is now generic instead of `HashMap<String, HashMap<String, String>>` ([#1177]).
22+
- BREAKING: In [#1178] the `clientAuthenticationMethod` was added to the `ClientAuthenticationOptions` struct,
23+
resulting it to show up in all product CRDs. even those that don't support configuring the client authentication method.
24+
With this change, operators need to opt-in to the `clientAuthenticationMethod` field by using the new
25+
`ClientAuthenticationMethodOption` struct for the generic type `ProductSpecificClientAuthenticationOptions` on
26+
`ClientAuthenticationOptions`. That way the struct definitions (as well as docs etc.) remain in stackable-operator,
27+
but operators can decide if they want to offer support for this field or not ([#1194]).
28+
29+
[#1163]: https://github.com/stackabletech/operator-rs/pull/1163
30+
[#1177]: https://github.com/stackabletech/operator-rs/pull/1177
31+
[#1191]: https://github.com/stackabletech/operator-rs/pull/1191
32+
[#1192]: https://github.com/stackabletech/operator-rs/pull/1192
33+
[#1194]: https://github.com/stackabletech/operator-rs/pull/1194
34+
35+
## [0.109.0] - 2026-04-07
36+
37+
### Added
38+
939
- Git sync: add support for CAs ([#1154]).
1040
- Add support for specifying a `clientAuthenticationMethod` for OIDC ([#1178]).
1141
This was originally done in [#1158] and had been reverted in [#1170].
@@ -16,6 +46,8 @@ All notable changes to this project will be documented in this file.
1646

1747
### Changed
1848

49+
- Bump stackable-versioned to `0.9.0`, refer to its [changelog](../stackable-versioned/CHANGELOG.md) ([#1189]).
50+
- Bump stackable-webhook to `0.9.1`, refer to its [changelog](../stackable-webhook/CHANGELOG.md) ([#1189]).
1951
- BREAKING: Add mandatory `provision_parts` argument to `SecretOperatorVolumeSourceBuilder::new` ([#1165]).
2052
It now forces the caller to make an explicit choice if the public parts are sufficient or if private
2153
(e.g. a certificate for the Pod) parts are needed as well. This is done to avoid accidentally requesting
@@ -42,6 +74,7 @@ All notable changes to this project will be documented in this file.
4274
[#1182]: https://github.com/stackabletech/operator-rs/pull/1182
4375
[#1186]: https://github.com/stackabletech/operator-rs/pull/1186
4476
[#1187]: https://github.com/stackabletech/operator-rs/pull/1187
77+
[#1189]: https://github.com/stackabletech/operator-rs/pull/1189
4578

4679
## [0.108.0] - 2026-03-10
4780

crates/stackable-operator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "stackable-operator"
33
description = "Stackable Operator Framework"
4-
version = "0.108.0"
4+
version = "0.109.0"
55
authors.workspace = true
66
license.workspace = true
77
edition.workspace = true

0 commit comments

Comments
 (0)