From ec6b0b4a2e7cbe9379b80f1652cc77ce61c8788f Mon Sep 17 00:00:00 2001 From: Hidde Beydals Date: Wed, 8 Mar 2023 15:27:02 +0100 Subject: [PATCH] Release v0.26.0 Signed-off-by: Hidde Beydals --- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ config/manager/kustomization.yaml | 2 +- go.mod | 2 +- 3 files changed, 31 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c7c8ac4..fc3dd549 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,34 @@ # Changelog +## 0.26.0 + +**Release date:** 2023-03-08 + +This prerelease re-instantiates the `--aws-autologin-for-ecr`, +`--gcp-autologin-for-gcr` and `--azure-autologin-for-acr` flags which became +deprecated in [`v0.25.0`](#0250), after receiving feedback of it complicating +upgrading gradually. The flags will now be removed in the future, and at least +one minor version after this release. We are sorry for any inconvenience this +may have caused. + +In addition, `klog` is now configured to log using the same logger as the rest +of the controller (providing a consistent log format). + +Lastly, the controller is now built with Go 1.20, and the dependencies have +been updated to their latest versions. + +Improvements: +- Update Go to 1.20 + [#347](https://github.com/fluxcd/image-reflector-controller/pull/347) +- Update dependencies + [#349](https://github.com/fluxcd/image-reflector-controller/pull/349) + [#351](https://github.com/fluxcd/image-reflector-controller/pull/351) +- Use `logger.SetLogger` to also configure `klog` + [#350](https://github.com/fluxcd/image-reflector-controller/pull/350) +- Fallback to autologin flags if no provider is specified + [#353](https://github.com/fluxcd/image-reflector-controller/pull/353) + + ## 0.25.0 **Release date:** 2023-02-16 diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index e24fd05a..ca2818ca 100644 --- a/config/manager/kustomization.yaml +++ b/config/manager/kustomization.yaml @@ -5,4 +5,4 @@ resources: images: - name: fluxcd/image-reflector-controller newName: fluxcd/image-reflector-controller - newTag: v0.25.0 + newTag: v0.26.0 diff --git a/go.mod b/go.mod index 3852a43c..f6b18a65 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ require ( github.com/AdaLogics/go-fuzz-headers v0.0.0-20230106234847-43070de90fa1 github.com/Masterminds/semver/v3 v3.2.0 github.com/dgraph-io/badger/v3 v3.2103.5 - github.com/fluxcd/image-reflector-controller/api v0.25.0 + github.com/fluxcd/image-reflector-controller/api v0.26.0 github.com/fluxcd/pkg/apis/acl v0.1.0 github.com/fluxcd/pkg/apis/event v0.4.1 github.com/fluxcd/pkg/apis/meta v0.19.1