Release v0.26.0

Signed-off-by: Paulo Gomes <paulo.gomes@weave.works>
This commit is contained in:
Paulo Gomes 2022-09-29 17:05:45 +01:00
parent adaa4d87f8
commit dee4b22ce1
No known key found for this signature in database
GPG Key ID: 9995233870E99BEE
3 changed files with 31 additions and 2 deletions

View File

@ -1,5 +1,34 @@
# Changelog
## 0.26.0
**Release date:** 2022-09-29
This prerelease comes with strict validation rules for API fields which define a
(time) duration. Effectively, this means values without a time unit (e.g. `ms`,
`s`, `m`, `h`) will now be rejected by the API server. To stimulate sane
configurations, the units `ns`, `us` and `µs` can no longer be configured, nor
can `h` be set for fields defining a timeout value.
In addition, the controller dependencies have been updated
to Kubernetes controller-runtime v0.13.
:warning: **Breaking changes:**
- `.spec.interval` new validation pattern is `"^([0-9]+(\\.[0-9]+)?(ms|s|m|h))+$"`
Improvements:
* api: add custom validation for v1.Duration types
[#439](https://github.com/fluxcd/image-automation-controller/pull/439)
* Update dependencies
[#442](https://github.com/fluxcd/image-automation-controller/pull/442)
[#444](https://github.com/fluxcd/image-automation-controller/pull/444)
* Build with Go 1.19
[#440](https://github.com/fluxcd/image-automation-controller/pull/440)
* build: Bump CI to macos-11
[#441](https://github.com/fluxcd/image-automation-controller/pull/441)
* Fix build by enabling Cosign experimental
[#438](https://github.com/fluxcd/image-automation-controller/pull/438)
## 0.25.0
**Release date:** 2022-09-12

View File

@ -5,4 +5,4 @@ resources:
images:
- name: fluxcd/image-automation-controller
newName: fluxcd/image-automation-controller
newTag: v0.25.0
newTag: v0.26.0

2
go.mod
View File

@ -17,7 +17,7 @@ require (
github.com/Masterminds/sprig/v3 v3.2.2
github.com/ProtonMail/go-crypto v0.0.0-20220824120805-4b6e5c587895
github.com/cyphar/filepath-securejoin v0.2.3
github.com/fluxcd/image-automation-controller/api v0.25.0
github.com/fluxcd/image-automation-controller/api v0.26.0
github.com/fluxcd/image-reflector-controller/api v0.22.0
github.com/fluxcd/pkg/apis/acl v0.1.0
github.com/fluxcd/pkg/apis/meta v0.16.0