Skip to content

Commit

Permalink
chore(deps): bump the main group across 1 directory with 5 updates (#828
Browse files Browse the repository at this point in the history
)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Murad Biashimov <[email protected]>
  • Loading branch information
dependabot[bot] and byashimov authored Oct 14, 2024
1 parent 2828308 commit 6df5947
Show file tree
Hide file tree
Showing 32 changed files with 378 additions and 58 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@

## [MAJOR.MINOR.PATCH] - YYYY-MM-DD

- Add `Clickhouse` field `userConfig.recovery_basebackup_name`, type `string`: Name of the basebackup
to restore in forked service
- Add `Grafana` field `userConfig.auth_generic_oauth.use_refresh_token`, type `boolean`: Set to true
to use refresh token and check access token expiration
- Add `Kafka` field `userConfig.schema_registry_config.retriable_errors_silenced`, type `boolean`: If
enabled, kafka errors which can be retried or custom errors specified for the service will not be
raised, instead, a warning log is emitted
- Add `Kafka` field `userConfig.schema_registry_config.schema_reader_strict_mode`, type `boolean`: If
enabled, causes the Karapace schema-registry service to shutdown when there are invalid schema records
in the `_schemas` topic
- Add `Kafka` field `userConfig.single_zone`, type `object`: Single-zone configuration
- Change `Kafka` field `userConfig.kafka_version`: enum ~~`[3.4, 3.5, 3.6, 3.7]`~~`[3.5, 3.6, 3.7, 3.8]`
- Add `MySQL` field `userConfig.mysql.log_output`, type `string`: The slow log output destination when
slow_query_log is ON
- Add `OpenSearch` field `userConfig.azure_migration.indices`, type `string`: A comma-delimited list
of indices to restore from the snapshot. Multi-index syntax is supported
- Add `OpenSearch` field `userConfig.gcs_migration.indices`, type `string`: A comma-delimited list of
indices to restore from the snapshot. Multi-index syntax is supported
- Add `OpenSearch` field `userConfig.s3_migration.indices`, type `string`: A comma-delimited list of
indices to restore from the snapshot. Multi-index syntax is supported
- Change `PostgreSQL` field `userConfig.additional_backup_regions`: deprecated

## v0.25.0 - 2024-09-19

- Fix `KafkaTopic`: fails to create a topic with the replication factor set more than running Kafka nodes
Expand Down
5 changes: 5 additions & 0 deletions api/v1alpha1/userconfig/service/clickhouse/clickhouse.go

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

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

3 changes: 3 additions & 0 deletions api/v1alpha1/userconfig/service/grafana/grafana.go

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

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

17 changes: 16 additions & 1 deletion api/v1alpha1/userconfig/service/kafka/kafka.go

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

35 changes: 35 additions & 0 deletions api/v1alpha1/userconfig/service/kafka/zz_generated.deepcopy.go

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

8 changes: 6 additions & 2 deletions api/v1alpha1/userconfig/service/mysql/mysql.go

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

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

22 changes: 21 additions & 1 deletion api/v1alpha1/userconfig/service/opensearch/opensearch.go

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

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

3 changes: 2 additions & 1 deletion api/v1alpha1/userconfig/service/pg/pg.go

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

Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,11 @@ spec:
VPC or another type of private network
type: boolean
type: object
recovery_basebackup_name:
description: Name of the basebackup to restore in forked service
maxLength: 128
pattern: ^[a-zA-Z0-9-_:.+]+$
type: string
service_log:
description:
Store logs for the service so that they are available
Expand Down
5 changes: 5 additions & 0 deletions charts/aiven-operator-crds/templates/aiven.io_grafanas.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,11 @@ spec:
description: Token URL
maxLength: 2048
type: string
use_refresh_token:
description:
Set to true to use refresh token and check access
token expiration.
type: boolean
required:
- api_url
- auth_url
Expand Down
Loading

0 comments on commit 6df5947

Please sign in to comment.