Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the main group across 1 directory with 5 updates #828

Merged
merged 2 commits into from
Oct 14, 2024
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
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
Loading