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(release): v0.16.0 #558

Merged
merged 1 commit into from
Dec 7, 2023
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

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

## v0.16.0 - 2023-12-07

- Set conditions on errors: `Preconditions`, `CreateOrUpdate`, `Delete`. Thanks to @atarax
- Fix object updates lost when reconciler exits before the object is committed
- Add `Kafka` field `userConfig.kafka.transaction_partition_verification_enable`, type `boolean`: Enable
Expand Down
4 changes: 2 additions & 2 deletions charts/aiven-operator-crds/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: aiven-operator-crds
description: A Helm chart to deploy the aiven operator custom resource definitions
type: application
version: v0.15.0
appVersion: v0.15.0
version: v0.16.0
appVersion: v0.16.0
maintainers:
- name: ivan-savciuc
url: https://www.aiven.io
Expand Down
4 changes: 2 additions & 2 deletions charts/aiven-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: aiven-operator
description: A Helm chart to deploy the aiven operator
type: application
version: v0.15.0
appVersion: v0.15.0
version: v0.16.0
appVersion: v0.16.0
maintainers:
- name: ivan-savciuc
url: https://www.aiven.io
Expand Down
32 changes: 32 additions & 0 deletions docs/docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# Changelog


## v0.16.0 - 2023-12-07

- Set conditions on errors: `Preconditions`, `CreateOrUpdate`, `Delete`. Thanks to @atarax
- Fix object updates lost when reconciler exits before the object is committed
- Add `Kafka` field `userConfig.kafka.transaction_partition_verification_enable`, type `boolean`: Enable
verification that checks that the partition has been added to the transaction before writing transactional
records to the partition
- Add `Cassandra` field `userConfig.service_log`, type `boolean`: Store logs for the service so that
they are available in the HTTP API and console
- Add `Clickhouse` field `userConfig.service_log`, type `boolean`: Store logs for the service so that
they are available in the HTTP API and console
- Add `Grafana` field `userConfig.service_log`, type `boolean`: Store logs for the service so that they
are available in the HTTP API and console
- Add `KafkaConnect` field `userConfig.service_log`, type `boolean`: Store logs for the service so that
they are available in the HTTP API and console
- Add `Kafka` field `userConfig.kafka_rest_config.name_strategy_validation`, type `boolean`: If true,
validate that given schema is registered under expected subject name by the used name strategy when
producing messages
- Add `Kafka` field `userConfig.service_log`, type `boolean`: Store logs for the service so that they
are available in the HTTP API and console
- Add `MySQL` field `userConfig.service_log`, type `boolean`: Store logs for the service so that they
are available in the HTTP API and console
- Add `OpenSearch` field `userConfig.service_log`, type `boolean`: Store logs for the service so that
they are available in the HTTP API and console
- Add `PostgreSQL` field `userConfig.pg_qualstats`, type `object`: System-wide settings for the pg_qualstats
extension
- Add `PostgreSQL` field `userConfig.service_log`, type `boolean`: Store logs for the service so that
they are available in the HTTP API and console
- Add `Redis` field `userConfig.service_log`, type `boolean`: Store logs for the service so that they
are available in the HTTP API and console

## v0.15.0 - 2023-11-17

- Upgrade to Go 1.21
Expand Down
Loading