Skip to content

Commit dddd78f

Browse files
authored
fix: Re-export versioned common enums (#1029)
* fix: Re-export versioned common structs * changelog * changelog
1 parent d0ac5ae commit dddd78f

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

crates/stackable-operator/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@ All notable changes to this project will be documented in this file.
1515
### Fixed
1616

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

1920
[#968]: https://github.com/stackabletech/operator-rs/pull/968
2021
[#1025]: https://github.com/stackabletech/operator-rs/pull/1025
22+
[#1029]: https://github.com/stackabletech/operator-rs/pull/1029
2123

2224
## [0.92.0] - 2025-04-14
2325

crates/stackable-operator/src/crd/listener/mod.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ mod class;
1313
mod core;
1414
mod listeners;
1515

16+
pub use class::ListenerClass;
17+
pub use listeners::{Listener, PodListeners};
18+
1619
// Group all v1alpha1 items in one module.
1720
pub mod v1alpha1 {
1821
pub use super::{class::v1alpha1::*, core::v1alpha1::*, listeners::v1alpha1::*};

crates/stackable-operator/src/crd/s3/mod.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
mod bucket;
22
mod connection;
33

4+
pub use bucket::S3Bucket;
5+
pub use connection::S3Connection;
6+
47
// Group all v1alpha1 items in one module.
58
pub mod v1alpha1 {
69
pub use super::{bucket::v1alpha1::*, connection::v1alpha1::*};

0 commit comments

Comments
 (0)