Skip to content

Commit 987b00c

Browse files
authored
chore(stackable-operator): Make region.name public (#980)
* chore(stackable-operator): Make region.name public * chore: Update changelog
1 parent 99c7535 commit 987b00c

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

crates/stackable-operator/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

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+
713
## [0.87.1] - 2025-03-10
814

915
### Changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ pub enum S3AccessStyle {
9999
#[serde(rename_all = "camelCase")]
100100
pub struct Region {
101101
#[serde(default = "default_region_name")]
102-
name: String,
102+
pub name: String,
103103
}
104104

105105
impl Default for Region {

0 commit comments

Comments
 (0)