Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
- **Breaking change:** Remove enum `CRINAME_DOCKER`
- **Breaking change:** Remove `RuntimeError`
- **Docs:** Extend description of `AccessScope`
- `kms`: [v1.6.0](services/kms/CHANGELOG.md#v160)
- `v1api`: **Breaking change:** Change type of field `PublicKey` from `string` to `*string` in `WrappingKey` model struct
- Deprecated SDK layer in root of the module: The field `PublicKey` in the `WrappingKey` model struct is not marked as required anymore

## Release (2026-03-27)
- `alb`:
Expand Down Expand Up @@ -93,7 +96,7 @@
- **Dependencies:** Bump resourcemanager from `v0.19.0` to `v0.20.1`
- `intake`: [v0.7.1](services/intake/CHANGELOG.md#v071)
- **Dependencies:** Bump STACKIT SDK core module from `v0.22.0` to `v0.23.0`
- `kms`: [v1.5.1](services/kms/CHANGELOG.md#v151)
- `kms`: [v1.5.1](services/kms/CHANGELOG.md#v151)
- **Dependencies:** Bump STACKIT SDK core module from `v0.22.0` to `v0.23.0`
- `loadbalancer`:
- [v1.10.1](services/loadbalancer/CHANGELOG.md#v1101)
Expand Down
4 changes: 4 additions & 0 deletions services/kms/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v1.6.0
- `v1api`: **Breaking change:** Change type of field `PublicKey` from `string` to `*string` in `WrappingKey` model struct
- Deprecated SDK layer in root of the module: The field `PublicKey` in the `WrappingKey` model struct is not marked as required anymore

## v1.5.1
- **Dependencies:** Bump STACKIT SDK core module from `v0.22.0` to `v0.23.0`

Expand Down
2 changes: 1 addition & 1 deletion services/kms/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.5.1
v1.6.0
24 changes: 15 additions & 9 deletions services/kms/model_wrapping_key.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion services/kms/oas_commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0e64886dd0847341800d7191ed193b75413be998
779c34469d663919ed700f2c69487eb5cccf70f3
36 changes: 22 additions & 14 deletions services/kms/v1api/model_wrapping_key.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion services/kms/v1api/wait/wait_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ func fixtureWrappingKey(state string) *kms.WrappingKey {
Purpose: kms.WRAPPINGPURPOSE_WRAP_SYMMETRIC_KEY,
State: state,
ExpiresAt: testDate,
PublicKey: testPublicKey,
PublicKey: utils.Ptr(testPublicKey),
}
}

Expand Down
Loading