diff --git a/CHANGELOG.md b/CHANGELOG.md index 9117c9b8..868098e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,25 @@ All notable changes to this project are documented in this file. +## 0.22.0 + +**Release date:** 2022-03-21 + +This prerelease introduces a new annotation `kustomize.toolkit.fluxcd.io/ssa: merge` +for allowing kustomize-controller to patch cluster addons such as CoreDNS without removing +the kubectl managed fields. + +In addition, various dependencies where updated to their latest versions, and +the code base was refactored to align with `fluxcd/pkg/runtime` v0.13 release. + +Improvements: +- Allow shared ownership of in-cluster objects applied with kubectl + [#581](https://github.com/fluxcd/kustomize-controller/pull/581) +- Update `pkg/runtime` and `apis/meta` + [#575](https://github.com/fluxcd/kustomize-controller/pull/575) +- Update dependencies + [#584](https://github.com/fluxcd/kustomize-controller/pull/584) + ## 0.21.1 **Release date:** 2022-02-23 diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index 6169b82c..0a5db7a9 100644 --- a/config/manager/kustomization.yaml +++ b/config/manager/kustomization.yaml @@ -5,4 +5,4 @@ resources: images: - name: fluxcd/kustomize-controller newName: fluxcd/kustomize-controller - newTag: v0.21.1 + newTag: v0.22.0 diff --git a/go.mod b/go.mod index 3170850b..4fa04580 100644 --- a/go.mod +++ b/go.mod @@ -13,7 +13,7 @@ require ( github.com/cyphar/filepath-securejoin v0.2.3 github.com/dimchansky/utfbom v1.1.1 github.com/drone/envsubst v1.0.3 - github.com/fluxcd/kustomize-controller/api v0.21.1 + github.com/fluxcd/kustomize-controller/api v0.22.0 github.com/fluxcd/pkg/apis/acl v0.0.3 github.com/fluxcd/pkg/apis/kustomize v0.3.2 github.com/fluxcd/pkg/apis/meta v0.12.1