diff --git a/CHANGELOG.md b/CHANGELOG.md index be51830f..15b9ca24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,24 @@ All notable changes to this project are documented in this file. +## 0.1.2 (2020-10-16) + +This prerelease comes with support for +[targeting remote clusters](https://github.com/fluxcd/kustomize-controller/blob/main/docs/spec/v1beta1/kustomization.md#cluster-api--remote-clusters) +created with Cluster-API. + +Improvements: +* Implement non-caching, per-kustomization GC-client/statusPoller for cross-cluster kubeconfigs + [#135](https://github.com/fluxcd/kustomize-controller/pull/135) + +Fixes: +* Fix status reporting when the source is not found + [#141](https://github.com/fluxcd/kustomize-controller/pull/141) +* Validate manifests when generating kustomization.yaml + [#143](https://github.com/fluxcd/kustomize-controller/pull/143) +* Set correct status on failure events + [#145](https://github.com/fluxcd/kustomize-controller/pull/145) + ## 0.1.1 (2020-10-13) This prerelease comes with Prometheus instrumentation for the controller's resources. diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index 14c1ca0a..a783f785 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.1.1 + newTag: v0.1.2 diff --git a/go.mod b/go.mod index e33f9d84..51877a6a 100644 --- a/go.mod +++ b/go.mod @@ -5,7 +5,7 @@ go 1.15 replace github.com/fluxcd/kustomize-controller/api => ./api require ( - github.com/fluxcd/kustomize-controller/api v0.1.1 + github.com/fluxcd/kustomize-controller/api v0.1.2 github.com/fluxcd/pkg/apis/meta v0.0.2 github.com/fluxcd/pkg/runtime v0.1.0 github.com/fluxcd/pkg/testserver v0.0.2