Merge pull request #155 from fluxcd/release-0.9.0
This commit is contained in:
commit
a5958f289d
17
CHANGELOG.md
17
CHANGELOG.md
|
|
@ -1,5 +1,22 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.9.0
|
||||||
|
|
||||||
|
**Release date:** 2021-04-22
|
||||||
|
|
||||||
|
This prerelease deprecates the `v1alpha1` API declarations in favor
|
||||||
|
of the new `v1alpha2` API. The steps required to rewrite your
|
||||||
|
`v1alpha1` objects to `v1alpha2` [have been documented in the `v1alpha2`
|
||||||
|
spec](https://github.com/fluxcd/image-automation-controller/blob/api/v0.9.0/docs/spec/v1alpha2/imageupdateautomations.md#example-of-rewriting-a-v1alpha1-object-to-v1alpha2).
|
||||||
|
|
||||||
|
Improvements:
|
||||||
|
* Add v1alpha2 API version
|
||||||
|
[#139](https://github.com/fluxcd/image-automation-controller/pull/139)
|
||||||
|
* Move to ImagePolicy v1alpha2
|
||||||
|
[#153](https://github.com/fluxcd/image-automation-controller/pull/153)
|
||||||
|
* Update source-controller/api to v0.12.0
|
||||||
|
[#154](https://github.com/fluxcd/image-automation-controller/pull/154)
|
||||||
|
|
||||||
## 0.8.0
|
## 0.8.0
|
||||||
|
|
||||||
**Release date:** 2021-04-06
|
**Release date:** 2021-04-06
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,9 @@
|
||||||
# Image automation controller
|
# Image automation controller
|
||||||
|
|
||||||
[](https://bestpractices.coreinfrastructure.org/projects/4789)
|
[](https://bestpractices.coreinfrastructure.org/projects/4789)
|
||||||
|
[](https://goreportcard.com/report/github.com/fluxcd/image-automation-controller)
|
||||||
|
[](https://github.com/fluxcd/image-automation-controller/blob/main/LICENSE)
|
||||||
|
[](https://github.com/fluxcd/image-automation-controller/releases)
|
||||||
|
|
||||||
This controller automates updates to YAML when new container images
|
This controller automates updates to YAML when new container images
|
||||||
are available.
|
are available.
|
||||||
|
|
|
||||||
|
|
@ -5,4 +5,4 @@ resources:
|
||||||
images:
|
images:
|
||||||
- name: fluxcd/image-automation-controller
|
- name: fluxcd/image-automation-controller
|
||||||
newName: fluxcd/image-automation-controller
|
newName: fluxcd/image-automation-controller
|
||||||
newTag: v0.8.0
|
newTag: v0.9.0
|
||||||
|
|
|
||||||
2
go.mod
2
go.mod
|
|
@ -6,7 +6,7 @@ replace github.com/fluxcd/image-automation-controller/api => ./api
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/cyphar/filepath-securejoin v0.2.2
|
github.com/cyphar/filepath-securejoin v0.2.2
|
||||||
github.com/fluxcd/image-automation-controller/api v0.8.0
|
github.com/fluxcd/image-automation-controller/api v0.9.0
|
||||||
// If you bump this, change REFLECTOR_VER in the Makefile to match
|
// If you bump this, change REFLECTOR_VER in the Makefile to match
|
||||||
github.com/fluxcd/image-reflector-controller/api v0.9.0
|
github.com/fluxcd/image-reflector-controller/api v0.9.0
|
||||||
github.com/fluxcd/pkg/apis/meta v0.9.0
|
github.com/fluxcd/pkg/apis/meta v0.9.0
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue