Skip to content

Commit bd74edd

Browse files
Merge branch 'main' into oas-bot-10591999599/rabbitmq
2 parents b2c4550 + f3f8a80 commit bd74edd

File tree

5 files changed

+23
-17
lines changed

5 files changed

+23
-17
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44
- **Breaking changes:** `GetMetricsResponse` fields have changed data types
55
- `CpuLoadPercent`, `Load1`, `Load15` and `Load5` are now `*float64`
66
- `ParachuteDiskEphemeralActivated` and `ParachuteDiskPersistentActivated` are now `*bool`
7+
- `redis`: [v0.19.0](services/redis/CHANGELOG.md#v0190-2024-09-02)
8+
- **Breaking changes:** `GetMetricsResponse` fields have changed data types
9+
- `CpuLoadPercent`, `Load1`, `Load15` and `Load5` are now `*float64`
10+
- `ParachuteDiskEphemeralActivated` and `ParachuteDiskPersistentActivated` are now `*bool`
11+
- `core`: [v0.13.0](core/CHANGELOG.md#v0130-2024-09-03)
12+
- Deprecated method `config.WithJWKSEndpoint` and field `config.Configuration.JWKSCustomUrl` have been removed. Deprecation was done in the `core` release [v0.10.0](core/CHANGELOG.md#v0100-2024-02-27).
713
- `opensearch`: [v0.18.0](services/opensearch/CHANGELOG.md#v0180-2024-09-02)
814
- **Breaking changes:** `GetMetricsResponse` fields have changed data types
915
- `CpuLoadPercent`, `Load1`, `Load15` and `Load5` are now `*float64`

core/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v0.13.0 (2024-09-03)
2+
- Deprecated method `config.WithJWKSEndpoint` and field `config.Configuration.JWKSCustomUrl` have been removed. Deprecation was done in the `core` release [v0.10.0](core/CHANGELOG.md#v0100-2024-02-27).
3+
14
## v0.12.0 (2024-04-11)
25
- **Feature:** Add `Middleware` type, `WithMiddleware` and `ChainMiddleware` methods to package `config`, this allows clients to chain and add Middlewares to the transport layer of the HTTP client.
36

core/config/config.go

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,6 @@ type Configuration struct {
102102
// Only has effect for key flow
103103
BackgroundTokenRefreshContext context.Context
104104

105-
// Deprecated: validation using JWKS was removed, for being redundant with token validation done in the APIs. This field has no effect, and will be removed in a later update
106-
JWKSCustomUrl string `json:"jwksCustomUrl,omitempty"`
107105
// Deprecated: retry options were removed to reduce complexity of the client. If this functionality is needed, you can provide your own custom HTTP client. This field has no effect, and will be removed in a later update
108106
RetryOptions *clients.RetryConfig //nolint:staticcheck //will be removed in a later update
109107

@@ -177,13 +175,6 @@ func WithTokenEndpoint(url string) ConfigurationOption {
177175
}
178176
}
179177

180-
// Deprecated: validation using JWKS was removed, for being redundant with token validation done in the APIs. This option has no effect, and will be removed in a later update
181-
func WithJWKSEndpoint(_ string) ConfigurationOption {
182-
return func(config *Configuration) error {
183-
return nil
184-
}
185-
}
186-
187178
// WithServiceAccountEmail returns a ConfigurationOption that sets the service account email
188179
func WithServiceAccountEmail(serviceAccountEmail string) ConfigurationOption {
189180
return func(config *Configuration) error {

services/redis/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v0.19.0 (2024-09-02)
2+
3+
- **Breaking changes:** `GetMetricsResponse` fields have changed data types
4+
- `CpuLoadPercent`, `Load1`, `Load15` and `Load5` are now `*float64`
5+
- `ParachuteDiskEphemeralActivated` and `ParachuteDiskPersistentActivated` are now `*bool`
6+
17
## v0.18.0 (2024-08-01)
28

39
- **Feature:** `Plan` has a new field `SkuName`

services/redis/model_get_metrics_response.go

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)