Skip to content

Commit ebf43ef

Browse files
authored
Merge pull request #1728 from fluxcd/release-v1.39.0
Release v1.39.0
2 parents c6b5b39 + 7754cdb commit ebf43ef

File tree

6 files changed

+38
-6
lines changed

6 files changed

+38
-6
lines changed

CHANGELOG.md

+32
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,38 @@
22

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

5+
## 1.39.0
6+
7+
**Release date:** 2024-07-30
8+
9+
This release comes with fixes and improvements. There is a new
10+
`.spec.analysis.webhooks[].disableTLS` field which disables TLS verification
11+
for that webhook request.
12+
A bug in the Gateway API provider was fixed which could lead to unecessary restarts.
13+
14+
This release is built with Go 1.23. Lastly, all Go dependencies, Alpine and
15+
Kubernetes libraries were updated.
16+
17+
#### Improvements
18+
- Add validation for `primaryScalerReplicas` field in the CRD
19+
[#1702](https://github.com/fluxcd/flagger/pull/1702)
20+
- feat: add `disableTLS` option for webhooks request
21+
[#1709](https://github.com/fluxcd/flagger/pull/1709)
22+
- Update dependencies to Kubernetes v1.31.3
23+
[#1723](https://github.com/fluxcd/flagger/pull/1723)
24+
- Update generated client for Kubernetes 1.31
25+
[#1725](https://github.com/fluxcd/flagger/pull/1725)
26+
- Build with Go 1.23
27+
[#1726](https://github.com/fluxcd/flagger/pull/1726)
28+
29+
#### Fixes
30+
- Gateway API: Sort header filters to avoid canary restarts
31+
[#1713](https://github.com/fluxcd/flagger/pull/1713)
32+
- fix: fix codegen script and update generated code
33+
[#1724](https://github.com/fluxcd/flagger/pull/1724)
34+
- fix(helm): podinfo fails to create the hpa object
35+
[#1721](https://github.com/fluxcd/flagger/pull/1721)
36+
537
## 1.38.0
638

739
**Release date:** 2024-07-30

artifacts/flagger/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ spec:
2222
serviceAccountName: flagger
2323
containers:
2424
- name: flagger
25-
image: ghcr.io/fluxcd/flagger:1.38.0
25+
image: ghcr.io/fluxcd/flagger:1.39.0
2626
imagePullPolicy: IfNotPresent
2727
ports:
2828
- name: http

charts/flagger/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
name: flagger
3-
version: 1.38.0
4-
appVersion: 1.38.0
3+
version: 1.39.0
4+
appVersion: 1.39.0
55
kubeVersion: ">=1.19.0-0"
66
engine: gotpl
77
description: Flagger is a progressive delivery operator for Kubernetes

charts/flagger/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
image:
77
repository: ghcr.io/fluxcd/flagger
8-
tag: 1.38.0
8+
tag: 1.39.0
99
pullPolicy: IfNotPresent
1010
pullSecret:
1111

kustomize/base/flagger/kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ resources:
99
images:
1010
- name: ghcr.io/fluxcd/flagger
1111
newName: ghcr.io/fluxcd/flagger
12-
newTag: 1.38.0
12+
newTag: 1.39.0

pkg/version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ limitations under the License.
1616

1717
package version
1818

19-
var VERSION = "1.38.0"
19+
var VERSION = "1.39.0"
2020
var REVISION = "unknown"

0 commit comments

Comments
 (0)