Skip to content

Commit 6879038

Browse files
authored
Merge pull request #1375 from fluxcd/release-v1.29.0
Release v1.29.0
2 parents 7994989 + cc2f945 commit 6879038

File tree

6 files changed

+48
-6
lines changed

6 files changed

+48
-6
lines changed

CHANGELOG.md

+42
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,48 @@
22

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

5+
## 1.29.0
6+
7+
**Release date:** 2023-02-21
8+
9+
This release comes with support for template variables for analysis metrics.
10+
A canary analysis metric can reference a set of custom variables with
11+
`.spec.analysis.metrics[].templateVariables`. For more info see the [docs](https://fluxcd.io/flagger/usage/metrics/#custom-metrics).
12+
Furthemore, a bug related to Canary releases with session affinity has been
13+
fixed.
14+
15+
#### Improvements
16+
17+
- update dependencies
18+
[#1374](https://github.com/fluxcd/flagger/pull/1374)
19+
- build(deps): bump golang.org/x/net from 0.4.0 to 0.7.0
20+
[#1373](https://github.com/fluxcd/flagger/pull/1373)
21+
- build(deps): bump fossa-contrib/fossa-action from 1 to 2
22+
[#1372](https://github.com/fluxcd/flagger/pull/1372)
23+
- Allow custom affinities for flagger deployment in helm chart
24+
[#1371](https://github.com/fluxcd/flagger/pull/1371)
25+
- Add namespace to namespaced resources in helm chart
26+
[#1370](https://github.com/fluxcd/flagger/pull/1370)
27+
- build(deps): bump actions/cache from 3.2.4 to 3.2.5
28+
[#1366](https://github.com/fluxcd/flagger/pull/1366)
29+
- build(deps): bump actions/cache from 3.2.3 to 3.2.4
30+
[#1362](https://github.com/fluxcd/flagger/pull/1362)
31+
- build(deps): bump docker/build-push-action from 3 to 4
32+
[#1361](https://github.com/fluxcd/flagger/pull/1361)
33+
- modify release workflow to publish rc images
34+
[#1359](https://github.com/fluxcd/flagger/pull/1359)
35+
- build: Enable SBOM and SLSA Provenance
36+
[#1356](https://github.com/fluxcd/flagger/pull/1356)
37+
- Add support for custom variables in metric templates
38+
[#1355](https://github.com/fluxcd/flagger/pull/1355)
39+
- docs(readme.md): add additional tutorial
40+
[#1346](https://github.com/fluxcd/flagger/pull/1346)
41+
42+
#### Fixes
43+
44+
- use regex to match against headers in istio
45+
[#1364](https://github.com/fluxcd/flagger/pull/1364)
46+
547
## 1.28.0
648

749
**Release date:** 2023-01-26

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.28.0
25+
image: ghcr.io/fluxcd/flagger:1.29.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.28.0
4-
appVersion: 1.28.0
3+
version: 1.29.0
4+
appVersion: 1.29.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
@@ -2,7 +2,7 @@
22

33
image:
44
repository: ghcr.io/fluxcd/flagger
5-
tag: 1.28.0
5+
tag: 1.29.0
66
pullPolicy: IfNotPresent
77
pullSecret:
88

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.28.0
12+
newTag: 1.29.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.28.0"
19+
var VERSION = "1.29.0"
2020
var REVISION = "unknown"

0 commit comments

Comments
 (0)