From e97fdfb19b09e36552d7b7b2d43dd770397e90a2 Mon Sep 17 00:00:00 2001 From: Stefan Prodan Date: Fri, 21 Oct 2022 19:12:35 +0300 Subject: [PATCH] Release v0.26.0 Signed-off-by: Stefan Prodan --- CHANGELOG.md | 22 ++++++++++++++++++++++ config/manager/kustomization.yaml | 2 +- go.mod | 2 +- 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 91f851f80..395c96096 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## 0.26.0 + +**Release date:** 2022-10-21 + +This prerelease comes with support for Cosign verification of Helm OCI charts. +The signatures verification can be configured by setting `HelmRelease.spec.chart.spec.verify` with +`provider` as `cosign` and a `secretRef` to a secret containing the public key. +Cosign keyless verification is also supported, please see the +[HelmChart API documentation](https://github.com/fluxcd/source-controller/blob/api/v0.31.0/docs/spec/v1beta2/helmcharts.md#verification) +for more details. + +In addition, the controller dependencies have been updated +to Kubernetes v1.25.3 and Helm v3.10.1. + +Improvements: +- Enable Cosign verification of Helm charts stored as OCI artifacts in container registries + [#545](https://github.com/fluxcd/helm-controller/pull/545) +- API: allow configuration of h unit for timeouts + [#549](https://github.com/fluxcd/helm-controller/pull/549) +- Update dependencies + [#550](https://github.com/fluxcd/helm-controller/pull/550) + ## 0.25.0 **Release date:** 2022-09-29 diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index 103ace144..6b175c064 100644 --- a/config/manager/kustomization.yaml +++ b/config/manager/kustomization.yaml @@ -5,4 +5,4 @@ resources: images: - name: fluxcd/helm-controller newName: fluxcd/helm-controller - newTag: v0.25.0 + newTag: v0.26.0 diff --git a/go.mod b/go.mod index 59a7440ad..41850866a 100644 --- a/go.mod +++ b/go.mod @@ -5,7 +5,7 @@ go 1.18 replace github.com/fluxcd/helm-controller/api => ./api require ( - github.com/fluxcd/helm-controller/api v0.25.0 + github.com/fluxcd/helm-controller/api v0.26.0 github.com/fluxcd/pkg/apis/acl v0.1.0 github.com/fluxcd/pkg/apis/kustomize v0.6.0 github.com/fluxcd/pkg/apis/meta v0.17.0