Skip to content

Commit 000360f

Browse files
committed
chore(release): v0.31.1
1 parent ee09b20 commit 000360f

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

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

5+
## v0.31.1 - 2025-10-08
6+
7+
- Fix `PostgreSQL`: resolved panic during version upgrade when upgrade check task fails
8+
59
## v0.31.0 - 2025-07-25
610

711
- `KafkaTopic`: added concurrent reconcilers and optimized API calls

charts/aiven-operator-crds/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: aiven-operator-crds
33
description: A Helm chart to deploy the aiven operator custom resource definitions
44
type: application
5-
version: v0.31.0
6-
appVersion: v0.31.0
5+
version: v0.31.1
6+
appVersion: v0.31.1
77
maintainers:
88
- name: byashimov
99
url: https://www.aiven.io

charts/aiven-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: aiven-operator
33
description: A Helm chart to deploy the aiven operator
44
type: application
5-
version: v0.31.0
6-
appVersion: v0.31.0
5+
version: v0.31.1
6+
appVersion: v0.31.1
77
maintainers:
88
- name: byashimov
99
url: https://www.aiven.io

controllers/postgresql_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ func (a *postgreSQLAdapter) performUpgradeTaskIfNeeded(ctx context.Context, avnG
128128
finalTaskResult, err := waitForTaskToComplete(ctx, func() (bool, *service.ServiceTaskGetOut, error) {
129129
t, getErr := avnGen.ServiceTaskGet(ctx, a.getServiceCommonSpec().Project, a.getObjectMeta().Name, task.TaskId)
130130
if getErr != nil {
131-
return true, nil, fmt.Errorf("error fetching service task %s: %w", t.TaskId, getErr)
131+
return true, nil, fmt.Errorf("error fetching service task %s: %w", task.TaskId, getErr)
132132
}
133133

134134
if !t.Success {

docs/docs/changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
# Changelog
22

33

4+
## v0.31.1 - 2025-10-08
5+
6+
- Fix `PostgreSQL`: resolved panic during version upgrade when upgrade check task fails
7+
48
## v0.31.0 - 2025-07-25
59

10+
- `KafkaTopic`: added concurrent reconcilers and optimized API calls
611
- Upgraded HPA from deprecated `autoscaling/v2beta1` to stable `autoscaling/v2` API
712
- Added `ServiceUser` field `connInfoSecretSource`: Allows reading passwords from existing secrets for credential management. Supports setting passwords for new users and existing users
813
- Change `AlloyDBOmni` field `userConfig.pg.max_wal_senders`: maximum ~~`64`~~`256`

0 commit comments

Comments
 (0)