Skip to content

chore: Release stackable-operator 0.88.0, stackable-versioned 0.7.1 #996

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 2, 2025
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
6 changes: 3 additions & 3 deletions Cargo.lock

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

5 changes: 4 additions & 1 deletion crates/stackable-operator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,17 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [0.88.0] - 2025-04-02

### Added

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

### Changed

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

[#950]: https://github.com/stackabletech/operator-rs/pull/950
[#989]: https://github.com/stackabletech/operator-rs/pull/989
Expand Down
2 changes: 1 addition & 1 deletion crates/stackable-operator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "stackable-operator"
description = "Stackable Operator Framework"
version = "0.87.5"
version = "0.88.0"
authors.workspace = true
license.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/stackable-telemetry/src/tracing/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ pub enum Error {
/// Settings::builder()
/// .with_environment_variable("TEST_FILE_LOG")
/// .with_default_level(LevelFilter::INFO)
/// .file_log_settings_builder("/tmp/logs")
/// .file_log_settings_builder("/tmp/logs", "tracing-rs.log")
/// .build()
/// )
/// .with_otlp_log_exporter(otlp_log_flag.then(|| {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ mod test {
let result = Settings::builder()
.with_environment_variable("hello")
.with_default_level(LevelFilter::DEBUG)
.file_log_settings_builder(PathBuf::from("/logs"), "tracing-rs.json")
.file_log_settings_builder(PathBuf::from("/logs"), "tracing-rs.log")
.with_rotation_period(Rotation::HOURLY)
.with_max_log_files(6)
.build();
Expand Down
2 changes: 1 addition & 1 deletion crates/stackable-versioned-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stackable-versioned-macros"
version = "0.7.0"
version = "0.7.1"
authors.workspace = true
license.workspace = true
edition.workspace = true
Expand Down
2 changes: 2 additions & 0 deletions crates/stackable-versioned/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [0.7.1] - 2025-04-02

### Fixed

- Correctly emit generic type parameter defaults in enum/struct definition blocks ([#991]).
Expand Down
2 changes: 1 addition & 1 deletion crates/stackable-versioned/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stackable-versioned"
version = "0.7.0"
version = "0.7.1"
authors.workspace = true
license.workspace = true
edition.workspace = true
Expand Down