From fe703fc52107154012df48f21e446acba9921fa6 Mon Sep 17 00:00:00 2001 From: Stefan Prodan Date: Fri, 7 Jan 2022 18:26:31 +0200 Subject: [PATCH] Release v0.19.0 Signed-off-by: Stefan Prodan --- CHANGELOG.md | 21 +++++++++++++++++++++ DEVELOPMENT.md | 2 +- config/manager/kustomization.yaml | 2 +- go.mod | 2 +- 4 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 773dd11..a36787e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## 0.19.0 + +**Release date:** 2022-01-07 + +This prerelease comes with an update to the Kubernetes and controller-runtime dependencies +to align them with the Kubernetes 1.23 release. + +In addition, the controller is now built with Go 1.17. + +Improvements: +* Update Go to v1.17 + [#248](https://github.com/fluxcd/image-automation-controller/pull/248) +* Log the error when removing the working dir fails + [#287](https://github.com/fluxcd/image-automation-controller/pull/287) + +Fixes: +* Fix potentially broken support for macOS + [#278](https://github.com/fluxcd/image-automation-controller/pull/278) +* Move Path check into switch case + [#284](https://github.com/fluxcd/image-automation-controller/pull/284) + ## 0.18.0 **Release date:** 2021-11-23 diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 4cd6e51..ff42ffa 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -75,7 +75,7 @@ followed using any other package manager, e.g. `apt`. ## How to run the test suite Prerequisites: -* go >= 1.16 +* go >= 1.17 * kubebuilder >= 2.3 * kustomize >= 3.1 diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index 22a2d8e..8a8cb13 100644 --- a/config/manager/kustomization.yaml +++ b/config/manager/kustomization.yaml @@ -5,4 +5,4 @@ resources: images: - name: fluxcd/image-automation-controller newName: fluxcd/image-automation-controller - newTag: v0.18.0 + newTag: v0.19.0 diff --git a/go.mod b/go.mod index df4a66e..54aedfe 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ require ( github.com/Masterminds/sprig/v3 v3.2.2 github.com/ProtonMail/go-crypto v0.0.0-20210428141323-04723f9f07d7 github.com/cyphar/filepath-securejoin v0.2.2 - github.com/fluxcd/image-automation-controller/api v0.18.0 + github.com/fluxcd/image-automation-controller/api v0.19.0 // If you bump this, change REFLECTOR_VER in the Makefile to match github.com/fluxcd/image-reflector-controller/api v0.15.0 github.com/fluxcd/pkg/apis/meta v0.10.2