diff --git a/CHANGELOG.md b/CHANGELOG.md index 08c15a7dc..2328d531c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## 0.36.2 + +**Release date:** 2023-10-11 + +This prerelease contains an improvement to retry the reconciliation of a +`HelmRelease` as soon as the chart is available in storage, instead of waiting +for the next reconciliation interval. Which is particularly useful when the +source-controller has just been upgraded. + +In addition, it fixes a bug in which the controller would not properly label +Custom Resource Definitions. + +Fixes: +- runner: ensure CRDs are properly labeled + [#781](https://github.com/fluxcd/helm-controller/pull/781) +- fix: retry failed releases when charts are available in storage + [#785](https://github.com/fluxcd/helm-controller/pull/785) + +Improvements: +- Address typo in documentation + [#777](https://github.com/fluxcd/helm-controller/pull/777) +- Update CI dependencies + [#783](https://github.com/fluxcd/helm-controller/pull/783) + [#786](https://github.com/fluxcd/helm-controller/pull/786) +- Address miscellaneous issues throughout code base + [#788](https://github.com/fluxcd/helm-controller/pull/788) + ## 0.36.1 **Release date:** 2023-09-18 diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index 94a388e5a..e96a037da 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.36.1 + newTag: v0.36.2 diff --git a/go.mod b/go.mod index a3cb1fd3c..14d240a6c 100644 --- a/go.mod +++ b/go.mod @@ -15,7 +15,7 @@ replace ( ) require ( - github.com/fluxcd/helm-controller/api v0.36.1 + github.com/fluxcd/helm-controller/api v0.36.2 github.com/fluxcd/pkg/apis/acl v0.1.0 github.com/fluxcd/pkg/apis/event v0.5.2 github.com/fluxcd/pkg/apis/kustomize v1.1.1