File tree Expand file tree Collapse file tree 10 files changed +39
-11
lines changed Expand file tree Collapse file tree 10 files changed +39
-11
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project are documented in this file.
4
4
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
+
5
33
## 1.22.2
6
34
7
35
** Release date:** 2022-08-29
Original file line number Diff line number Diff line change 22
22
serviceAccountName : flagger
23
23
containers :
24
24
- name : flagger
25
- image : ghcr.io/fluxcd/flagger:1.22.2
25
+ image : ghcr.io/fluxcd/flagger:1.23.0
26
26
imagePullPolicy : IfNotPresent
27
27
ports :
28
28
- name : http
Original file line number Diff line number Diff line change 1
1
apiVersion : v1
2
2
name : flagger
3
- version : 1.22.2
4
- appVersion : 1.22.2
3
+ version : 1.23.0
4
+ appVersion : 1.23.0
5
5
kubeVersion : " >=1.19.0-0"
6
6
engine : gotpl
7
7
description : Flagger is a progressive delivery operator for Kubernetes
Original file line number Diff line number Diff line change 2
2
3
3
image :
4
4
repository : ghcr.io/fluxcd/flagger
5
- tag : 1.22.2
5
+ tag : 1.23.0
6
6
pullPolicy : IfNotPresent
7
7
pullSecret :
8
8
Original file line number Diff line number Diff line change 1
1
apiVersion : v1
2
2
name : loadtester
3
- version : 0.24 .0
4
- appVersion : 0.24 .0
3
+ version : 0.25 .0
4
+ appVersion : 0.25 .0
5
5
kubeVersion : " >=1.19.0-0"
6
6
engine : gotpl
7
7
description : Flagger's load testing services based on rakyll/hey and bojand/ghz that generates traffic during canary analysis when configured as a webhook.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ replicaCount: 1
2
2
3
3
image :
4
4
repository : ghcr.io/fluxcd/flagger-loadtester
5
- tag : 0.24 .0
5
+ tag : 0.25 .0
6
6
pullPolicy : IfNotPresent
7
7
pullSecret :
8
8
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ import (
28
28
"go.uber.org/zap"
29
29
)
30
30
31
- var VERSION = "0.24 .0"
31
+ var VERSION = "0.25 .0"
32
32
var (
33
33
logLevel string
34
34
port string
Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ resources:
9
9
images :
10
10
- name : ghcr.io/fluxcd/flagger
11
11
newName : ghcr.io/fluxcd/flagger
12
- newTag : 1.22.2
12
+ newTag : 1.23.0
Original file line number Diff line number Diff line change 19
19
spec :
20
20
containers :
21
21
- name : loadtester
22
- image : ghcr.io/fluxcd/flagger-loadtester:0.24 .0
22
+ image : ghcr.io/fluxcd/flagger-loadtester:0.25 .0
23
23
imagePullPolicy : IfNotPresent
24
24
ports :
25
25
- name : http
Original file line number Diff line number Diff line change @@ -16,5 +16,5 @@ limitations under the License.
16
16
17
17
package version
18
18
19
- var VERSION = "1.22.2 "
19
+ var VERSION = "1.23.0 "
20
20
var REVISION = "unknown"
You can’t perform that action at this time.
0 commit comments