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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@
- Manage your STACKIT Load Balancer certificates
- `lbapplication`: [v0.1.0](services/lbapplication/CHANGELOG.md#v010-2024-12-23)
- Manage your STACKIT Load Balancer applications
- `iaas`: [v0.2.0](services/iaas/CHANGELOG.md#v020-2024-12-23)
- **Feature:** Add new methods to manage affinity groups: `create_affinity_group`, `delete_affinity_group`, `get_affinity_group`, and `list_affinity_group`
- **Feature:** Add new methods to manage backups: `create_backup`, `delete_backup`, `get_backup`, `list_backup`, `restore_backup`, `execute_backup`, `update_backup`
- **Feature:** Add new methods to manage images: `create_image`, `delete_image`, `get_image`, `list_image`, `update_image`
- **Feature:** Add new methods to manage imageshares: `delete_image_share`, `get_image_share`, `set_image_share`, `update_image_share`
- **Feature:** Add new methods to manage imageshare consumers: `delete_image_share_consumer`, `get_image_share_consumer`, `set_image_share`, `update_image_share`
- **Feature:** Add new methods to manage project NICs: `get_project_nic`, `list_project_nics`
- **Feature:** Add new methods to manage snapshots: `create_snapshot`, `delete_snapshot`, `get_snapshot`, `list_snapshot`, `update_snapshot`
- `serverupdate`: [v0.1.1](services/serverupdate/CHANGELOG.md#v011-2024-12-23)
- **Bugfix:** `Id` field of `Update` model is now of type `int64` (was `string`)

## Release (2024-12-04)

Expand Down
2 changes: 1 addition & 1 deletion services/certificates/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "stackit-certificates"
version = "v0.0.1a"
version = "v0.1.0"
authors = [
"STACKIT Developer Tools <[email protected]>",
]
Expand Down
2 changes: 1 addition & 1 deletion services/iaas/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "stackit-iaas"
version = "v0.1.0"
version = "v0.2.0"
authors = [
"STACKIT Developer Tools <[email protected]>",
]
Expand Down
2 changes: 1 addition & 1 deletion services/lbapplication/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "stackit-lbapplication"
version = "v0.0.1a"
version = "v0.1.0"
authors = [
"STACKIT Developer Tools <[email protected]>",
]
Expand Down
2 changes: 1 addition & 1 deletion services/serverupdate/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "stackit-serverupdate"
version = "v0.1.0"
version = "v0.1.1"
authors = [
"STACKIT Developer Tools <[email protected]>",
]
Expand Down
Loading