Release v0.4.0
Signed-off-by: Hidde Beydals <hello@hidde.co>
This commit is contained in:
parent
7d44d6f169
commit
7ffd8f1577
24
CHANGELOG.md
24
CHANGELOG.md
|
@ -1,5 +1,29 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.4.0
|
||||||
|
|
||||||
|
**Release date:** 2021-01-22
|
||||||
|
|
||||||
|
This prerelease reforms the update strategy types API in a backwards
|
||||||
|
compatible manner.
|
||||||
|
|
||||||
|
In addition, it comes with two new argument flags introduced to support
|
||||||
|
configuring the QPS (`--kube-api-qps`) and burst (`--kube-api-burst`)
|
||||||
|
while communicating with the Kubernetes API server.
|
||||||
|
|
||||||
|
The `LocalObjectReference` from the Kubernetes core has been replaced
|
||||||
|
with our own, making the `name` a required field. The impact of this
|
||||||
|
should be limited to direct API consumers only, as the field was
|
||||||
|
already required by controller logic.
|
||||||
|
|
||||||
|
Improvements:
|
||||||
|
* Update fluxcd/pkg/runtime to v0.8.0
|
||||||
|
[#98](https://github.com/fluxcd/image-automation-controller/pull/98)
|
||||||
|
* Reform update strategy types
|
||||||
|
[#95](https://github.com/fluxcd/kustomize-controller/pull/95)
|
||||||
|
* Add API reference for ImageUpdateAutomation
|
||||||
|
[#94](https://github.com/fluxcd/image-automation-controller/pull/94)
|
||||||
|
|
||||||
## 0.3.1
|
## 0.3.1
|
||||||
|
|
||||||
**Release date:** 2021-01-18
|
**Release date:** 2021-01-18
|
||||||
|
|
|
@ -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.3.1
|
newTag: v0.4.0
|
||||||
|
|
2
go.mod
2
go.mod
|
@ -8,7 +8,7 @@ replace github.com/fluxcd/image-automation-controller/api => ./api
|
||||||
replace gopkg.in/yaml.v3 => gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
|
replace gopkg.in/yaml.v3 => gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/fluxcd/image-automation-controller/api v0.3.1
|
github.com/fluxcd/image-automation-controller/api v0.4.0
|
||||||
github.com/fluxcd/image-reflector-controller/api v0.4.0
|
github.com/fluxcd/image-reflector-controller/api v0.4.0
|
||||||
github.com/fluxcd/pkg/apis/meta v0.7.0
|
github.com/fluxcd/pkg/apis/meta v0.7.0
|
||||||
github.com/fluxcd/pkg/gittestserver v0.1.0
|
github.com/fluxcd/pkg/gittestserver v0.1.0
|
||||||
|
|
Loading…
Reference in New Issue