diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 9bc82d3b..1f5bc203 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.20" + ".": "0.0.21" } diff --git a/CHANGELOG.md b/CHANGELOG.md index ad413c22..9d1b49f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.0.21](https://github.com/cloudnative-pg/klio/compare/v0.0.20...v0.0.21) (2026-08-22) + + +### Bug Fixes + +* **core:** Add release-please marker to core plugin version ([#131](https://github.com/cloudnative-pg/klio/issues/131)) ([4a3b20c](https://github.com/cloudnative-pg/klio/commit/4a3b20c3cd883077c63cca5b7d26a51ac5a53932)), closes [#130](https://github.com/cloudnative-pg/klio/issues/130) +* **deps:** Update all non-major go dependencies ([#116](https://github.com/cloudnative-pg/klio/issues/116)) ([5270d42](https://github.com/cloudnative-pg/klio/commit/5270d42f0ca576de8715588098cfed9287191542)) +* **deps:** Update all non-major go dependencies ([#142](https://github.com/cloudnative-pg/klio/issues/142)) ([12cd4ba](https://github.com/cloudnative-pg/klio/commit/12cd4bae1e821f8711cce7ad77ebd65a46022352)) +* **deps:** Update all non-major go dependencies ([#153](https://github.com/cloudnative-pg/klio/issues/153)) ([bd1e401](https://github.com/cloudnative-pg/klio/commit/bd1e401b181ac87fc122796f8c33771a64667e0f)) +* **deps:** Update kubernetes monorepo to v0.36.4 ([#156](https://github.com/cloudnative-pg/klio/issues/156)) ([a14763c](https://github.com/cloudnative-pg/klio/commit/a14763c9581b78005e6706abbabb63eaa59e7c65)) + ## [0.0.20](https://github.com/cloudnative-pg/klio/compare/v0.0.19...v0.0.20) (2026-08-13) diff --git a/core/internal/cnpgi/metadata.go b/core/internal/cnpgi/metadata.go index d4e433fd..96af766b 100644 --- a/core/internal/cnpgi/metadata.go +++ b/core/internal/cnpgi/metadata.go @@ -24,7 +24,7 @@ import "github.com/cloudnative-pg/cnpg-i/pkg/identity" // data is the metadata of this plugin. var data = identity.GetPluginMetadataResponse{ //nolint:gochecknoglobals Name: "klio.cnpg.io", - Version: "0.0.20", // x-release-please-version + Version: "0.0.21", // x-release-please-version DisplayName: "Klio", ProjectUrl: "", RepositoryUrl: "", diff --git a/documentation/web/docs/user/helm_chart.mdx b/documentation/web/docs/user/helm_chart.mdx index cf943fd8..b0d02493 100644 --- a/documentation/web/docs/user/helm_chart.mdx +++ b/documentation/web/docs/user/helm_chart.mdx @@ -39,7 +39,7 @@ default values, and understand what resources it will create: ```sh helm pull oci://ghcr.io/cloudnative-pg/klio-operator-chart \ - --version 0.0.20 \ + --version 0.0.21 \ --untar ``` @@ -93,7 +93,7 @@ manifests: ```sh helm pull oci://ghcr.io/cloudnative-pg/klio-operator-chart \ - --version 0.0.20 \ + --version 0.0.21 \ --untar ``` @@ -133,7 +133,7 @@ Helm upgrade command, reusing the `values.yaml` file you created when ```sh helm upgrade klio-operator \ oci://ghcr.io/cloudnative-pg/klio-operator-chart \ - --version 0.0.20 \ + --version 0.0.21 \ --namespace cnpg-system \ -f values.yaml ``` @@ -164,7 +164,7 @@ released. Update the `spec.image` field with the new image reference: ```sh kubectl patch server -n \ --type merge \ - -p '{"spec":{"image":"ghcr.io/cloudnative-pg/klio:v0.0.20"}}' + -p '{"spec":{"image":"ghcr.io/cloudnative-pg/klio:v0.0.21"}}' ``` diff --git a/documentation/web/docs/user/klio_server.md b/documentation/web/docs/user/klio_server.md index 20717323..f3d33da1 100644 --- a/documentation/web/docs/user/klio_server.md +++ b/documentation/web/docs/user/klio_server.md @@ -203,7 +203,7 @@ spec: mode: read-only # Container image for the Klio server - image: ghcr.io/cloudnative-pg/klio:v0.0.20 + image: ghcr.io/cloudnative-pg/klio:v0.0.21 imagePullPolicy: IfNotPresent # TLS configuration diff --git a/documentation/web/docs/user/quickstart.md b/documentation/web/docs/user/quickstart.md index a8e7eaa3..862f3df1 100644 --- a/documentation/web/docs/user/quickstart.md +++ b/documentation/web/docs/user/quickstart.md @@ -59,7 +59,7 @@ Install the chart: ```sh helm install klio-operator \ oci://ghcr.io/cloudnative-pg/klio-operator-chart \ - --version 0.0.20 \ + --version 0.0.21 \ --namespace cnpg-system \ -f values.yaml ``` @@ -248,7 +248,7 @@ metadata: name: klio-server namespace: default spec: - image: ghcr.io/cloudnative-pg/klio:v0.0.20 + image: ghcr.io/cloudnative-pg/klio:v0.0.21 # TLS certificate presented to clients tlsSecretName: klio-server-tls diff --git a/documentation/web/docs/user/walplayer.md b/documentation/web/docs/user/walplayer.md index 3ad8a10d..fef60540 100644 --- a/documentation/web/docs/user/walplayer.md +++ b/documentation/web/docs/user/walplayer.md @@ -215,7 +215,7 @@ spec: initContainers: # Generate synthetic WAL files - name: generate-wals - image: ghcr.io/cloudnative-pg/klio:v0.0.20 + image: ghcr.io/cloudnative-pg/klio:v0.0.21 imagePullPolicy: Always command: - /usr/bin/klio @@ -230,7 +230,7 @@ spec: containers: # Play WAL files to the Klio server - name: play-wals - image: ghcr.io/cloudnative-pg/klio:v0.0.20 + image: ghcr.io/cloudnative-pg/klio:v0.0.21 imagePullPolicy: Always command: - /usr/bin/klio diff --git a/operator/dist/chart/Chart.yaml b/operator/dist/chart/Chart.yaml index e93d2e52..e7f7dc3b 100644 --- a/operator/dist/chart/Chart.yaml +++ b/operator/dist/chart/Chart.yaml @@ -10,8 +10,8 @@ keywords: - backup - CloudNativePG type: application -version: 0.0.20 -appVersion: 0.0.20 +version: 0.0.21 +appVersion: 0.0.21 home: https://github.com/cloudnative-pg/klio maintainers: - name: fcanovai diff --git a/operator/dist/chart/values.yaml b/operator/dist/chart/values.yaml index 365968af..f9cb4600 100644 --- a/operator/dist/chart/values.yaml +++ b/operator/dist/chart/values.yaml @@ -24,7 +24,7 @@ controllerManager: # -- The image to use for the controller manager container. repository: ghcr.io/cloudnative-pg/klio-operator # -- The tag to use for the controller manager container image. - tag: v0.0.20 # x-release-please-version + tag: v0.0.21 # x-release-please-version # -- The controller manager container imagePullPolicy. pullPolicy: Always # -- The list of imagePullSecrets. @@ -33,7 +33,7 @@ controllerManager: # Set OTEL_* variables here to enable OpenTelemetry export. # See the OpenTelemetry Observability page in the documentation. env: { - SIDECAR_IMAGE: "ghcr.io/cloudnative-pg/klio:v0.0.20" # x-release-please-version + SIDECAR_IMAGE: "ghcr.io/cloudnative-pg/klio:v0.0.21" # x-release-please-version } # -- Liveness probe configuration. livenessProbe: diff --git a/operator/internal/cnpgi/metadata.go b/operator/internal/cnpgi/metadata.go index 650b68a3..0f8021ed 100644 --- a/operator/internal/cnpgi/metadata.go +++ b/operator/internal/cnpgi/metadata.go @@ -28,7 +28,7 @@ import ( // data is the metadata of this plugin. var data = identity.GetPluginMetadataResponse{ //nolint: gochecknoglobals Name: klioconfig.PluginName, - Version: "0.0.20", // x-release-please-version + Version: "0.0.21", // x-release-please-version DisplayName: "Klio", ProjectUrl: "", RepositoryUrl: "",