Skip to content

Commit 5a44787

Browse files
committed
chore(changelogs): Add changelogs for logme, mariadb, opensearch, rabbitmq and redis
Signed-off-by: Alexander Dahmen <alexander.dahmen@inovex.de>
1 parent 9c7c755 commit 5a44787

11 files changed

Lines changed: 41 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@
7070
- **Chore:** Bump minimum Python version to 3.10
7171
- **Chore:** Update dependencies
7272
- `logme`:
73+
- [v1.2.0](services/logme/CHANGELOG.md#v120)
74+
- **Breaking Change/Fix:** `list_backups` operation now returns `List[Backup]` instead of `ListBackupsResponse` (response type also removed)
75+
The return type now correctly models the actual JSON response, this operation was broken beforehand.
7376
- [v1.1.0](services/logme/CHANGELOG.md#v110)
7477
- **Chore:** Bump minimum Python version to 3.10
7578
- **Chore:** Update dependencies
@@ -82,6 +85,9 @@
8285
- **Chore:** Bump minimum Python version to 3.10
8386
- **Chore:** Update dependencies
8487
- `mariadb`:
88+
- [v1.2.0](services/mariadb/CHANGELOG.md#v120)
89+
- **Breaking Change/Fix:** `list_backups` operation now returns `List[Backup]` instead of `ListBackupsResponse` (response type also removed)
90+
The return type now correctly models the actual JSON response, this operation was broken beforehand.
8591
- [v1.1.0](services/mariadb/CHANGELOG.md#v110)
8692
- **Chore:** Bump minimum Python version to 3.10
8793
- **Chore:** Update dependencies
@@ -117,6 +123,9 @@
117123
- **Chore:** Bump minimum Python version to 3.10
118124
- **Chore:** Update dependencies
119125
- `opensearch`:
126+
- [v1.2.0](services/opensearch/CHANGELOG.md#v120)
127+
- **Breaking Change/Fix:** `list_backups` operation now returns `List[Backup]` instead of `ListBackupsResponse` (response type also removed)
128+
The return type now correctly models the actual JSON response, this operation was broken beforehand.
120129
- [v1.1.0](services/opensearch/CHANGELOG.md#v110)
121130
- **Chore:** Bump minimum Python version to 3.10
122131
- **Chore:** Update dependencies
@@ -129,6 +138,9 @@
129138
- **Chore:** Bump minimum Python version to 3.10
130139
- **Chore:** Update dependencies
131140
- `rabbitmq`:
141+
- [v1.2.0](services/rabbitmq/CHANGELOG.md#v120)
142+
- **Breaking Change/Fix:** `list_backups` operation now returns `List[Backup]` instead of `ListBackupsResponse` (response type also removed)
143+
The return type now correctly models the actual JSON response, this operation was broken beforehand.
132144
- [v1.1.0](services/rabbitmq/CHANGELOG.md#v110)
133145
- **Chore:** Bump minimum Python version to 3.10
134146
- **Chore:** Update dependencies
@@ -137,7 +149,10 @@
137149
- **Deprecation:** `roles`, `tls_ciphers`, `tls_protocols` from `InstanceParameters` model are deprecated and will be removed 2026-12-11.
138150
- **Feature:** Added optional `CreateCredentialsPayload`.
139151
- `redis`:
140-
- [v1.1.0](services/rabbitmq/CHANGELOG.md#v110)
152+
- [v1.2.0](services/rabbitmq/CHANGELOG.md#v120)
153+
- **Breaking Change/Fix:** `list_backups` operation now returns `List[Backup]` instead of `ListBackupsResponse` (response type also removed)
154+
The return type now correctly models the actual JSON response, this operation was broken beforehand.
155+
- [v1.1.0](services/redis/CHANGELOG.md#v110)
141156
- **Chore:** Bump minimum Python version to 3.10
142157
- **Chore:** Update dependencies
143158
- [v1.0.0](services/redis/CHANGELOG.md#v100)

services/logme/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v1.2.0
2+
- **Breaking Change/Fix:** `list_backups` operation now returns `List[Backup]` instead of `ListBackupsResponse` (response type also removed)
3+
The return type now correctly models the actual JSON response, this operation was broken beforehand.
4+
15
## v1.1.0
26
- **Chore:** Bump minimum Python version to 3.10
37
- **Chore:** Update dependencies

services/logme/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "stackit-logme"
3-
version = "v1.1.0"
3+
version = "v1.2.0"
44
description = "STACKIT LogMe API"
55
authors = [{ name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud" }]
66
requires-python = ">=3.10,<4.0"

services/mariadb/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v1.2.0
2+
- **Breaking Change/Fix:** `list_backups` operation now returns `List[Backup]` instead of `ListBackupsResponse` (response type also removed)
3+
The return type now correctly models the actual JSON response, this operation was broken beforehand.
4+
15
## v1.1.0
26
- **Chore:** Bump minimum Python version to 3.10
37
- **Chore:** Update dependencies

services/mariadb/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "stackit-mariadb"
3-
version = "v1.1.0"
3+
version = "v1.2.0"
44
description = "STACKIT MariaDB API"
55
authors = [{ name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud" }]
66
requires-python = ">=3.10,<4.0"

services/opensearch/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v1.2.0
2+
- **Breaking Change/Fix:** `list_backups` operation now returns `List[Backup]` instead of `ListBackupsResponse` (response type also removed)
3+
The return type now correctly models the actual JSON response, this operation was broken beforehand.
4+
15
## v1.1.0
26
- **Chore:** Bump minimum Python version to 3.10
37
- **Chore:** Update dependencies

services/opensearch/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "stackit-opensearch"
3-
version = "v1.1.0"
3+
version = "v1.2.0"
44
description = "STACKIT Opensearch API"
55
authors = [{ name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud" }]
66
requires-python = ">=3.10,<4.0"

services/rabbitmq/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v1.2.0
2+
- **Breaking Change/Fix:** `list_backups` operation now returns `List[Backup]` instead of `ListBackupsResponse` (response type also removed)
3+
The return type now correctly models the actual JSON response, this operation was broken beforehand.
4+
15
## v1.1.0
26
- **Chore:** Bump minimum Python version to 3.10
37
- **Chore:** Update dependencies

services/rabbitmq/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "stackit-rabbitmq"
3-
version = "v1.1.0"
3+
version = "v1.2.0"
44
description = "STACKIT RabbitMQ API"
55
authors = [{ name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud" }]
66
requires-python = ">=3.10,<4.0"

services/redis/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v1.2.0
2+
- **Breaking Change/Fix:** `list_backups` operation now returns `List[Backup]` instead of `ListBackupsResponse` (response type also removed)
3+
The return type now correctly models the actual JSON response, this operation was broken beforehand.
4+
15
## v1.1.0
26
- **Chore:** Bump minimum Python version to 3.10
37
- **Chore:** Update dependencies

0 commit comments

Comments
 (0)