Skip to content

Commit 9000136

Browse files
authored
Merge pull request #1749 from fluxcd/release-1.40.0
Release v1.40.0
2 parents 642ef6b + 14543cc commit 9000136

File tree

6 files changed

+30
-7
lines changed

6 files changed

+30
-7
lines changed

CHANGELOG.md

+24-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@
22

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

5+
## 1.40.0
6+
7+
**Release date:** 2024-12-17
8+
9+
This release comes with support for Splunk Observability (formerly SignalFx) as a metrics provider.
10+
For more information on how to write `MetricTemplates` for Splunk, please see the
11+
[Splunk metrics tutorial](https://docs.flagger.app/usage/metrics#s#splunk).
12+
13+
Starting with this version, Flagger is compatible with the
14+
[AWS Gateway API Controller](https://www.gateway-api-controller.eks.aws.dev/latest/).
15+
16+
Both Flagger and the load tester Go dependencies have been updated to fix various CVEs.
17+
18+
#### Improvements
19+
- Add Splunk as a metrics provider
20+
[#1733](https://github.com/fluxcd/flagger/pull/1733)
21+
- Preserve HTTPRoute annotations injected by AWS Gateway API
22+
[#1746](https://github.com/fluxcd/flagger/pull/1746)
23+
- Automate `zz_generated.deepcopy.go` updates with make codegen
24+
[#1735](https://github.com/fluxcd/flagger/pull/1735)
25+
- Update dependencies
26+
[#1744](https://github.com/fluxcd/flagger/pull/1744)
27+
528
## 1.39.0
629

730
**Release date:** 2024-11-26
@@ -503,7 +526,7 @@ routed to the canary workload pods.
503526

504527
**Release date:** 2022-12-15
505528

506-
This release comes with support for Apachae APISIX. For more details see the
529+
This release comes with support for Apache APISIX. For more details see the
507530
[tutorial](https://fluxcd.io/flagger/tutorials/apisix-progressive-delivery).
508531

509532
#### Improvements

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.39.0
25+
image: ghcr.io/fluxcd/flagger:1.40.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.39.0
4-
appVersion: 1.39.0
3+
version: 1.40.0
4+
appVersion: 1.40.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.39.0
8+
tag: 1.40.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.39.0
12+
newTag: 1.40.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.39.0"
19+
var VERSION = "1.40.0"
2020
var REVISION = "unknown"

0 commit comments

Comments
 (0)