We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99c7535 commit 987b00cCopy full SHA for 987b00c
crates/stackable-operator/CHANGELOG.md
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
5
## [Unreleased]
6
7
+### Changed
8
+
9
+- Make `region.name` field in in S3ConnectionSpec public ([#980]).
10
11
+[#980]: https://github.com/stackabletech/operator-rs/pull/980
12
13
## [0.87.1] - 2025-03-10
14
15
### Changed
crates/stackable-operator/src/commons/s3/crd.rs
@@ -99,7 +99,7 @@ pub enum S3AccessStyle {
99
#[serde(rename_all = "camelCase")]
100
pub struct Region {
101
#[serde(default = "default_region_name")]
102
- name: String,
+ pub name: String,
103
}
104
105
impl Default for Region {
0 commit comments