File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed
crates/stackable-operator Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -13,6 +13,9 @@ mod class;
1313mod core;
1414mod listeners;
1515
16+ pub use class:: ListenerClass ;
17+ pub use listeners:: { Listener , PodListeners } ;
18+
1619// Group all v1alpha1 items in one module.
1720pub mod v1alpha1 {
1821 pub use super :: { class:: v1alpha1:: * , core:: v1alpha1:: * , listeners:: v1alpha1:: * } ;
Original file line number Diff line number Diff line change 11mod bucket;
22mod connection;
33
4+ pub use bucket:: S3Bucket ;
5+ pub use connection:: S3Connection ;
6+
47// Group all v1alpha1 items in one module.
58pub mod v1alpha1 {
69 pub use super :: { bucket:: v1alpha1:: * , connection:: v1alpha1:: * } ;
You can’t perform that action at this time.
0 commit comments