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
95 changes: 50 additions & 45 deletions Cargo.lock

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

6 changes: 6 additions & 0 deletions crates/stackable-operator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

### Added

- Derive `strum::AsRefStr` for `ClientAuthenticationMethod` ([#1197]).

[#1197]: https://github.com/stackabletech/operator-rs/pull/1197

## [0.110.0] - 2026-04-10

### Added
Expand Down
2 changes: 2 additions & 0 deletions crates/stackable-operator/src/crd/authentication/oidc/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,10 @@ pub mod versioned {
PartialEq,
PartialOrd,
Serialize,
strum::AsRefStr,
)]
#[serde(rename_all = "snake_case")]
#[strum(serialize_all = "snake_case")]
pub enum ClientAuthenticationMethod {
/// Authenticate using HTTP Basic authentication with client_id and client_secret.
/// This is the default method according to the OIDC spec.
Expand Down
Loading