File tree Expand file tree Collapse file tree 3 files changed +43
-2
lines changed Expand file tree Collapse file tree 3 files changed +43
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.12.0
4+
5+ ** Release date:** 2021-06-10
6+
7+ This prerelease comes with an update to the Kubernetes and controller-runtime
8+ dependencies to align them with the Kubernetes 1.21 release, and an update to
9+ the YAML packages (used by the controller to patch Kubernetes manifests) to
10+ fix long-standing issues like panics on YAML with non-ASCII characters.
11+
12+ This update to ` gopkg.in/yaml.v3 ` means that the indentation style changed:
13+
14+ From:
15+
16+ ``` yaml
17+ spec :
18+ containers :
19+ - name : one
20+ image : image1:v1.0.0 # {"$imagepolicy": "automation-ns:policy1"}
21+ - name : two
22+ image : image2:v1.0.0 # {"$imagepolicy": "automation-ns:policy2"}
23+ ` ` `
24+
25+ To:
26+
27+ ` ` ` yaml
28+ spec :
29+ containers :
30+ - name : one
31+ image : image1:v1.0.0 # {"$imagepolicy": "automation-ns:policy1"}
32+ - name : two
33+ image : image2:v1.0.0 # {"$imagepolicy": "automation-ns:policy2"}
34+ ` ` `
35+
36+ Improvements:
37+ * Update go-yaml with changes to indentation style
38+ [#182](https://github.com/fluxcd/image-automation-controller/pull/182)
39+ * Add nightly builds workflow and allow RC releases
40+ [#184](https://github.com/fluxcd/image-automation-controller/pull/184)
41+ * Update dependencies
42+ [#183](https://github.com/fluxcd/image-automation-controller/pull/183)
43+
344## 0.11.0
445
546**Release date:** 2021-06-02
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ resources:
55images :
66- name : fluxcd/image-automation-controller
77 newName : fluxcd/image-automation-controller
8- newTag : v0.11 .0
8+ newTag : v0.12 .0
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ replace github.com/fluxcd/image-automation-controller/api => ./api
77require (
88 github.com/ProtonMail/go-crypto v0.0.0-20210428141323-04723f9f07d7
99 github.com/cyphar/filepath-securejoin v0.2.2
10- github.com/fluxcd/image-automation-controller/api v0.11 .0
10+ github.com/fluxcd/image-automation-controller/api v0.12 .0
1111 // If you bump this, change REFLECTOR_VER in the Makefile to match
1212 github.com/fluxcd/image-reflector-controller/api v0.10.0
1313 github.com/fluxcd/pkg/apis/meta v0.10.0
You can’t perform that action at this time.
0 commit comments