Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@
- [v0.1.0](services/logs/CHANGELOG.md#v010)
- **New:** API for logs service
- `kms`:
- [v1.3.0](services/kms/CHANGELOG.md#v130)
- Set field `Description` to optional in struct `Key`, `KeyRing` and `WrappingKey`
- **Breaking change:** Remove `description` parameter from `NewKey`, `NewKeyRing` and `NewWrappingKey` constructors
- **Feature:** Add method `HasDescription`in `Key`, `KeyRing` and `WrappingKey` models
- [v1.2.1](services/kms/CHANGELOG.md#v121)
- **Bugfix:** Correctly handle file closing for file uploads
- Bump STACKIT SDK core module from `v0.20.1` to `v0.21.0`
Expand Down
5 changes: 5 additions & 0 deletions services/kms/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v1.3.0
- Set field `Description` to optional in struct `Key`, `KeyRing` and `WrappingKey`
- **Breaking change:** Remove `description` parameter from `NewKey`, `NewKeyRing` and `NewWrappingKey` constructors
- **Feature:** Add method `HasDescription`in `Key`, `KeyRing` and `WrappingKey` models

Comment thread
GokceGK marked this conversation as resolved.
## v1.2.1
- **Bugfix:** Correctly handle file closing for file uploads
- Bump STACKIT SDK core module from `v0.20.1` to `v0.21.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.2.1
v1.3.0
24 changes: 14 additions & 10 deletions services/kms/model_key.go

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

24 changes: 14 additions & 10 deletions services/kms/model_key_ring.go

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

24 changes: 14 additions & 10 deletions services/kms/model_wrapping_key.go

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

Loading