Skip to content

Commit

Permalink
chore(release): v0.23.0 (#788)
Browse files Browse the repository at this point in the history
  • Loading branch information
byashimov authored Jul 12, 2024
1 parent d835e39 commit 301bd53
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
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.23.0 - 2024-07-12

- Ignore `http.StatusBadRequest` on `ClickhouseGrant` deletion
- Retry conflict error when k8s object saved to the storage
- Fix `ClickhouseGrant` invalid remote and local privileges comparison
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.22.0
appVersion: v0.22.0
version: v0.23.0
appVersion: v0.23.0
maintainers:
- name: byashimov
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.22.0
appVersion: v0.22.0
version: v0.23.0
appVersion: v0.23.0
maintainers:
- name: byashimov
url: https://www.aiven.io
Expand Down
8 changes: 8 additions & 0 deletions docs/docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Changelog


## v0.23.0 - 2024-07-12

- Ignore `http.StatusBadRequest` on `ClickhouseGrant` deletion
- Retry conflict error when k8s object saved to the storage
- Fix `ClickhouseGrant` invalid remote and local privileges comparison
- Fix `ClickhouseGrant`: doesn't escape role name to grant
- Fix `ClickhouseUser`: password was reset due to an incorrect processing cycle

## v0.22.0 - 2024-07-02

- Ignore `ClickhouseRole` deletion error (missing database)
Expand Down
2 changes: 1 addition & 1 deletion tests/clickhousegrant_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ func TestClickhouseGrantExample(t *testing.T) {
s := NewSession(ctx, k8sClient, cfg.Project)

// Cleans test afterward
defer s.Destroy()
defer s.Destroy(t)

// WHEN
// Applies given manifest
Expand Down

0 comments on commit 301bd53

Please sign in to comment.