Skip to content

Commit 7574192

Browse files
committed
update changelogs and version
1 parent 8213396 commit 7574192

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,12 @@
4040
- `intake`: [v0.1.0](services/intake/CHANGELOG.md#v010)
4141
- **New**: STACKIT Intake module can be used to manage the STACKIT Intake. Manage your `IntakeRunners`, `Intakes` and `IntakeUsers`
4242
- `kms`:
43+
- [v0.3.0](services/kms/CHANGELOG.md#v030)
44+
- **Breaking Change:** Updated `create_key()` and `create_wrapping_key()` method signatures to require new `access_scope` parameter
45+
- **Breaking Change:** Added new required `access_scope` field to `Key` and `WrappingKey` models
46+
- **Feature:** Add new `AccessScope` enum with values `PUBLIC` and `SNA` for managing key access permissions
47+
- **Feature:** Add new `Protection` enum with value `SOFTWARE` as a replacement for the deprecated `backend` field
48+
- **Deprecation:** The `backend` field is now deprecated in all relevant models. Use the new `protection` field instead
4349
- [v0.2.0](services/kms/CHANGELOG.md#v020)
4450
- **Breaking Change:** Change return type from `Key` to `Version` for `import_key()` and `rotate_key()` methods
4551
- **Internal:** Add HTTP 409 (Conflict) error handling to API methods

services/kms/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## v0.3.0
2+
- **Breaking Change:** Updated `create_key()` and `create_wrapping_key()` method signatures to require new `access_scope` parameter
3+
- **Breaking Change:** Added new required `access_scope` field to `Key` and `WrappingKey` models
4+
- **Feature:** Add new `AccessScope` enum with values `PUBLIC` and `SNA` for managing key access permissions
5+
- **Feature:** Add new `Protection` enum with value `SOFTWARE` as a replacement for the deprecated `backend` field
6+
- **Feature:** Add new `access_scope` field to `CreateKeyPayload` and `CreateWrappingKeyPayload` models
7+
- **Feature:** Add new `protection` field to `CreateKeyPayload`, `CreateWrappingKeyPayload`, `Key`, and `WrappingKey` models
8+
- **Deprecation:** The `backend` field is now deprecated in all relevant models. Use the new `protection` field instead
9+
110
## v0.2.0
211
- **Breaking Change:** Change return type from `Key` to `Version` for `import_key()` and `rotate_key()` methods
312
- **Internal:** Add HTTP 409 (Conflict) error handling to API methods

services/kms/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "stackit-kms"
33

44
[tool.poetry]
55
name = "stackit-kms"
6-
version = "v0.2.0"
6+
version = "v0.3.0"
77
authors = [
88
"STACKIT Developer Tools <developer-tools@stackit.cloud>",
99
]

0 commit comments

Comments
 (0)