Skip to content

Commit 3dccf99

Browse files
committed
chore: Upgrade stackable-operator to 0.110.1
1 parent f0fc3f9 commit 3dccf99

6 files changed

Lines changed: 44 additions & 47 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ All notable changes to this project will be documented in this file.
1111
### Changed
1212

1313
- BREAKING: `configOverrides` now only accepts the supported config file names `runtime.properties`, `jvm.config` and `security.properties`. Previously arbitrary keys were silently accepted but ignored ([#813]).
14-
- Bump `stackable-operator` to 0.110.0 and `kube` to 3.1.0 ([#813]).
14+
- Bump `stackable-operator` to 0.110.1 and `kube` to 3.1.0 ([#813]).
1515
- Document Helm deployed RBAC permissions and remove unnecessary permissions ([#810]).
1616

1717
[#810]: https://github.com/stackabletech/druid-operator/pull/810

Cargo.lock

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

Cargo.nix

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repository = "https://github.com/stackabletech/druid-operator"
1111

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

1616
anyhow = "1.0"
1717
built = { version = "0.8", features = ["chrono", "git2"] }

crate-hashes.json

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

rust/operator-binary/src/authentication/oidc.rs

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,10 @@ fn add_authenticator_config(
6969
Some(scopes.join(" ")),
7070
);
7171

72-
// Serialize the enum to get the snake_case string representation
73-
let method_string =
74-
serde_json::to_value(oidc.product_specific_fields.client_authentication_method)
75-
.expect("serializing ClientAuthenticationMethod to string");
76-
let method_string = method_string
77-
.as_str()
78-
.expect("ClientAuthenticationMethod should serialize to a string");
72+
let method_string = oidc
73+
.product_specific_fields
74+
.client_authentication_method
75+
.as_ref();
7976
config.insert(
8077
"druid.auth.pac4j.oidc.clientAuthenticationMethod".to_string(),
8178
Some(method_string.to_string()),

0 commit comments

Comments
 (0)