From b0ffb4bbc15fa749af47ec5df2733c045f9e81bc Mon Sep 17 00:00:00 2001 From: Agalin <6164461+Agalin@users.noreply.github.com> Date: Fri, 21 Aug 2026 14:36:24 +0200 Subject: [PATCH] chore(main): release 0.8.0 Signed-off-by: Szymon Soloch --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- internal/cnpgi/metadata/constants.go | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e7ca613..64f3cdd 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.7.0" + ".": "0.8.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2984105..255298a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [0.8.0](https://github.com/operasoftware/cnpg-plugin-pgbackrest/compare/v0.7.0...v0.8.0) (2026-08-21) + + +### Features + +* Make pgBackRest log levels configurable ([d43bf2b](https://github.com/operasoftware/cnpg-plugin-pgbackrest/commit/d43bf2b658c2fb8190ede01a117aca44cccf8327)) +* Per-repository custom CA configuration ([#141](https://github.com/operasoftware/cnpg-plugin-pgbackrest/issues/141)) ([37c20d0](https://github.com/operasoftware/cnpg-plugin-pgbackrest/commit/37c20d0787a9b3a022c4246d2796a99467e5eb28)) + + +### Bug Fixes + +* **deps:** Update module github.com/onsi/ginkgo/v2 to v2.32.1 ([#139](https://github.com/operasoftware/cnpg-plugin-pgbackrest/issues/139)) ([fa4c89c](https://github.com/operasoftware/cnpg-plugin-pgbackrest/commit/fa4c89ca917cd7ddb98730bd7f3c2e9b8c7543bf)) + ## [0.7.0](https://github.com/operasoftware/cnpg-plugin-pgbackrest/compare/v0.6.1...v0.7.0) (2026-08-12) diff --git a/README.md b/README.md index 83cb41e..130a4f8 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ Use `kubectl` to apply the manifest for the latest commit in the `main` branch: ```sh kubectl apply -f \ - https://github.com/operasoftware/cnpg-plugin-pgbackrest/releases/download/v0.7.0/manifest.yaml + https://github.com/operasoftware/cnpg-plugin-pgbackrest/releases/download/v0.8.0/manifest.yaml ``` diff --git a/internal/cnpgi/metadata/constants.go b/internal/cnpgi/metadata/constants.go index 5110ee0..b119a6f 100644 --- a/internal/cnpgi/metadata/constants.go +++ b/internal/cnpgi/metadata/constants.go @@ -16,7 +16,7 @@ const ( // Data is the metadata of this plugin. var Data = identity.GetPluginMetadataResponse{ Name: PluginName, - Version: "0.7.0", // x-release-please-version + Version: "0.8.0", // x-release-please-version DisplayName: "pgBackRestInstance", ProjectUrl: "https://github.com/operasoftware/cnpg-plugin-pgbackrest", RepositoryUrl: "https://github.com/operasoftware/cnpg-plugin-pgbackrest",