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
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,32 @@
- **Feature:** Add support for list runner labels operation
- new API client methods `ListRunnerLabels` and `ListRunnerLabelsExecute`
- new model struct `RunnerLabel`
- `cdn`: [v2.0.0](services/cdn/CHANGELOG.md#v200)
- **Feature:** Switch from `v1beta` CDN API version to `v1beta2` version.
- **Breaking change:** Changed spelling from `WAF` to `Waf` in model struct names
- `WAFStatusRuleBlock` -> `WafStatusRuleBlock`
- `WAFRuleGroup` -> `WafRuleGroup`
- `WAFRuleCollection` -> `WafRuleCollection`
- `WAFRule` -> `WafRule`
- `NullableListWAFCollectionsResponse` -> `NullableListWafCollectionsResponse`
- **Breaking change:** Changed spelling from model struct named `GenericJSONResponse` to `GenericJsonResponse`
- **Breaking change:** Removal of fields from model structs
- Remove `Description` field from `ErrorDetails` model struct
- Remove `Domain` field from `PutCustomDomainResponse` and `GetCustomDomainResponse` model structs
- Remove `OccuredAt` field from `GetCacheInfoResponseHistoryEntry` model struct
- **Breaking change:** Renaming of fields in model structs
- Rename `DistributionID` field to `DistributionId` in `DistributionLogsRecord` model struct
- Rename `BlockedIPs` field to `BlockedIps` in `CreateDistributionPayload`, `ConfigPatch` and `Config` model structs
- **Breaking change:** Removal of API client methods `GetLogsSearchFilters`, `GetLogsSearchFiltersExecute`
- **Breaking change:** Removal of request structs `GetLogsSearchFiltersRequest`
- **Feature:** Add fields to model structs
- Add `Backend` field to `CreateDistributionPayload` model struct
- Add `BucketBackend` field to `ConfigBackend` model struct
- Add `BucketBackendPatch` field to `ConfigPatchBackend` model struct
- **Feature:** New model structs
- New Loki model structs: `LokiLogSinkCredentials`, `LokiLogSinkCreate`, `LokiLogSinkPatch`
- New Backend model structs: `HttpBackendCreate`, `BucketBackendCreate`, `BucketBackend`, `BucketBackendPatch`, `CreateDistributionPayloadBackend`
- Other new model structs: `BucketCredentials`

## Release (2025-10-13)
- `observability`: [v0.15.0](services/observability/CHANGELOG.md#v0150)
Expand Down
27 changes: 27 additions & 0 deletions services/cdn/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
## v2.0.0
- **Feature:** Switch from `v1beta` CDN API version to `v1beta2` version.
- **Breaking change:** Changed spelling from `WAF` to `Waf` in model struct names
- `WAFStatusRuleBlock` -> `WafStatusRuleBlock`
- `WAFRuleGroup` -> `WafRuleGroup`
- `WAFRuleCollection` -> `WafRuleCollection`
- `WAFRule` -> `WafRule`
- `NullableListWAFCollectionsResponse` -> `NullableListWafCollectionsResponse`
- **Breaking change:** Changed spelling from model struct named `GenericJSONResponse` to `GenericJsonResponse`
- **Breaking change:** Removal of fields from model structs
- Remove `Description` field from `ErrorDetails` model struct
- Remove `Domain` field from `PutCustomDomainResponse` and `GetCustomDomainResponse` model structs
- Remove `OccuredAt` field from `GetCacheInfoResponseHistoryEntry` model struct
- **Breaking change:** Renaming of fields in model structs
- Rename `DistributionID` field to `DistributionId` in `DistributionLogsRecord` model struct
- Rename `BlockedIPs` field to `BlockedIps` in `CreateDistributionPayload`, `ConfigPatch` and `Config` model structs
- **Breaking change:** Removal of API client methods `GetLogsSearchFilters`, `GetLogsSearchFiltersExecute`
- **Breaking change:** Removal of request structs `GetLogsSearchFiltersRequest`
- **Feature:** Add fields to model structs
- Add `Backend` field to `CreateDistributionPayload` model struct
- Add `BucketBackend` field to `ConfigBackend` model struct
- Add `BucketBackendPatch` field to `ConfigPatchBackend` model struct
- **Feature:** New model structs
- New Loki model structs: `LokiLogSinkCredentials`, `LokiLogSinkCreate`, `LokiLogSinkPatch`
- New Backend model structs: `HttpBackendCreate`, `BucketBackendCreate`, `BucketBackend`, `BucketBackendPatch`, `CreateDistributionPayloadBackend`
- Other new model structs: `BucketCredentials`

## v1.6.0
- **Feature:** Add models: `DistributionWaf`, `WafConfig`, `WAFConfigPatch`, `WAFMode`, `WAFRule`, `WAFRuleCollection`, `WAFRuleGroup` and `WAFStatusRuleBlock`
- **Feature:** Add `Waf` attribute to `Config` and `Distribution`
Expand Down
2 changes: 1 addition & 1 deletion services/cdn/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.6.0
v2.0.0
479 changes: 133 additions & 346 deletions services/cdn/api_default.go

Large diffs are not rendered by default.

90 changes: 17 additions & 73 deletions services/cdn/api_default_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions services/cdn/client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion services/cdn/configuration.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading