From 9eb8ca73ca811175ab2bdc02f28e1a233cade136 Mon Sep 17 00:00:00 2001 From: Matheus Pimenta Date: Wed, 28 May 2025 13:19:53 +0100 Subject: [PATCH 1/2] Add changelog entry for v1.6.0 Signed-off-by: Matheus Pimenta --- CHANGELOG.md | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a4afab73..42864fa7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,54 @@ All notable changes to this project are documented in this file. +## 1.6.0 + +**Release date:** 2025-05-28 + +This minor release comes with various bug fixes and improvements. + +Kustomization API now supports object-level workload identity by setting +`.spec.decryption.serviceAccountName` to the name of a service account +in the same namespace that has been configured with appropriate cloud +permissions. For this feature to work, the controller feature gate +`ObjectLevelWorkloadIdentity` must be enabled. See a complete guide +[here](https://fluxcd.io/flux/integrations/). + +Kustomization API now supports the value `WaitForTermination` for the +`.spec.deletionPolicy` field. This instructs the controller to wait for the +deletion of all resources managed by the Kustomization before allowing the +Kustomization itself to be deleted. See docs +[here](https://fluxcd.io/flux/components/kustomize/kustomizations/#deletion-policy). + +In addition, the Kubernetes dependencies have been updated to v1.33 and +various other controller dependencies have been updated to their latest version. +The controller is now built with Go 1.24. + +Fixes: +- Fix performance regression due to using client without cache + [#1436](https://github.com/fluxcd/kustomize-controller/pull/1436) +- Fix secret value showing up in logs + [#1372](https://github.com/fluxcd/kustomize-controller/pull/1372) + +Improvements: +- [RFC-0010] Introduce KMS provider decryption with service account + [#1426](https://github.com/fluxcd/kustomize-controller/pull/1426) + [#1449](https://github.com/fluxcd/kustomize-controller/pull/1449) + [#1456](https://github.com/fluxcd/kustomize-controller/pull/1456) +- Add `WaitForTermination` option to DeletionPolicy + [#1444](https://github.com/fluxcd/kustomize-controller/pull/1444) +- Skip emitting events for suspended Kustomizations + [#1396](https://github.com/fluxcd/kustomize-controller/pull/1396) +- Various dependency updates + [#1458](https://github.com/fluxcd/kustomize-controller/pull/1458) + [#1448](https://github.com/fluxcd/kustomize-controller/pull/1448) + [#1433](https://github.com/fluxcd/kustomize-controller/pull/1433) + [#1435](https://github.com/fluxcd/kustomize-controller/pull/1435) + [#1429](https://github.com/fluxcd/kustomize-controller/pull/1429) + [#1414](https://github.com/fluxcd/kustomize-controller/pull/1414) + [#1410](https://github.com/fluxcd/kustomize-controller/pull/1410) + [#1401](https://github.com/fluxcd/kustomize-controller/pull/1401) + ## 1.5.1 **Release date:** 2025-02-25 From 6efc3ebe0a4656e45e66529efa6a69a54ed0908c Mon Sep 17 00:00:00 2001 From: Matheus Pimenta Date: Wed, 28 May 2025 13:20:38 +0100 Subject: [PATCH 2/2] Release v1.6.0 Signed-off-by: Matheus Pimenta --- config/manager/kustomization.yaml | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index c7382c20..0295a87d 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: v1.5.0 + newTag: v1.6.0 diff --git a/go.mod b/go.mod index 650272a0..c50caa01 100644 --- a/go.mod +++ b/go.mod @@ -19,7 +19,7 @@ require ( github.com/cyphar/filepath-securejoin v0.4.1 github.com/dimchansky/utfbom v1.1.1 github.com/fluxcd/cli-utils v0.36.0-flux.13 - github.com/fluxcd/kustomize-controller/api v1.5.0 + github.com/fluxcd/kustomize-controller/api v1.6.0 github.com/fluxcd/pkg/apis/acl v0.7.0 github.com/fluxcd/pkg/apis/event v0.17.0 github.com/fluxcd/pkg/apis/kustomize v1.10.0