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
2 changes: 2 additions & 0 deletions crates/stackable-operator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@ All notable changes to this project will be documented in this file.
### Fixed

- Re-export versioned CRD-specific error types ([#1025]).
- Re-export versioned common CRD enums ([#1029]).

[#968]: https://github.com/stackabletech/operator-rs/pull/968
[#1025]: https://github.com/stackabletech/operator-rs/pull/1025
[#1029]: https://github.com/stackabletech/operator-rs/pull/1029

## [0.92.0] - 2025-04-14

Expand Down
3 changes: 3 additions & 0 deletions crates/stackable-operator/src/crd/listener/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ mod class;
mod core;
mod listeners;

pub use class::ListenerClass;
pub use listeners::{Listener, PodListeners};

// Group all v1alpha1 items in one module.
pub mod v1alpha1 {
pub use super::{class::v1alpha1::*, core::v1alpha1::*, listeners::v1alpha1::*};
Expand Down
3 changes: 3 additions & 0 deletions crates/stackable-operator/src/crd/s3/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
mod bucket;
mod connection;

pub use bucket::S3Bucket;
pub use connection::S3Connection;

// Group all v1alpha1 items in one module.
pub mod v1alpha1 {
pub use super::{bucket::v1alpha1::*, connection::v1alpha1::*};
Expand Down