Skip to content

Commit f93708e

Browse files
authored
Merge pull request #1244 from aryan9600/release-v1.22.1
Release v1.22.1
2 parents 1a4d8b9 + 5285b76 commit f93708e

File tree

6 files changed

+29
-6
lines changed

6 files changed

+29
-6
lines changed

CHANGELOG.md

+23
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.22.1
6+
7+
**Release date:** 2022-08-01
8+
9+
This minor release fixes a bug related to the use of HPA v2beta2 and updates
10+
the KEDA ScaledObject API to include `MetricType` for `ScaleTriggers`.
11+
12+
Furthermore, the project has been updated to use Go 1.18 and Alpine 3.16.
13+
14+
#### Fixes:
15+
16+
- Update KEDA ScaledObject API to include MetricType for Triggers
17+
[#1241](https://github.com/fluxcd/flagger/pull/1241)
18+
- Fix fallback logic for HPAv2 to v2beta2
19+
[#1242](https://github.com/fluxcd/flagger/pull/1242)
20+
21+
#### Improvements:
22+
- Update Go to 1.18 and Alpine to 3.16
23+
[#1243](https://github.com/fluxcd/flagger/pull/1243)
24+
- Clarify HPA API requirement
25+
[#1239](https://github.com/fluxcd/flagger/pull/1239)
26+
- Update README
27+
[#1233](https://github.com/fluxcd/flagger/pull/1233)
528

629
## 1.22.0
730

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

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

0 commit comments

Comments
 (0)