Skip to content

Commit 0fc4d0f

Browse files
authored
Merge pull request #540 from fluxcd/release-v0.25.0
Release v0.25.0
2 parents 3bb9979 + f80eab1 commit 0fc4d0f

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# Changelog
22

3+
## 0.25.0
4+
5+
**Release date:** 2022-09-29
6+
7+
This prerelease comes with strict validation rules for API fields which define a
8+
(time) duration. Effectively, this means values without a time unit (e.g. `ms`,
9+
`s`, `m`, `h`) will now be rejected by the API server. To stimulate sane
10+
configurations, the units `ns`, `us` and `µs` can no longer be configured, nor
11+
can `h` be set for fields defining a timeout value.
12+
13+
In addition, the controller dependencies have been updated
14+
to Kubernetes controller-runtime v0.13.
15+
16+
:warning: **Breaking changes:**
17+
- `.spec.interval` new validation pattern is `"^([0-9]+(\\.[0-9]+)?(ms|s|m|h))+$"`
18+
- `.spec.timeout` new validation pattern is `"^([0-9]+(\\.[0-9]+)?(ms|s|m))+$"`
19+
20+
Improvements:
21+
- api: add custom validation for v1.Duration types
22+
[#533](https://github.com/fluxcd/helm-controller/pull/533)
23+
- Build with Go 1.19
24+
[#537](https://github.com/fluxcd/helm-controller/pull/537)
25+
- Update dependencies
26+
[#538](https://github.com/fluxcd/helm-controller/pull/538)
27+
328
## 0.24.0
429

530
**Release date:** 2022-09-12

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/helm-controller
77
newName: fluxcd/helm-controller
8-
newTag: v0.24.0
8+
newTag: v0.25.0

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.18
55
replace github.com/fluxcd/helm-controller/api => ./api
66

77
require (
8-
github.com/fluxcd/helm-controller/api v0.24.0
8+
github.com/fluxcd/helm-controller/api v0.25.0
99
github.com/fluxcd/pkg/apis/acl v0.1.0
1010
github.com/fluxcd/pkg/apis/kustomize v0.6.0
1111
github.com/fluxcd/pkg/apis/meta v0.16.0

0 commit comments

Comments
 (0)