From fb2785356634aaac140527d7ff0c9e02f5ad5ca7 Mon Sep 17 00:00:00 2001 From: Stefan Prodan Date: Fri, 18 Nov 2022 14:10:59 +0200 Subject: [PATCH] Release v0.31.0 Signed-off-by: Stefan Prodan --- CHANGELOG.md | 35 +++++++++++++++++++++++++++++++ config/manager/kustomization.yaml | 2 +- go.mod | 2 +- 3 files changed, 37 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a68deee..c88c63fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,41 @@ All notable changes to this project are documented in this file. +## 0.31.0 + +**Release date:** 2022-11-18 + +This prerelease comes with improvements to the manifests +generation component. The Kustomize overlay build logic has been +factored out into `github.com/fluxcd/pkg/kustomize` so that both +the controller and the Flux CLI (`flux buid kustomization`) +share the same code base. + +In addition, the controller dependencies have been updated to +Kubernetes v1.25.4 and controller-runtime v0.13.1. +The Azure Vault SDK used for secrets decryption has been updated +to match the latest stable release form upstream. + +Improvements: +- Refactor: Generate manifests with `flux/pkg/kustomize` + [#763](https://github.com/fluxcd/kustomize-controller/pull/763) +- Update `keyvault/azkeys` Azure SDK to v0.9.0 + [#759](https://github.com/fluxcd/kustomize-controller/pull/759) +- Update Source API to v0.32.1 + [#768](https://github.com/fluxcd/kustomize-controller/pull/768) +- Update dependencies + [#767](https://github.com/fluxcd/kustomize-controller/pull/767) +- Use Flux Event API v1beta1 + [#758](https://github.com/fluxcd/kustomize-controller/pull/758) +- build: Bump gpg to alpine's edge + [#760](https://github.com/fluxcd/kustomize-controller/pull/760) +- build: Remove nsswitch.conf creation + [#765](https://github.com/fluxcd/kustomize-controller/pull/765) + +Fixes: +- Don't override the reconcile error on status patching + [#761](https://github.com/fluxcd/kustomize-controller/pull/761) + ## 0.30.0 **Release date:** 2022-10-21 diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index 2c7b63d0..12ad5320 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.30.0 + newTag: v0.31.0 diff --git a/go.mod b/go.mod index c300d253..5d16fbb9 100644 --- a/go.mod +++ b/go.mod @@ -19,7 +19,7 @@ require ( github.com/aws/aws-sdk-go-v2/service/sts v1.17.4 github.com/cyphar/filepath-securejoin v0.2.3 github.com/dimchansky/utfbom v1.1.1 - github.com/fluxcd/kustomize-controller/api v0.30.0 + github.com/fluxcd/kustomize-controller/api v0.31.0 github.com/fluxcd/pkg/apis/acl v0.1.0 github.com/fluxcd/pkg/apis/event v0.2.0 github.com/fluxcd/pkg/apis/kustomize v0.7.0