File tree 6 files changed +37
-6
lines changed
6 files changed +37
-6
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.35.0
6
+
7
+ ** Release date:** 2023-11-30
8
+
9
+ This release comes with support for Gateway API ` v1 ` . Furthermore, following the
10
+ deprecation period, support for the ` v1alpha2 ` API has been dropped.
11
+ A new field ` .spec.webhooks[].retries ` has been added to allow specifying the
12
+ number of retry attempts to make if the webhook server returns an unsuccessful
13
+ response.
14
+ Another new field ` .spec.service.trafficPolicy.loadBalancer.warmupDurationSeconds `
15
+ has been added for the corresponding field in Istio's ` DestinationRule ` API.
16
+
17
+ Lastly, two bugs related to deleting a Canary object with
18
+ ` .spec.revertOnDeletion: true ` have been fixed.
19
+
20
+ #### Improvements
21
+ - Support istio Destination Dule WarmupDurationSecs
22
+ [ #1540 ] ( https://github.com/fluxcd/flagger/pull/1540 )
23
+ - feat: Webhook retries
24
+ [ #1541 ] ( https://github.com/fluxcd/flagger/pull/1541 )
25
+ - gatewayapi: add support for ` v1 `
26
+ [ #1557 ] ( https://github.com/fluxcd/flagger/pull/1557 )
27
+ - Update Go dependencies
28
+ [ #1558 ] ( https://github.com/fluxcd/flagger/pull/1558 )
29
+
30
+ #### Fixes
31
+ - set original node selector value when finalizing service
32
+ [ #1537 ] ( https://github.com/fluxcd/flagger/pull/1537 )
33
+ - controller: wait for canary deployment to be ready before removing finalizers
34
+ [ #1552 ] ( https://github.com/fluxcd/flagger/pull/1552 )
35
+
5
36
## 1.34.0
6
37
7
38
** Release date:** 2023-10-04
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.34 .0
25
+ image : ghcr.io/fluxcd/flagger:1.35 .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.34 .0
4
- appVersion : 1.34 .0
3
+ version : 1.35 .0
4
+ appVersion : 1.35 .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 5
5
6
6
image :
7
7
repository : ghcr.io/fluxcd/flagger
8
- tag : 1.34 .0
8
+ tag : 1.35 .0
9
9
pullPolicy : IfNotPresent
10
10
pullSecret :
11
11
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.34 .0
12
+ newTag : 1.35 .0
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.34 .0"
19
+ var VERSION = "1.35 .0"
20
20
var REVISION = "unknown"
You can’t perform that action at this time.
0 commit comments