Skip to content

Commit a4f5a98

Browse files
authored
Merge pull request #1284 from fluxcd/release-1.23.0
Release v1.23.0
2 parents 283de16 + 08d7520 commit a4f5a98

File tree

10 files changed

+39
-11
lines changed

10 files changed

+39
-11
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,34 @@
22

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

5+
## 1.23.0
6+
7+
**Release date:** 2022-10-20
8+
9+
This release comes with support for Slack bot token authentication.
10+
11+
#### Improvements:
12+
13+
- alerts: Add support for Slack bot token authentication
14+
[#1270](https://github.com/fluxcd/flagger/pull/1270)
15+
- loadtester: logCmdOutput to logger instead of stdout
16+
[#1267](https://github.com/fluxcd/flagger/pull/1267)
17+
- helm: Add app.kubernetes.io/version label to chart
18+
[#1264](https://github.com/fluxcd/flagger/pull/1264)
19+
- Update Go to 1.19
20+
[#1264](https://github.com/fluxcd/flagger/pull/1264)
21+
- Update Kubernetes packages to v1.25.3
22+
[#1283](https://github.com/fluxcd/flagger/pull/1283)
23+
- Bump Contour to v1.22 in e2e tests
24+
[#1282](https://github.com/fluxcd/flagger/pull/1282)
25+
26+
#### Fixes:
27+
28+
- gatewayapi: Fix reconciliation of nil hostnames
29+
[#1276](https://github.com/fluxcd/flagger/pull/1276)
30+
- alerts: Include cluster name in all alerts
31+
[#1275](https://github.com/fluxcd/flagger/pull/1275)
32+
533
## 1.22.2
634

735
**Release date:** 2022-08-29

artifacts/flagger/deployment.yaml

Lines changed: 1 addition & 1 deletion
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.2
25+
image: ghcr.io/fluxcd/flagger:1.23.0
2626
imagePullPolicy: IfNotPresent
2727
ports:
2828
- name: http

charts/flagger/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
name: flagger
3-
version: 1.22.2
4-
appVersion: 1.22.2
3+
version: 1.23.0
4+
appVersion: 1.23.0
55
kubeVersion: ">=1.19.0-0"
66
engine: gotpl
77
description: Flagger is a progressive delivery operator for Kubernetes

charts/flagger/values.yaml

Lines changed: 1 addition & 1 deletion
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.2
5+
tag: 1.23.0
66
pullPolicy: IfNotPresent
77
pullSecret:
88

charts/loadtester/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
name: loadtester
3-
version: 0.24.0
4-
appVersion: 0.24.0
3+
version: 0.25.0
4+
appVersion: 0.25.0
55
kubeVersion: ">=1.19.0-0"
66
engine: gotpl
77
description: Flagger's load testing services based on rakyll/hey and bojand/ghz that generates traffic during canary analysis when configured as a webhook.

charts/loadtester/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ replicaCount: 1
22

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

cmd/loadtester/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
"go.uber.org/zap"
2929
)
3030

31-
var VERSION = "0.24.0"
31+
var VERSION = "0.25.0"
3232
var (
3333
logLevel string
3434
port string

kustomize/base/flagger/kustomization.yaml

Lines changed: 1 addition & 1 deletion
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.2
12+
newTag: 1.23.0

kustomize/tester/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
spec:
2020
containers:
2121
- name: loadtester
22-
image: ghcr.io/fluxcd/flagger-loadtester:0.24.0
22+
image: ghcr.io/fluxcd/flagger-loadtester:0.25.0
2323
imagePullPolicy: IfNotPresent
2424
ports:
2525
- name: http

pkg/version/version.go

Lines changed: 1 addition & 1 deletion
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.2"
19+
var VERSION = "1.23.0"
2020
var REVISION = "unknown"

0 commit comments

Comments
 (0)