Release v0.3.0
Signed-off-by: Hidde Beydals <hello@hidde.co>
This commit is contained in:
parent
30d3ef7892
commit
cd7c843a6d
22
CHANGELOG.md
22
CHANGELOG.md
|
@ -1,5 +1,27 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.3.0
|
||||||
|
|
||||||
|
**Release date:** 2021-01-15
|
||||||
|
|
||||||
|
This prerelease adds support for the `libgit2` implementation,
|
||||||
|
making it possible to push changes to Git servers that require
|
||||||
|
support for the v2 protocol, like Azure DevOps.
|
||||||
|
|
||||||
|
The container image for ARMv7 and ARM64 that used to be published
|
||||||
|
separately as `image-automation-controller:*-arm64` has been merged
|
||||||
|
with the AMD64 image.
|
||||||
|
|
||||||
|
Improvements:
|
||||||
|
* Update to kyaml 0.10.5
|
||||||
|
[#87](https://github.com/fluxcd/kustomize-controller/pull/87)
|
||||||
|
* Upgrade controller-runtime to v0.7.0
|
||||||
|
[#84](https://github.com/fluxcd/kustomize-controller/pull/84)
|
||||||
|
* Libgit2 support
|
||||||
|
[#82](https://github.com/fluxcd/kustomize-controller/pull/82)
|
||||||
|
* Publish as single multi-arch Docker image
|
||||||
|
[#80](https://github.com/fluxcd/kustomize-controller/pull/80)
|
||||||
|
|
||||||
## 0.2.0
|
## 0.2.0
|
||||||
|
|
||||||
**Release date:** 2021-01-06
|
**Release date:** 2021-01-06
|
||||||
|
|
|
@ -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.2.0
|
newTag: v0.3.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.2.0
|
github.com/fluxcd/image-automation-controller/api v0.3.0
|
||||||
github.com/fluxcd/image-reflector-controller/api v0.2.0
|
github.com/fluxcd/image-reflector-controller/api v0.2.0
|
||||||
github.com/fluxcd/pkg/apis/meta v0.5.0
|
github.com/fluxcd/pkg/apis/meta v0.5.0
|
||||||
github.com/fluxcd/pkg/gittestserver v0.1.0
|
github.com/fluxcd/pkg/gittestserver v0.1.0
|
||||||
|
|
Loading…
Reference in New Issue