Release v0.26.3
Signed-off-by: Paulo Gomes <paulo.gomes@weave.works>
This commit is contained in:
parent
1c661ad7c0
commit
f3a08b1cd6
21
CHANGELOG.md
21
CHANGELOG.md
|
|
@ -2,6 +2,27 @@
|
||||||
|
|
||||||
All notable changes to this project are documented in this file.
|
All notable changes to this project are documented in this file.
|
||||||
|
|
||||||
|
## 0.26.3
|
||||||
|
|
||||||
|
**Release date:** 2022-07-13
|
||||||
|
|
||||||
|
This prerelease adds a retry mechanism for "not found" errors when
|
||||||
|
downloading artifacts and recovers from SOPS store panics.
|
||||||
|
Some dependencies have also been updated to patch upstream CVEs.
|
||||||
|
|
||||||
|
Fixes:
|
||||||
|
- decryptor: recover from SOPS store panic
|
||||||
|
[#691](https://github.com/fluxcd/kustomize-controller/pull/691)
|
||||||
|
|
||||||
|
Improvements:
|
||||||
|
- Retry downloading artifacts on not found errors
|
||||||
|
[#689](https://github.com/fluxcd/kustomize-controller/pull/689)
|
||||||
|
- Update dependencies
|
||||||
|
[#692](https://github.com/fluxcd/kustomize-controller/pull/692)
|
||||||
|
[#696](https://github.com/fluxcd/kustomize-controller/pull/696)
|
||||||
|
- build: Upgrade to Go 1.18
|
||||||
|
[#694](https://github.com/fluxcd/kustomize-controller/pull/694)
|
||||||
|
|
||||||
## 0.26.2
|
## 0.26.2
|
||||||
|
|
||||||
**Release date:** 2022-06-29
|
**Release date:** 2022-06-29
|
||||||
|
|
|
||||||
|
|
@ -5,4 +5,4 @@ resources:
|
||||||
images:
|
images:
|
||||||
- name: fluxcd/kustomize-controller
|
- name: fluxcd/kustomize-controller
|
||||||
newName: fluxcd/kustomize-controller
|
newName: fluxcd/kustomize-controller
|
||||||
newTag: v0.26.2
|
newTag: v0.26.3
|
||||||
|
|
|
||||||
2
go.mod
2
go.mod
|
|
@ -19,7 +19,7 @@ require (
|
||||||
github.com/cyphar/filepath-securejoin v0.2.3
|
github.com/cyphar/filepath-securejoin v0.2.3
|
||||||
github.com/dimchansky/utfbom v1.1.1
|
github.com/dimchansky/utfbom v1.1.1
|
||||||
github.com/drone/envsubst v1.0.3
|
github.com/drone/envsubst v1.0.3
|
||||||
github.com/fluxcd/kustomize-controller/api v0.26.2
|
github.com/fluxcd/kustomize-controller/api v0.26.3
|
||||||
github.com/fluxcd/pkg/apis/acl v0.0.3
|
github.com/fluxcd/pkg/apis/acl v0.0.3
|
||||||
github.com/fluxcd/pkg/apis/kustomize v0.4.2
|
github.com/fluxcd/pkg/apis/kustomize v0.4.2
|
||||||
github.com/fluxcd/pkg/apis/meta v0.14.2
|
github.com/fluxcd/pkg/apis/meta v0.14.2
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue