Skip to content

Commit 4091b1d

Browse files
committed
add changelogs
1 parent b170169 commit 4091b1d

File tree

39 files changed

+241
-130
lines changed

39 files changed

+241
-130
lines changed

CHANGELOG.md

Lines changed: 51 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,54 @@
1-
## Release (2025-XX-XX)
2-
- `stackitmarketplace`: [v1.1.0](services/stackitmarketplace/CHANGELOG.md#v110-2025-05-13)
3-
- **Breaking Change:** Added organization id to `VendorSubscription`
4-
- `ske`: [v0.22.4](services/ske/CHANGELOG.md#v0224-2025-05-13)
5-
- **Feature:** Added `ClusterError`
6-
1+
## Release (2025-xx-xx)
2+
- `alb`: [v0.3.0](services/alb/CHANGELOG.md#v030-2025-05-12)
3+
- **Breaking change:** Introduce typed enum constants for status attributes
4+
- `cdn`: [v1.1.0](services/cdn/CHANGELOG.md#v110-2025-05-12)
5+
- **Breaking change:** Introduce typed enum constants for status attributes
6+
- `dns`: [v0.14.0](services/dns/CHANGELOG.md#v0140-2025-05-12)
7+
- **Breaking change:** Introduce typed enum constants for status attributes
8+
- `git`: [v0.4.0](services/git/CHANGELOG.md#v040-2025-05-12)
9+
- **Breaking change:** Introduce typed enum constants for status attributes
10+
- `kms`: [v0.1.0](services/kms/CHANGELOG.md#v010-2025-05-12)
11+
- **Breaking change:** Introduce typed enum constants for status attributes
12+
- `lbapplication`: [v0.4.0](services/lbapplication/CHANGELOG.md#v040-2025-05-12)
13+
- **Breaking change:** Introduce typed enum constants for status attributes
14+
- `loadbalancer`: [v1.1.0](services/loadbalancer/CHANGELOG.md#v110-2025-05-12)
15+
- **Breaking change:** Introduce typed enum constants for status attributes
16+
- `logme`: [v0.23.0](services/logme/CHANGELOG.md#v0230-2025-05-12)
17+
- **Breaking change:** Introduce typed enum constants for status attributes
18+
- `mariadb`: [v0.23.0](services/mariadb/CHANGELOG.md#v0230-2025-05-12)
19+
- **Breaking change:** Introduce typed enum constants for status attributes
20+
- `modelserving`: [v0.3.0](services/modelserving/CHANGELOG.md#v030-2025-05-12)
21+
- **Breaking change:** Introduce typed enum constants for status attributes
22+
- `mongodbflex`: [v1.1.0](services/mongodbflex/CHANGELOG.md#v110-2025-05-12)
23+
- **Breaking change:** Introduce typed enum constants for status attributes
24+
- `observability`: [v0.6.0](services/observability/CHANGELOG.md#v060-2025-05-12)
25+
- **Breaking change:** Introduce typed enum constants for status attributes
26+
- `opensearch`: [v0.22.0](services/opensearch/CHANGELOG.md#v0220-2025-05-12)
27+
- **Breaking change:** Introduce typed enum constants for status attributes
28+
- `rabbitmq`: [v0.23.0](services/rabbitmq/CHANGELOG.md#v0230-2025-05-12)
29+
- **Breaking change:** Introduce typed enum constants for status attributes
30+
- `redis`: [v0.23.0](services/redis/CHANGELOG.md#v0230-2025-05-12)
31+
- **Breaking change:** Introduce typed enum constants for status attributes
32+
- `resourcemanager`: [v0.14.0](services/resourcemanager/CHANGELOG.md#v0140-2025-05-12)
33+
- **Breaking change:** Introduce typed enum constants for status attributes
34+
- `runcommand`: [v1.1.0](services/runcommand/CHANGELOG.md#v110-2025-05-12)
35+
- **Breaking change:** Introduce typed enum constants for status attributes
36+
- `serverbackup`: [v1.1.0](services/serverbackup/CHANGELOG.md#v110-2025-05-12)
37+
- **Breaking change:** Introduce typed enum constants for status attributes
38+
- `serviceaccount`: [v0.7.0](services/serviceaccount/CHANGELOG.md#v070-2025-05-12)
39+
- **Breaking change:** Introduce typed enum constants for status attributes
40+
- `serviceenablement`: [v1.1.0](services/serviceenablement/CHANGELOG.md#v110-2025-05-12)
41+
- **Breaking change:** Introduce typed enum constants for status attributes
42+
- `ske`:
43+
- [v0.23.0](services/ske/CHANGELOG.md#v0230-2025-05-12)
44+
- **Breaking change:** Introduce typed enum constants for status attributes
45+
- [v0.22.4](services/ske/CHANGELOG.md#v0224-2025-05-13)
46+
- **Feature:** Added `ClusterError`
47+
- `stackitmarketplace`:
48+
- [v1.1.0](services/stackitmarketplace/CHANGELOG.md#v110-2025-05-13)
49+
- **Breaking Change:** Added organization id to `VendorSubscription`
50+
- [v1.1.0](services/stackitmarketplace/CHANGELOG.md#v110-2025-05-12)
51+
- **Breaking change:** Introduce typed enum constants for status attributes
752

853
## Release (2025-05-09)
954
- `resourcemanager`:

services/alb/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v1.0.0 (2025-05-12)
2+
- **Breaking change:** Introduce typed enum constants for status attributes
3+
14
## v0.2.3 (2025-05-09)
25
- **Feature:** Update user-agent header
36

services/alb/wait/wait.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ import (
1313
)
1414

1515
const (
16-
// Deprecated: StatusUnspecified is deprecated and will be removed after 9th November 2025. Use [alb.LOADBALANCERSTATUS_UNSPECIFIED] instead.
16+
// Deprecated: StatusUnspecified is deprecated and will be removed after 12th November 2025. Use [alb.LOADBALANCERSTATUS_UNSPECIFIED] instead.
1717
StatusUnspecified = "STATUS_UNSPECIFIED"
18-
// Deprecated: StatusPending is deprecated and will be removed after 9th November 2025. Use [alb.LOADBALANCERSTATUS_PENDING] instead.
18+
// Deprecated: StatusPending is deprecated and will be removed after 12th November 2025. Use [alb.LOADBALANCERSTATUS_PENDING] instead.
1919
StatusPending = "STATUS_PENDING"
20-
// Deprecated: StatusReady is deprecated and will be removed after 9th November 2025. Use [alb.LOADBALANCERSTATUS_READY] instead.
20+
// Deprecated: StatusReady is deprecated and will be removed after 12th November 2025. Use [alb.LOADBALANCERSTATUS_READY] instead.
2121
StatusReady = "STATUS_READY"
22-
// Deprecated: StatusError is deprecated and will be removed after 9th November 2025. Use [alb.LOADBALANCERSTATUS_ERROR] instead.
22+
// Deprecated: StatusError is deprecated and will be removed after 12th November 2025. Use [alb.LOADBALANCERSTATUS_ERROR] instead.
2323
StatusError = "STATUS_ERROR"
24-
// Deprecated: StatusTerminating is deprecated and will be removed after 9th November 2025. Use [alb.LOADBALANCERSTATUS_TERMINATING] instead.
24+
// Deprecated: StatusTerminating is deprecated and will be removed after 12th November 2025. Use [alb.LOADBALANCERSTATUS_TERMINATING] instead.
2525
StatusTerminating = "STATUS_TERMINATING"
2626
)
2727

services/cdn/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v2.0.0 (2025-05-12)
2+
- **Breaking change:** Introduce typed enum constants for status attributes
3+
14
## v1.0.2 (2025-05-09)
25
- **Feature:** Update user-agent header
36

services/cdn/wait/wait.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ import (
1313
)
1414

1515
const (
16-
// Deprecated: DistributionStatusCreating is deprecated and will be removed after 9th November 2025. Use [cdn.DISTRIBUTIONSTATUS_CREATING] instead.
16+
// Deprecated: DistributionStatusCreating is deprecated and will be removed after 12th November 2025. Use [cdn.DISTRIBUTIONSTATUS_CREATING] instead.
1717
DistributionStatusCreating = "CREATING"
18-
// Deprecated: DistributionStatusActive is deprecated and will be removed after 9th November 2025. Use [cdn.DISTRIBUTIONSTATUS_ACTIVE] instead.
18+
// Deprecated: DistributionStatusActive is deprecated and will be removed after 12th November 2025. Use [cdn.DISTRIBUTIONSTATUS_ACTIVE] instead.
1919
DistributionStatusActive = "ACTIVE"
20-
// Deprecated: DistributionStatusUpdating is deprecated and will be removed after 9th November 2025. Use [cdn.DISTRIBUTIONSTATUS_UPDATING] instead.
20+
// Deprecated: DistributionStatusUpdating is deprecated and will be removed after 12th November 2025. Use [cdn.DISTRIBUTIONSTATUS_UPDATING] instead.
2121
DistributionStatusUpdating = "UPDATING"
22-
// Deprecated: DistributionStatusDeleting is deprecated and will be removed after 9th November 2025. Use [cdn.DISTRIBUTIONSTATUS_DELETING] instead.
22+
// Deprecated: DistributionStatusDeleting is deprecated and will be removed after 12th November 2025. Use [cdn.DISTRIBUTIONSTATUS_DELETING] instead.
2323
DistributionStatusDeleting = "DELETING"
24-
// Deprecated: DistributionStatusError is deprecated and will be removed after 9th November 2025. Use [cdn.DISTRIBUTIONSTATUS_ERROR] instead.
24+
// Deprecated: DistributionStatusError is deprecated and will be removed after 12th November 2025. Use [cdn.DISTRIBUTIONSTATUS_ERROR] instead.
2525
DistributionStatusError = "ERROR"
2626
)
2727

services/dns/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
## v0.13.3 (2025-05-09)
1+
## v1.0.0 (2025-05-12)
2+
- **Breaking change:** Introduce typed enum constants for status attributes
3+
4+
- ## v0.13.3 (2025-05-09)
25
- **Feature:** Update user-agent header
36

47
## v0.13.2 (2025-04-29)

services/dns/wait/wait.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ import (
1010
)
1111

1212
const (
13-
// Deprecated: CreateSuccess is deprecated and will be removed after 9th November 2025. Use [dns.ZONESTATE_CREATE_SUCCEEDED] or [dns.RECORDSETSTATE_CREATE_SUCCEEDED] instead.
13+
// Deprecated: CreateSuccess is deprecated and will be removed after 12th November 2025. Use [dns.ZONESTATE_CREATE_SUCCEEDED] or [dns.RECORDSETSTATE_CREATE_SUCCEEDED] instead.
1414
CreateSuccess = "CREATE_SUCCEEDED"
15-
// Deprecated: CreateFail is deprecated and will be removed after 9th November 2025. Use [dns.ZONESTATE_CREATE_FAILED] or [dns.RECORDSETSTATE_CREATE_FAILED] instead.
15+
// Deprecated: CreateFail is deprecated and will be removed after 12th November 2025. Use [dns.ZONESTATE_CREATE_FAILED] or [dns.RECORDSETSTATE_CREATE_FAILED] instead.
1616
CreateFail = "CREATE_FAILED"
17-
// Deprecated: UpdateSuccess is deprecated and will be removed after 9th November 2025. Use [dns.ZONESTATE_UPDATE_SUCCEEDED] or [dns.RECORDSETSTATE_UPDATE_SUCCEEDED] instead.
17+
// Deprecated: UpdateSuccess is deprecated and will be removed after 12th November 2025. Use [dns.ZONESTATE_UPDATE_SUCCEEDED] or [dns.RECORDSETSTATE_UPDATE_SUCCEEDED] instead.
1818
UpdateSuccess = "UPDATE_SUCCEEDED"
19-
// Deprecated: UpdateSuccess is deprecated and will be removed after 9th November 2025. Use [dns.ZONESTATE_UPDATE_FAILED] or [dns.RECORDSETSTATE_UPDATE_FAILED] instead.
19+
// Deprecated: UpdateSuccess is deprecated and will be removed after 12th November 2025. Use [dns.ZONESTATE_UPDATE_FAILED] or [dns.RECORDSETSTATE_UPDATE_FAILED] instead.
2020
UpdateFail = "UPDATE_FAILED"
21-
// Deprecated: UpdateSuccess is deprecated and will be removed after 9th November 2025. Use [dns.ZONESTATE_DELETE_SUCCEEDED] or [dns.RECORDSETSTATE_DELETE_SUCCEEDED] instead.
21+
// Deprecated: UpdateSuccess is deprecated and will be removed after 12th November 2025. Use [dns.ZONESTATE_DELETE_SUCCEEDED] or [dns.RECORDSETSTATE_DELETE_SUCCEEDED] instead.
2222
DeleteSuccess = "DELETE_SUCCEEDED"
23-
// Deprecated: UpdateSuccess is deprecated and will be removed after 9th November 2025. Use [dns.ZONESTATE_DELETE_FAILED] or [dns.RECORDSETSTATE_DELETE_FAILED] instead.
23+
// Deprecated: UpdateSuccess is deprecated and will be removed after 12th November 2025. Use [dns.ZONESTATE_DELETE_FAILED] or [dns.RECORDSETSTATE_DELETE_FAILED] instead.
2424
DeleteFail = "DELETE_FAILED"
2525
)
2626

services/git/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v1.0.0 (2025-05-12)
2+
- **Breaking change:** Introduce typed enum constants for status attributes
3+
14
## v0.3.3 (2025-05-09)
25
- **Feature:** Update user-agent header
36

services/git/wait/wait.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ import (
1313
)
1414

1515
const (
16-
// Deprecated: InstanceStateReady is deprecated and will be removed after 9th November 2025. Use [git.INSTANCESTATE_READY] instead.
16+
// Deprecated: InstanceStateReady is deprecated and will be removed after 12th November 2025. Use [git.INSTANCESTATE_READY] instead.
1717
InstanceStateReady = "Ready"
18-
// Deprecated: InstanceStateCreating is deprecated and will be removed after 9th November 2025. Use [git.INSTANCESTATE_CREATING] instead.
18+
// Deprecated: InstanceStateCreating is deprecated and will be removed after 12th November 2025. Use [git.INSTANCESTATE_CREATING] instead.
1919
InstanceStateCreating = "Creating"
20-
// Deprecated: InstanceStateError is deprecated and will be removed after 9th November 2025. Use [git.INSTANCESTATE_ERROR] instead.
20+
// Deprecated: InstanceStateError is deprecated and will be removed after 12th November 2025. Use [git.INSTANCESTATE_ERROR] instead.
2121
InstanceStateError = "Error"
2222
)
2323

services/kms/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v1.0.0 (2025-05-12)
2+
- **Breaking change:** Introduce typed enum constants for status attributes
3+
14
## v0.0.2 (2025-05-09)
25
- **Feature:** Update user-agent header
36

0 commit comments

Comments
 (0)