Skip to content

Commit 0bb5640

Browse files
committed
Add changelogs
1 parent 6d25811 commit 0bb5640

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
## Release (2026-xx-xx)
22

3+
- `iaas`: [v1.1.1](services/iaas/CHANGELOG.md#v111)
4+
- **Feature:** Add `description` attribute to ModelClasses:
5+
- `Backup`
6+
- `CreateBackupPayload`
7+
- `CreateSnapshotPayload`
8+
- `Snapshot`
9+
- `UpdateBackupPayload`
10+
- `UpdateSnapshotPayload`
11+
- **Bugfix:** Flagged `disk_format` as necessary for `ImageFromVolumePayload`
12+
- **Improvement:** Updated description for labels
313
- `alb`: [v0.9.0](services/alb/CHANGELOG.md#v090)
414
- **Feature:** Add new field `AltPort` to `ActiveHealthCheck`
515
- **Feature:** Add new field `Tls` to `HttpHealthCheck`

services/iaas/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## v1.1.1
2+
- **Feature:** Add `description` attribute to ModelClasses:
3+
- `Backup`
4+
- `CreateBackupPayload`
5+
- `CreateSnapshotPayload`
6+
- `Snapshot`
7+
- `UpdateBackupPayload`
8+
- `UpdateSnapshotPayload`
9+
- **Bugfix:** Flagged `disk_format` as necessary for `ImageFromVolumePayload`
10+
- **Improvement:** Updated description for labels
11+
112
## v1.1.0
213
- **Feature:** Add `CreateIsolatedNetwork` functionality
314
- **Feature:** Add `ImageFromVolumePayload` functionality

services/iaas/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "stackit-iaas"
3-
version = "v1.1.0"
3+
version = "v1.1.1"
44
description = "IaaS-API"
55
authors = [{ name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud" }]
66
requires-python = ">=3.9,<4.0"
@@ -111,7 +111,7 @@ per-file-ignores = """
111111
# asserts are fine in tests, tests shouldn't be build optimized
112112
./tests/*: S101,
113113
# F841: some variables get generated but may not be used, depending on the api-spec
114-
# E501: long descriptions/string values might lead to lines that are too long
114+
# E501: long descriptions/string values might lead to lines that are too long
115115
./src/stackit/*/models/*: F841,E501
116116
# F841: some variables get generated but may not be used, depending on the api-spec
117117
# E501: long descriptions/string values might lead to lines that are too long

0 commit comments

Comments
 (0)