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.
15
15
### Fixed
16
16
17
17
- Re-export versioned CRD-specific error types ([ #1025 ] ).
18
+ - Re-export versioned common CRD enums ([ #1029 ] ).
18
19
19
20
[ #968 ] : https://github.com/stackabletech/operator-rs/pull/968
20
21
[ #1025 ] : https://github.com/stackabletech/operator-rs/pull/1025
22
+ [ #1029 ] : https://github.com/stackabletech/operator-rs/pull/1029
21
23
22
24
## [ 0.92.0] - 2025-04-14
23
25
Original file line number Diff line number Diff line change @@ -13,6 +13,9 @@ mod class;
13
13
mod core;
14
14
mod listeners;
15
15
16
+ pub use class:: ListenerClass ;
17
+ pub use listeners:: { Listener , PodListeners } ;
18
+
16
19
// Group all v1alpha1 items in one module.
17
20
pub mod v1alpha1 {
18
21
pub use super :: { class:: v1alpha1:: * , core:: v1alpha1:: * , listeners:: v1alpha1:: * } ;
Original file line number Diff line number Diff line change 1
1
mod bucket;
2
2
mod connection;
3
3
4
+ pub use bucket:: S3Bucket ;
5
+ pub use connection:: S3Connection ;
6
+
4
7
// Group all v1alpha1 items in one module.
5
8
pub mod v1alpha1 {
6
9
pub use super :: { bucket:: v1alpha1:: * , connection:: v1alpha1:: * } ;
You can’t perform that action at this time.
0 commit comments