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
45 changes: 30 additions & 15 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,36 @@
## Release (2025-XX-YY)
- `cdn`: [v0.2.0](services/cdn/CHANGELOG.md#v020-2025-04-01)
- **API enhancement:** Provide waiter infrastructure
- `logme`: [v0.21.2](services/logme/CHANGELOG.md#v0212-2025-04-02)
- **Bugfix:** `PartialUpdateInstanceWaitHandler` does not finish when update is succeeded
- **Deprecation:** Deprecated `InstanceStateSuccess`, `InstanceStateFailed`, `InstanceTypeCreate`, `InstanceTypeUpdate`, `InstanceTypeDelete` and will be removed after 2nd October 2025
- `mariadb`: [v0.21.2](services/mariadb/CHANGELOG.md#v0212-2025-04-02)
- **Bugfix:** `PartialUpdateInstanceWaitHandler` does not finish when update is succeeded
- **Deprecation:** Deprecated `InstanceStateSuccess`, `InstanceStateFailed`, `InstanceTypeCreate`, `InstanceTypeUpdate`, `InstanceTypeDelete` and will be removed after 2nd October 2025
- `opensearch`: [v0.20.2](services/opensearch/CHANGELOG.md#v0202-2025-04-02)
- **Bugfix:** `PartialUpdateInstanceWaitHandler` does not finish when update is succeeded
- **Deprecation:** Deprecated `InstanceStateSuccess`, `InstanceStateFailed`, `InstanceTypeCreate`, `InstanceTypeUpdate`, `InstanceTypeDelete` and will be removed after 2nd October 2025
- `redis`: [v0.21.2](services/redis/CHANGELOG.md#v0212-2025-04-02)
- **Bugfix:** `PartialUpdateInstanceWaitHandler` does not finish when update is succeeded
- **Deprecation:** Deprecated `InstanceStateSuccess`, `InstanceStateFailed`, `InstanceTypeCreate`, `InstanceTypeUpdate`, `InstanceTypeDelete` and will be removed after 2nd October 2025
- `rabbitmq`: [v0.21.2](services/rabbitmq/CHANGELOG.md#v0212-2025-04-02)
- **Bugfix:** `PartialUpdateInstanceWaitHandler` does not finish when update is succeeded
- **Deprecation:** Deprecated `InstanceStateSuccess`, `InstanceStateFailed`, `InstanceTypeCreate`, `InstanceTypeUpdate`, `InstanceTypeDelete` and will be removed after 2nd October 2025
- `logme`:
- [v0.21.2](services/logme/CHANGELOG.md#v0212-2025-04-02)
- **Bugfix:** `PartialUpdateInstanceWaitHandler` does not finish when update is succeeded
- **Deprecation:** Deprecated `InstanceStateSuccess`, `InstanceStateFailed`, `InstanceTypeCreate`, `InstanceTypeUpdate`, `InstanceTypeDelete` and will be removed after 2nd October 2025
- [v0.22.0](services/logme/CHANGELOG.md#v0220-2025-04-03)
- **Feature:** Adapt constants to evolved API.
- `mariadb`:
- [v0.21.2](services/mariadb/CHANGELOG.md#v0212-2025-04-02)
- **Bugfix:** `PartialUpdateInstanceWaitHandler` does not finish when update is succeeded
- **Deprecation:** Deprecated `InstanceStateSuccess`, `InstanceStateFailed`, `InstanceTypeCreate`, `InstanceTypeUpdate`, `InstanceTypeDelete` and will be removed after 2nd October 2025
- [v0.22.0](services/logme/CHANGELOG.md#v0220-2025-04-03)
- **Feature:** Adapt constants to evolved API.
- `opensearch`:
- [v0.20.2](services/opensearch/CHANGELOG.md#v0202-2025-04-02)
- **Bugfix:** `PartialUpdateInstanceWaitHandler` does not finish when update is succeeded
- **Deprecation:** Deprecated `InstanceStateSuccess`, `InstanceStateFailed`, `InstanceTypeCreate`, `InstanceTypeUpdate`, `InstanceTypeDelete` and will be removed after 2nd October 2025
- [v0.21.0](services/opensearch/CHANGELOG.md#v0210-2025-04-03)
- **Feature:** Adapt constants to evolved API.
- `redis`:
- [v0.21.2](services/redis/CHANGELOG.md#v0212-2025-04-02)
- **Bugfix:** `PartialUpdateInstanceWaitHandler` does not finish when update is succeeded
- **Deprecation:** Deprecated `InstanceStateSuccess`, `InstanceStateFailed`, `InstanceTypeCreate`, `InstanceTypeUpdate`, `InstanceTypeDelete` and will be removed after 2nd October 2025
- [v0.22.0](services/redis/CHANGELOG.md#v0220-2025-04-03)
- **Feature:** Adapt constants to evolved API.
- `rabbitmq`:
- [v0.21.2](services/rabbitmq/CHANGELOG.md#v0212-2025-04-02)
- **Bugfix:** `PartialUpdateInstanceWaitHandler` does not finish when update is succeeded
- **Deprecation:** Deprecated `InstanceStateSuccess`, `InstanceStateFailed`, `InstanceTypeCreate`, `InstanceTypeUpdate`, `InstanceTypeDelete` and will be removed after 2nd October 2025
- [v0.22.0](services/rabbitmq/CHANGELOG.md#v0220-2025-04-03)
- **Feature:** Adapt constants to evolved API.



Expand Down
3 changes: 3 additions & 0 deletions services/logme/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.22.0 (2025-04-03)
- **Feature:** Adapt constants to evolved API.

## v0.21.2 (2025-04-02)
- **Bugfix:** `PartialUpdateInstanceWaitHandler` does not finish when update is succeeded
- **Deprecation:** Deprecated `InstanceStateSuccess`, `InstanceStateFailed`, `InstanceTypeCreate`, `InstanceTypeUpdate`, `InstanceTypeDelete` and will be removed after 2nd October 2025
Expand Down
18 changes: 13 additions & 5 deletions services/logme/wait/wait.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,23 @@ const (
InstanceStatusDeleting = "deleting"
InstanceStatusUpdating = "updating"

// Deprecated: InstanceStateSuccess is deprecated and will be removed after 2nd October 2025.
InstanceOperationStateInProgress = "in progress"
InstanceOperationStateSucceeded = "succeeded"
InstanceOperationStateFailed = "failed"

InstanceOperationTypeCreate = "create"
InstanceOperationTypeUpdate = "update"
InstanceOperationTypeDelete = "delete"

// Deprecated: InstanceStateSuccess is deprecated and will be removed after 2nd October 2025. Use [InstanceOperationStateSucceeded] instead.
InstanceStateSuccess = "succeeded"
// Deprecated: InstanceStateFailed is deprecated and will be removed after 2nd October 2025.
// Deprecated: InstanceStateFailed is deprecated and will be removed after 2nd October 2025. Use [InstanceOperationStateFailed] instead.
InstanceStateFailed = "failed"
// Deprecated: InstanceTypeCreate is deprecated and will be removed after 2nd October 2025.
// Deprecated: InstanceTypeCreate is deprecated and will be removed after 2nd October 2025. Use [InstanceOperationTypeCreate] instead.
InstanceTypeCreate = "create"
// Deprecated: InstanceTypeUpdate is deprecated and will be removed after 2nd October 2025.
// Deprecated: InstanceTypeUpdate is deprecated and will be removed after 2nd October 2025. Use [InstanceOperationTypeUpdate] instead.
InstanceTypeUpdate = "update"
// Deprecated: InstanceTypeDelete is deprecated and will be removed after 2nd October 2025.
// Deprecated: InstanceTypeDelete is deprecated and will be removed after 2nd October 2025. Use [InstanceOperationTypeDelete] instead.
InstanceTypeDelete = "delete"
)

Expand Down
3 changes: 3 additions & 0 deletions services/mariadb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.22.0 (2025-04-03)
- **Feature:** Adapt constants to evolved API.

## v0.21.2 (2025-04-02)
- **Bugfix:** `PartialUpdateInstanceWaitHandler` does not finish when update is succeeded
- **Deprecation:** Deprecated `InstanceStateSuccess`, `InstanceStateFailed`, `InstanceTypeCreate`, `InstanceTypeUpdate`, `InstanceTypeDelete` and will be removed after 2nd October 2025
Expand Down
17 changes: 12 additions & 5 deletions services/mariadb/wait/wait.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,22 @@ const (
InstanceStatusDeleting = "deleting"
InstanceStatusUpdating = "updating"

// Deprecated: InstanceStateSuccess is deprecated and will be removed after 2nd October 2025.
InstanceOperationStateInProgress = "in progress"
InstanceOperationStateSucceeded = "succeeded"
InstanceOperationStateFailed = "failed"
InstanceOperationTypeCreate = "create"
InstanceOperationTypeUpdate = "update"
InstanceOperationTypeDelete = "delete"

// Deprecated: InstanceStateSuccess is deprecated and will be removed after 2nd October 2025. Use [InstanceOperationStateSucceeded] instead.
InstanceStateSuccess = "succeeded"
// Deprecated: InstanceStateFailed is deprecated and will be removed after 2nd October 2025.
// Deprecated: InstanceStateFailed is deprecated and will be removed after 2nd October 2025. Use [InstanceOperationStateFailed] instead.
InstanceStateFailed = "failed"
// Deprecated: InstanceTypeCreate is deprecated and will be removed after 2nd October 2025.
// Deprecated: InstanceTypeCreate is deprecated and will be removed after 2nd October 2025. Use [InstanceOperationTypeCreate] instead.
InstanceTypeCreate = "create"
// Deprecated: InstanceTypeUpdate is deprecated and will be removed after 2nd October 2025.
// Deprecated: InstanceTypeUpdate is deprecated and will be removed after 2nd October 2025. Use [InstanceOperationTypeUpdate] instead.
InstanceTypeUpdate = "update"
// Deprecated: InstanceTypeDelete is deprecated and will be removed after 2nd October 2025.
// Deprecated: InstanceTypeDelete is deprecated and will be removed after 2nd October 2025. Use [InstanceOperationTypeDelete] instead.
InstanceTypeDelete = "delete"
)

Expand Down
3 changes: 3 additions & 0 deletions services/opensearch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.21.0 (2025-04-03)
- **Feature:** Adapt constants to evolved API.

## v0.20.2 (2025-04-02)
- **Bugfix:** `PartialUpdateInstanceWaitHandler` does not finish when update is succeeded
- **Deprecation:** Deprecated `InstanceStateSuccess`, `InstanceStateFailed`, `InstanceTypeCreate`, `InstanceTypeUpdate`, `InstanceTypeDelete` and will be removed after 2nd October 2025
Expand Down
17 changes: 12 additions & 5 deletions services/opensearch/wait/wait.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,22 @@ const (
InstanceStatusDeleting = "deleting"
InstanceStatusUpdating = "updating"

// Deprecated: InstanceStateSuccess is deprecated and will be removed after 2nd October 2025.
InstanceOperationStateInProgress = "in progress"
InstanceOperationStateSucceeded = "succeeded"
InstanceOperationStateFailed = "failed"
InstanceOperationTypeCreate = "create"
InstanceOperationTypeUpdate = "update"
InstanceOperationTypeDelete = "delete"

// Deprecated: InstanceStateSuccess is deprecated and will be removed after 2nd October 2025. Use [InstanceOperationStateSucceeded] instead.
InstanceStateSuccess = "succeeded"
// Deprecated: InstanceStateFailed is deprecated and will be removed after 2nd October 2025.
// Deprecated: InstanceStateFailed is deprecated and will be removed after 2nd October 2025. Use [InstanceOperationStateFailed] instead.
InstanceStateFailed = "failed"
// Deprecated: InstanceTypeCreate is deprecated and will be removed after 2nd October 2025.
// Deprecated: InstanceTypeCreate is deprecated and will be removed after 2nd October 2025. Use [InstanceOperationTypeCreate] instead.
InstanceTypeCreate = "create"
// Deprecated: InstanceTypeUpdate is deprecated and will be removed after 2nd October 2025.
// Deprecated: InstanceTypeUpdate is deprecated and will be removed after 2nd October 2025. Use [InstanceOperationTypeUpdate] instead.
InstanceTypeUpdate = "update"
// Deprecated: InstanceTypeDelete is deprecated and will be removed after 2nd October 2025.
// Deprecated: InstanceTypeDelete is deprecated and will be removed after 2nd October 2025. Use [InstanceOperationTypeDelete] instead.
InstanceTypeDelete = "delete"
)

Expand Down
3 changes: 3 additions & 0 deletions services/rabbitmq/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.22.0 (2025-04-03)
- **Feature:** Adapt constants to evolved API.

## v0.21.2 (2025-04-02)
- **Bugfix:** `PartialUpdateInstanceWaitHandler` does not finish when update is succeeded
- **Deprecation:** Deprecated `InstanceStateSuccess`, `InstanceStateFailed`, `InstanceTypeCreate`, `InstanceTypeUpdate`, `InstanceTypeDelete` and will be removed after 2nd October 2025
Expand Down
17 changes: 12 additions & 5 deletions services/rabbitmq/wait/wait.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,22 @@ const (
InstanceStatusDeleting = "deleting"
InstanceStatusUpdating = "updating"

// Deprecated: InstanceStateSuccess is deprecated and will be removed after 2nd October 2025.
InstanceOperationStateInProgress = "in progress"
InstanceOperationStateSucceeded = "succeeded"
InstanceOperationStateFailed = "failed"
InstanceOperationTypeCreate = "create"
InstanceOperationTypeUpdate = "update"
InstanceOperationTypeDelete = "delete"

// Deprecated: InstanceStateSuccess is deprecated and will be removed after 2nd October 2025. Use [InstanceOperationStateSucceeded] instead.
InstanceStateSuccess = "succeeded"
// Deprecated: InstanceStateFailed is deprecated and will be removed after 2nd October 2025.
// Deprecated: InstanceStateFailed is deprecated and will be removed after 2nd October 2025. Use [InstanceOperationStateFailed] instead.
InstanceStateFailed = "failed"
// Deprecated: InstanceTypeCreate is deprecated and will be removed after 2nd October 2025.
// Deprecated: InstanceTypeCreate is deprecated and will be removed after 2nd October 2025. Use [InstanceOperationTypeCreate] instead.
InstanceTypeCreate = "create"
// Deprecated: InstanceTypeUpdate is deprecated and will be removed after 2nd October 2025.
// Deprecated: InstanceTypeUpdate is deprecated and will be removed after 2nd October 2025. Use [InstanceOperationTypeUpdate] instead.
InstanceTypeUpdate = "update"
// Deprecated: InstanceTypeDelete is deprecated and will be removed after 2nd October 2025.
// Deprecated: InstanceTypeDelete is deprecated and will be removed after 2nd October 2025. Use [InstanceOperationTypeDelete] instead.
InstanceTypeDelete = "delete"
)

Expand Down
3 changes: 3 additions & 0 deletions services/redis/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.22.0 (2025-04-03)
- **Feature:** Adapt constants to evolved API.

## v0.21.2 (2025-04-02)
- **Bugfix:** `PartialUpdateInstanceWaitHandler` does not finish when update is succeeded
- **Deprecation:** Deprecated `InstanceStateSuccess`, `InstanceStateFailed`, `InstanceTypeCreate`, `InstanceTypeUpdate`, `InstanceTypeDelete` and will be removed after 2nd October 2025
Expand Down
17 changes: 12 additions & 5 deletions services/redis/wait/wait.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,22 @@ const (
InstanceStatusDeleting = "deleting"
InstanceStatusUpdating = "updating"

// Deprecated: InstanceStateSuccess is deprecated and will be removed after 2nd October 2025.
InstanceOperationStateInProgress = "in progress"
InstanceOperationStateSucceeded = "succeeded"
InstanceOperationStateFailed = "failed"
InstanceOperationTypeCreate = "create"
InstanceOperationTypeUpdate = "update"
InstanceOperationTypeDelete = "delete"

// Deprecated: InstanceStateSuccess is deprecated and will be removed after 2nd October 2025. Use [InstanceOperationStateSucceeded] instead.
InstanceStateSuccess = "succeeded"
// Deprecated: InstanceStateFailed is deprecated and will be removed after 2nd October 2025.
// Deprecated: InstanceStateFailed is deprecated and will be removed after 2nd October 2025. Use [InstanceOperationStateFailed] instead.
InstanceStateFailed = "failed"
// Deprecated: InstanceTypeCreate is deprecated and will be removed after 2nd October 2025.
// Deprecated: InstanceTypeCreate is deprecated and will be removed after 2nd October 2025. Use [InstanceOperationTypeCreate] instead.
InstanceTypeCreate = "create"
// Deprecated: InstanceTypeUpdate is deprecated and will be removed after 2nd October 2025.
// Deprecated: InstanceTypeUpdate is deprecated and will be removed after 2nd October 2025. Use [InstanceOperationTypeUpdate] instead.
InstanceTypeUpdate = "update"
// Deprecated: InstanceTypeDelete is deprecated and will be removed after 2nd October 2025.
// Deprecated: InstanceTypeDelete is deprecated and will be removed after 2nd October 2025. Use [InstanceOperationTypeDelete] instead.
InstanceTypeDelete = "delete"
)

Expand Down
Loading