Skip to content

Commit 9df35e7

Browse files
committed
chore: Merge branch 'main' into chore/add-crd-versioning
2 parents 36361cd + 5fdc47a commit 9df35e7

File tree

8 files changed

+200
-79
lines changed

8 files changed

+200
-79
lines changed

Cargo.lock

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

crates/stackable-operator/CHANGELOG.md

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

55
## [Unreleased]
66

7+
## [0.92.0] - 2025-04-14
8+
9+
### Added
10+
11+
- Adds new CLI arguments and environment variables ([#1010], [#1012]).
12+
- Use `--file-log-max-files` (or `FILE_LOG_MAX_FILES`) to limit the number of log files kept.
13+
- Use `--console-log-format` (or `CONSOLE_LOG_FORMAT`) to set the format to `plain` (default) or `json`.
14+
- See detailed [stackable-telemetry changelog](../stackable-telemetry/CHANGELOG.md#060---2025-04-14).
15+
16+
### Changed
17+
18+
- BREAKING: Update and align telemetry related CLI arguments of `ProductOperatorRun`, see detailed
19+
changelog [stackable-telemetry changelog](../stackable-telemetry/CHANGELOG.md#060---2025-04-14) ([#1009]).
20+
21+
[#1009]: https://github.com/stackabletech/operator-rs/pull/1009
22+
[#1010]: https://github.com/stackabletech/operator-rs/pull/1010
23+
[#1012]: https://github.com/stackabletech/operator-rs/pull/1012
24+
725
## [0.91.1] - 2025-04-09
826

927
### Added

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.91.1"
4+
version = "0.92.0"
55
authors.workspace = true
66
license.workspace = true
77
edition.workspace = true

crates/stackable-telemetry/CHANGELOG.md

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

55
## [Unreleased]
66

7+
## [0.6.0] - 2025-04-14
8+
9+
### Added
10+
11+
- Add support for JSON console log output ([#1012]).
12+
- A new CLI argument was added: `--console-log-format`. It can be set to `plain` (default),
13+
or `json`.
14+
15+
### Changed
16+
17+
- BREAKING: Update and align telemetry related CLI arguments in `TelemetryOptions` ([#1009]).
18+
- `--console-log-disabled` instead of `--no-console-output`.
19+
- `--file-log-directory` instead of `--rolling-logs`.
20+
- `--file-log-rotation-period` instead of `--rolling-logs-period`.
21+
- `--otel-log-exporter-enabled` instead of `--otlp-logs`.
22+
- `--otel-trace-exporter-enabled` instead of `--otlp-traces`.
23+
- BREAKING: Update and align telemetry related environment variables ([#1009]).
24+
- `CONSOLE_LOG_LEVEL` instead of `CONSOLE_LOG`.
25+
- `FILE_LOG_LEVEL` instead of `FILE_LOG`.
26+
- `OTEL_LOG_EXPORTER_LEVEL` instead of `OTLP_LOG`.
27+
- `OTEL_TRACE_EXPORTER_LEVEL` instead of `OTLP_TRACE`.
28+
- BREAKING: Allow configuration of `file_log_max_files` ([#1010]).
29+
- Adds the `--file-log-max-files` CLI argument (env: `FILE_LOG_MAX_FILES`).
30+
- `FileLogSettingsBuilder::with_max_log_files` which took a `usize` was renamed to
31+
`FileLogSettingsBuilder::with_max_files` and now takes an `impl Into<Option<usize>>`
32+
for improved builder ergonomics.
33+
34+
[#1009]: https://github.com/stackabletech/operator-rs/pull/1009
35+
[#1010]: https://github.com/stackabletech/operator-rs/pull/1010
36+
[#1012]: https://github.com/stackabletech/operator-rs/pull/1012
37+
738
## [0.5.0] - 2025-04-08
839

940
### Added

crates/stackable-telemetry/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stackable-telemetry"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors.workspace = true
55
license.workspace = true
66
edition.workspace = true

0 commit comments

Comments
 (0)