Release v0.19.0

Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
This commit is contained in:
Stefan Prodan 2022-01-07 18:26:31 +02:00
parent 7991d734da
commit fe703fc521
No known key found for this signature in database
GPG Key ID: 3299AEB0E4085BAF
4 changed files with 24 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -5,4 +5,4 @@ resources:
images:
- name: fluxcd/image-automation-controller
newName: fluxcd/image-automation-controller
newTag: v0.18.0
newTag: v0.19.0

2
go.mod
View File

@ -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