Skip to content

Commit 6c4b022

Browse files
authored
chore: Release stackable-operator 0.88.0, stackable-versioned 0.7.1 (#996)
* chore: Release stackable-operator 0.88.0, stackable-versioned 0.7.1 * test: Fix rolling log file doc and unit test This was missed in #995. * chore: Update changelog * chore: Update release date
1 parent 3374ae1 commit 6c4b022

File tree

8 files changed

+14
-9
lines changed

8 files changed

+14
-9
lines changed

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/stackable-operator/CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,17 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [0.88.0] - 2025-04-02
8+
79
### Added
810

911
- Add Deployments to `ClusterResource`s ([#992]).
1012
- Add `DeploymentConditionBuilder` ([#993]).
1113

1214
### Changed
1315

14-
- Deprecate `stackable_operator::logging::initialize_logging()`. It's recommended to use `stackable-telemetry` instead ([#950], [#989]).
16+
- Deprecate `stackable_operator::logging::initialize_logging()`.
17+
It's recommended to use `stackable-telemetry` or `#[allow(deprecated)]` instead ([#950], [#989]).
1518

1619
[#950]: https://github.com/stackabletech/operator-rs/pull/950
1720
[#989]: https://github.com/stackabletech/operator-rs/pull/989

crates/stackable-operator/Cargo.toml

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

crates/stackable-telemetry/src/tracing/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ pub enum Error {
149149
/// Settings::builder()
150150
/// .with_environment_variable("TEST_FILE_LOG")
151151
/// .with_default_level(LevelFilter::INFO)
152-
/// .file_log_settings_builder("/tmp/logs")
152+
/// .file_log_settings_builder("/tmp/logs", "tracing-rs.log")
153153
/// .build()
154154
/// )
155155
/// .with_otlp_log_exporter(otlp_log_flag.then(|| {

crates/stackable-telemetry/src/tracing/settings/file_log.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ mod test {
113113
let result = Settings::builder()
114114
.with_environment_variable("hello")
115115
.with_default_level(LevelFilter::DEBUG)
116-
.file_log_settings_builder(PathBuf::from("/logs"), "tracing-rs.json")
116+
.file_log_settings_builder(PathBuf::from("/logs"), "tracing-rs.log")
117117
.with_rotation_period(Rotation::HOURLY)
118118
.with_max_log_files(6)
119119
.build();

crates/stackable-versioned-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stackable-versioned-macros"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
authors.workspace = true
55
license.workspace = true
66
edition.workspace = true

crates/stackable-versioned/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [0.7.1] - 2025-04-02
8+
79
### Fixed
810

911
- Correctly emit generic type parameter defaults in enum/struct definition blocks ([#991]).

crates/stackable-versioned/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stackable-versioned"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
authors.workspace = true
55
license.workspace = true
66
edition.workspace = true

0 commit comments

Comments
 (0)