Skip to content

Commit b28f23a

Browse files
authored
Merge pull request #185 from fluxcd/release-v0.12.0
Release v0.12.0
2 parents b0da308 + 8fbdc43 commit b28f23a

File tree

3 files changed

+43
-2
lines changed

3 files changed

+43
-2
lines changed

CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,46 @@
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

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ resources:
55
images:
66
- name: fluxcd/image-automation-controller
77
newName: fluxcd/image-automation-controller
8-
newTag: v0.11.0
8+
newTag: v0.12.0

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ replace github.com/fluxcd/image-automation-controller/api => ./api
77
require (
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

0 commit comments

Comments
 (0)