Skip to content

fix: Re-export versioned common enums #1029

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 3 commits into from
May 9, 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
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