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
5 changes: 5 additions & 0 deletions crates/stackable-telemetry/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ All notable changes to this project will be documented in this file.

- Bump `opentelemetry` and related crates to `0.29.x` and `tracing-opentelemetry` to `0.30.0` ([#1021]).

### Fixed

- Only derive `clap::ValueEnum` if the `clap` feature is enabled ([#1026]).

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

## [0.6.0] - 2025-04-14

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,8 @@ pub enum ConsoleLogSettings {
/// Console subscriber log event output formats.
///
/// Currently, only [Plain][Format::Plain] is supported.
#[derive(
Clone, Debug, Default, Eq, PartialEq, strum::EnumString, strum::Display, clap::ValueEnum,
)]
#[derive(Clone, Debug, Default, Eq, PartialEq, strum::EnumString, strum::Display)]
#[cfg_attr(feature = "clap", derive(clap::ValueEnum))]
#[strum(serialize_all = "snake_case")]
pub enum Format {
/// Use the plain unstructured log output.
Expand Down