Skip to content

Commit

Permalink
Merge pull request #736 from fluxcd/release-v0.29.0
Browse files Browse the repository at this point in the history
Release v0.29.0
  • Loading branch information
stefanprodan authored Sep 29, 2022
2 parents 47c5b70 + db3131d commit af6ed82
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,36 @@

All notable changes to this project are documented in this file.

## 0.29.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))+$"`
- `.spec.retryInterval` new validation pattern is `"^([0-9]+(\\.[0-9]+)?(ms|s|m|h))+$"`
- `.spec.timeout` new validation pattern is `"^([0-9]+(\\.[0-9]+)?(ms|s|m))+$"`

Improvements:
- api: add custom validation for v1.Duration types
[#731](https://github.com/fluxcd/kustomize-controller/pull/731)
- Build with Go 1.19
[#733](https://github.com/fluxcd/kustomize-controller/pull/733)
- Update dependencies
[#735](https://github.com/fluxcd/kustomize-controller/pull/735)

Fixes:
- Fix health checking for global objects
[#730](https://github.com/fluxcd/kustomize-controller/pull/730)

## 0.28.0

**Release date:** 2022-09-12
Expand Down
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ resources:
images:
- name: fluxcd/kustomize-controller
newName: fluxcd/kustomize-controller
newTag: v0.28.0
newTag: v0.29.0
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ require (
github.com/cyphar/filepath-securejoin v0.2.3
github.com/dimchansky/utfbom v1.1.1
github.com/drone/envsubst v1.0.3
github.com/fluxcd/kustomize-controller/api v0.28.0
github.com/fluxcd/kustomize-controller/api v0.29.0
github.com/fluxcd/pkg/apis/acl v0.1.0
github.com/fluxcd/pkg/apis/kustomize v0.6.0
github.com/fluxcd/pkg/apis/meta v0.16.0
Expand Down

0 comments on commit af6ed82

Please sign in to comment.