Skip to content

Commit c2b4287

Browse files
authored
Merge pull request #1313 from aryan9600/release-v1.25.0
Release v1.25.0
2 parents 9c815f2 + 5b61f15 commit c2b4287

File tree

6 files changed

+28
-6
lines changed

6 files changed

+28
-6
lines changed

CHANGELOG.md

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

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

5+
## 1.25.0
6+
7+
**Release date:** 2022-11-16
8+
9+
This release introduces a new deployment strategy combining Canary releases with session affinity
10+
for Istio.
11+
12+
Furthermore, it contains a regression fix regarding metadata in alerts introduced in
13+
[#1275](https://github.com/fluxcd/flagger/pull/1275)
14+
15+
#### Improvements:
16+
17+
- Add support for session affinity during weighted routing with Istio
18+
[#1280](https://github.com/fluxcd/flagger/pull/1280)
19+
20+
#### Fixes:
21+
22+
- Fix cluster name inclusion in alerts metadata
23+
[#1306](https://github.com/fluxcd/flagger/pull/1306)
24+
- fix(faq): Update FAQ about zero downtime with correct values
25+
[#1302](https://github.com/fluxcd/flagger/pull/1302)
26+
527
## 1.24.1
628

729
**Release date:** 2022-10-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.24.1
25+
image: ghcr.io/fluxcd/flagger:1.25.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.24.1
4-
appVersion: 1.24.1
3+
version: 1.25.0
4+
appVersion: 1.25.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.24.1
5+
tag: 1.25.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.24.1
12+
newTag: 1.25.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.24.1"
19+
var VERSION = "1.25.0"
2020
var REVISION = "unknown"

0 commit comments

Comments
 (0)