diff --git a/CHANGELOG.md b/CHANGELOG.md index 49be89f6..488f2d6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [MAJOR.MINOR.PATCH] - YYYY-MM-DD +## v0.24.0 - 2024-07-16 + - Fix `PostgreSQL`: wait for a valid backup to create read replica - Fix `ClickhouseGrant`: grant privileges for an unknown table (Clickhouse can do that) - Fix `ClickhouseGrant`: track the state to revoke only known privileges diff --git a/charts/aiven-operator-crds/Chart.yaml b/charts/aiven-operator-crds/Chart.yaml index b5728cdc..7dc1f31a 100644 --- a/charts/aiven-operator-crds/Chart.yaml +++ b/charts/aiven-operator-crds/Chart.yaml @@ -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.23.0 -appVersion: v0.23.0 +version: v0.24.0 +appVersion: v0.24.0 maintainers: - name: byashimov url: https://www.aiven.io diff --git a/charts/aiven-operator/Chart.yaml b/charts/aiven-operator/Chart.yaml index 4ec6b342..148d5652 100644 --- a/charts/aiven-operator/Chart.yaml +++ b/charts/aiven-operator/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: aiven-operator description: A Helm chart to deploy the aiven operator type: application -version: v0.23.0 -appVersion: v0.23.0 +version: v0.24.0 +appVersion: v0.24.0 maintainers: - name: byashimov url: https://www.aiven.io diff --git a/docs/docs/changelog.md b/docs/docs/changelog.md index 975f3cb2..b40f1807 100644 --- a/docs/docs/changelog.md +++ b/docs/docs/changelog.md @@ -1,6 +1,24 @@ # Changelog +## v0.24.0 - 2024-07-16 + +- Fix `PostgreSQL`: wait for a valid backup to create read replica +- Fix `ClickhouseGrant`: grant privileges for an unknown table (Clickhouse can do that) +- Fix `ClickhouseGrant`: track the state to revoke only known privileges +- Add `Cassandra` field `userConfig.cassandra.read_request_timeout_in_ms`, type `integer`: How long the + coordinator waits for read operations to complete before timing it out +- Add `Cassandra` field `userConfig.cassandra.write_request_timeout_in_ms`, type `integer`: How long + the coordinator waits for write requests to complete with at least one node in the local datacenter +- Add `OpenSearch` field `userConfig.opensearch.knn_memory_circuit_breaker_enabled`, type `boolean`: + Enable or disable KNN memory circuit breaker. Defaults to true +- Add `OpenSearch` field `userConfig.opensearch.knn_memory_circuit_breaker_limit`, type `integer`: Maximum + amount of memory that can be used for KNN index. Defaults to 50% of the JVM heap size +- Change `PostgreSQL` field `userConfig.pg.log_line_prefix`: enum ~~`['%m [%p] %q[user=%u,db=%d,app=%a] +', '%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h ', 'pid=%p,user=%u,db=%d,app=%a,client=%h ']`~~ + → `['%m [%p] %q[user=%u,db=%d,app=%a] ', '%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h ', +'pid=%p,user=%u,db=%d,app=%a,client=%h ', 'pid=%p,user=%u,db=%d,app=%a,client=%h,txid=%x,qid=%Q ']` + ## v0.23.0 - 2024-07-12 - Ignore `http.StatusBadRequest` on `ClickhouseGrant` deletion