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
13 changes: 8 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,14 @@
- **Breaking Change:** Introduce typed enum constants for status attributes
- `git`: [v0.3.2](services/git/CHANGELOG.md#v032-2025-05-02)
- **Bugfix**: Spelling corrections in documentation
- `cdn`[v1.0.0](services/cdn/CHANGELOG.md#v100-2025-05-02)
- **Feature:** Support for log management
- **Feature:** Create distribution payload has additional optional attributes for blocked countries, IPs and volume limitation
- **Feature:** Config Patch payload has additional optional attributes for blocked countries, IPs and volume limitation
- **Breaking Change:** Config has additional required attributes for blocked countries, IPs and volume limitation
- `cdn`:
- [v1.0.1](services/cdn/CHANGELOG.md#v101-2025-05-05)
- **Enhancement:** Increase waiter timeouts
- [v1.0.0](services/cdn/CHANGELOG.md#v100-2025-05-02)
- **Feature:** Support for log management
- **Feature:** Create distribution payload has additional optional attributes for blocked countries, IPs and volume limitation
- **Feature:** Config Patch payload has additional optional attributes for blocked countries, IPs and volume limitation
- **Breaking Change:** Config has additional required attributes for blocked countries, IPs and volume limitation
- `alb`: [v0.2.2](services/alb/CHANGELOG.md#v022-2025-05-02)
- **Feature:** Switch to beta2 API

Expand Down
3 changes: 3 additions & 0 deletions services/cdn/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v1.0.1 (2025-05-05)
- **Enhancement:** Increase waiter timeouts

## v1.0.0 (2025-05-02)
- **Feature:** Support for log management
- **Feature:** Create distribution payload has additional optional attributes for blocked countries, IPs and volume limitation
Expand Down
8 changes: 4 additions & 4 deletions services/cdn/wait/wait.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func CreateDistributionPoolWaitHandler(ctx context.Context, api APIClientInterfa
}
return false, nil, nil
})
handler.SetTimeout(1 * time.Minute)
handler.SetTimeout(10 * time.Minute)
return handler
}

Expand Down Expand Up @@ -109,7 +109,7 @@ func DeleteDistributionWaitHandler(ctx context.Context, api APIClientInterface,

return false, nil, err
})
handler.SetTimeout(30 * time.Second)
handler.SetTimeout(10 * time.Minute)
return handler
}

Expand All @@ -136,7 +136,7 @@ func CreateCDNCustomDomainWaitHandler(ctx context.Context, a APIClientInterface,
return true, nil, fmt.Errorf("CDNCustomDomainWaitHandler: unexpected status %s", *resp.CustomDomain.Status)
}
})
handler.SetTimeout(1 * time.Minute)
handler.SetTimeout(10 * time.Minute)
return handler
}

Expand All @@ -156,6 +156,6 @@ func DeleteCDNCustomDomainWaitHandler(ctx context.Context, a APIClientInterface,
}
return false, nil, err
})
handler.SetTimeout(30 * time.Second)
handler.SetTimeout(10 * time.Minute)
return handler
}
Loading