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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
## Release (2025-MM-DD)
-`kms`: [v0.4.0](services/kms/CHANGELOG.md#v040)
- Switch to API version `v1` of STACKIT KMS service (previously `v1beta`)
-**Breaking Change:** Removal of deprecated `Backend` model
-**Breaking Change:** Mark `protection` attribute as required in `Key`, `CreateKeyPayload`, `CreateWrappingKeyPayload` and `WrappingKey` model

## Release (2025-08-29)
-`kms`: [v0.3.0](services/kms/CHANGELOG.md#v030)
-**Breaking Change:** Updated `create_key()` and `create_wrapping_key()` method signatures to require new `access_scope` parameter
Expand Down
5 changes: 5 additions & 0 deletions services/kms/CHANGELOG.md
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
## v0.4.0
- Switch to API version `v1` of STACKIT KMS service (previously `v1beta`)
-**Breaking Change:** Removal of deprecated `Backend` model
-**Breaking Change:** Mark `protection` attribute as required in `Key`, `CreateKeyPayload`, `CreateWrappingKeyPayload` and `WrappingKey` model

## v0.3.0
-**Breaking Change:** Updated `create_key()` and `create_wrapping_key()` method signatures to require new `access_scope` parameter
-**Breaking Change:** Added new required `access_scope` field to `Key` and `WrappingKey` models
Expand Down
4 changes: 2 additions & 2 deletions services/kms/pyproject.toml
Original file line numberDiff line numberDiff line change
Expand Up@@ -3,7 +3,7 @@ name = "stackit-kms"

[tool.poetry]
name = "stackit-kms"
version = "v0.3.0"
version = "v0.4.0"
authors = [
"STACKIT Developer Tools <[email protected]>",
]
Expand DownExpand Up@@ -96,4 +96,4 @@ docstring-quotes = '"""'
multiline-quotes = '"""'
ban-relative-imports = true
# Exclude generated code
extend-exclude = [ "src/stackit/*/models/*", "src/stackit/*/api/*", "src/stackit/*/*.py" ]
extend-exclude = [ "src/stackit/*/models/*", "src/stackit/*/api/*", "src/stackit/*/*.py" ]
4 changes: 1 addition & 3 deletions services/kms/src/stackit/kms/__init__.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -7,7 +7,7 @@
This API provides endpoints for managing keys and key rings.
The version of the OpenAPI document: 1beta.0.0
The version of the OpenAPI document: 1.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
Expand All@@ -30,7 +30,6 @@
"ApiException",
"AccessScope",
"Algorithm",
"Backend",
"CreateKeyPayload",
"CreateKeyRingPayload",
"CreateWrappingKeyPayload",
Expand DownExpand Up@@ -75,7 +74,6 @@
# import models into sdk package
fromstackit.kms.models.access_scopeimportAccessScopeasAccessScope
fromstackit.kms.models.algorithmimportAlgorithmasAlgorithm
fromstackit.kms.models.backendimportBackendasBackend
fromstackit.kms.models.create_key_payloadimportCreateKeyPayloadasCreateKeyPayload
fromstackit.kms.models.create_key_ring_payloadimport (
CreateKeyRingPayloadasCreateKeyRingPayload,
Expand Down
Loading
Loading