Skip to content

Commit 915c200

Browse files
authored
Merge pull request #1262 from fluxcd/release-v1.22.2
Release v1.22.2
2 parents 5123cba + a4941bd commit 915c200

File tree

6 files changed

+42
-6
lines changed

6 files changed

+42
-6
lines changed

CHANGELOG.md

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

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

5+
## 1.22.2
6+
7+
**Release date:** 2022-08-29
8+
9+
This release fixes a bug related scaling up the canary deployment when a
10+
reference to an autoscaler is specified.
11+
12+
Furthermore, it contains updates to packages used by the project, including
13+
updates to Helm and grpc-health-probe used in the loadtester.
14+
15+
CVEs fixed (originating from dependencies):
16+
* CVE-2022-37434
17+
* CVE-2022-27191
18+
* CVE-2021-33194
19+
* CVE-2021-44716
20+
* CVE-2022-29526
21+
* CVE-2022-1996
22+
23+
#### Fixes:
24+
25+
- If HPA is set, it uses HPA minReplicas when scaling up the canary
26+
[#1253](https://github.com/fluxcd/flagger/pull/1253)
27+
28+
#### Improvements:
29+
30+
- Release loadtester v0.23.0
31+
[#1246](https://github.com/fluxcd/flagger/pull/1246)
32+
- Add target and script to keep crds in sync
33+
[#1254](https://github.com/fluxcd/flagger/pull/1254)
34+
- docs: add knative support to roadmap
35+
[#1258](https://github.com/fluxcd/flagger/pull/1258)
36+
- Update dependencies
37+
[#1259](https://github.com/fluxcd/flagger/pull/1259)
38+
- Release loadtester v0.24.0
39+
[#1261](https://github.com/fluxcd/flagger/pull/1261)
40+
541
## 1.22.1
642

743
**Release date:** 2022-08-01

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.22.1
25+
image: ghcr.io/fluxcd/flagger:1.22.2
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.22.1
4-
appVersion: 1.22.1
3+
version: 1.22.2
4+
appVersion: 1.22.2
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.22.1
5+
tag: 1.22.2
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.22.1
12+
newTag: 1.22.2

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.22.1"
19+
var VERSION = "1.22.2"
2020
var REVISION = "unknown"

0 commit comments

Comments
 (0)