diff --git a/crates/stackable-operator/CHANGELOG.md b/crates/stackable-operator/CHANGELOG.md index 47b9af15..814e7f34 100644 --- a/crates/stackable-operator/CHANGELOG.md +++ b/crates/stackable-operator/CHANGELOG.md @@ -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 diff --git a/crates/stackable-operator/src/crd/listener/mod.rs b/crates/stackable-operator/src/crd/listener/mod.rs index 398ef37e..4820bd29 100644 --- a/crates/stackable-operator/src/crd/listener/mod.rs +++ b/crates/stackable-operator/src/crd/listener/mod.rs @@ -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::*}; diff --git a/crates/stackable-operator/src/crd/s3/mod.rs b/crates/stackable-operator/src/crd/s3/mod.rs index c5b42b92..ab4a84c2 100644 --- a/crates/stackable-operator/src/crd/s3/mod.rs +++ b/crates/stackable-operator/src/crd/s3/mod.rs @@ -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::*};