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
10 changes: 5 additions & 5 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions crates/stackable-operator/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.95.0] - 2025-08-21

### Added

- Add `ProbeBuilder` to build Kubernetes container probes ([#1078]).
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.94.0"
version = "0.95.0"
authors.workspace = true
license.workspace = true
edition.workspace = true
Expand Down
11 changes: 11 additions & 0 deletions crates/stackable-shared/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

All notable changes to this project will be documented in this file.

## [0.0.2] - 2025-08-21

### Added

- Some modules have been moved into the `stackable-shared` crate, so that they can also be
used in `stackable-certs` and `stackable-webhook` ([#1074]):
- The module `stackable_operator::time` has moved to `stackable_operator::shared::time`
- The module `stackable_operator::commons::secret` has moved to `stackable_operator::shared::secret`

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

## [0.0.1]

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/stackable-shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stackable-shared"
version = "0.0.1"
version = "0.0.2"
authors.workspace = true
license.workspace = true
edition.workspace = true
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.8.0"
version = "0.8.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.8.1] - 2025-08-21

### Fixed

- Replace the hardcoded `::stackable_versioned` path in the `tracking_from` function with the configurable crate override ([#1079]).
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.8.0"
version = "0.8.1"
authors.workspace = true
license.workspace = true
edition.workspace = true
Expand Down
2 changes: 2 additions & 0 deletions crates/stackable-webhook/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.5.0] - 2025-08-21

### Changed

- BREAKING: Re-write the `ConversionWebhookServer`.
Expand Down
2 changes: 1 addition & 1 deletion crates/stackable-webhook/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stackable-webhook"
version = "0.4.0"
version = "0.5.0"
authors.workspace = true
license.workspace = true
edition.workspace = true
Expand Down