Skip to content

Commit 98530d9

Browse files
authored
Merge pull request #984 from fluxcd/release-v1.13.0
Release v1.13.0
2 parents eb12e3b + 38adc51 commit 98530d9

File tree

7 files changed

+51
-8
lines changed

7 files changed

+51
-8
lines changed

CHANGELOG.md

+43
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,49 @@
22

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

5+
## 1.13.0
6+
7+
**Release date:** 2021-08-25
8+
9+
This release comes with support for [Open Service Mesh](https://openservicemesh.io).
10+
For more details see the [OSM Progressive Delivery tutorial](https://docs.flagger.app/tutorials/osm-progressive-delivery).
11+
12+
Starting with this version, Flagger container images are signed with
13+
[sigstore/cosign](https://github.com/sigstore/cosign), for more details see the
14+
[Flagger cosign docs](https://github.com/fluxcd/flagger/blob/main/cosign/README.md).
15+
16+
#### Features
17+
18+
- Support OSM progressive traffic shifting in Flagger
19+
[#955](https://github.com/fluxcd/flagger/pull/955)
20+
[#977](https://github.com/fluxcd/flagger/pull/977)
21+
- Add support for Google Chat alerts
22+
[#953](https://github.com/fluxcd/flagger/pull/953)
23+
24+
#### Improvements
25+
26+
- Sign Flagger container images with cosign
27+
[#983](https://github.com/fluxcd/flagger/pull/983)
28+
- Update Gloo APIs and e2e tests to Gloo v1.8.9
29+
[#982](https://github.com/fluxcd/flagger/pull/982)
30+
- Update e2e tests to Istio v1.11, Contour v1.18, Linkerd v2.10.2 and NGINX v0.49.0
31+
[#979](https://github.com/fluxcd/flagger/pull/979)
32+
- Update e2e tests to Traefik to 2.4.9
33+
[#960](https://github.com/fluxcd/flagger/pull/960)
34+
- Add support for volumes/volumeMounts in loadtester Helm chart
35+
[#975](https://github.com/fluxcd/flagger/pull/975)
36+
- Add extra podLabels options to Flagger Helm Chart
37+
[#966](https://github.com/fluxcd/flagger/pull/966)
38+
39+
#### Fixes
40+
41+
- Fix for the http client proxy overriding the default client
42+
[#943](https://github.com/fluxcd/flagger/pull/943)
43+
- Drop deprecated io/ioutil
44+
[#964](https://github.com/fluxcd/flagger/pull/964)
45+
- Remove problematic nulls from Grafana dashboard
46+
[#952](https://github.com/fluxcd/flagger/pull/952)
47+
548
## 1.12.1
649

750
**Release date:** 2021-06-17

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.12.1
25+
image: ghcr.io/fluxcd/flagger:1.13.0
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.12.1
4-
appVersion: 1.12.1
3+
version: 1.13.0
4+
appVersion: 1.13.0
55
kubeVersion: ">=1.16.0-0"
66
engine: gotpl
77
description: Flagger is a progressive delivery operator for Kubernetes

charts/flagger/values.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

@@ -161,4 +161,4 @@ podDisruptionBudget:
161161
enabled: false
162162
minAvailable: 1
163163

164-
podLabels: {}
164+
podLabels: {}

charts/grafana/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v1
22
name: grafana
3-
version: 1.5.0
3+
version: 1.6.0
44
appVersion: 7.2.0
55
description: Grafana dashboards for monitoring Flagger canary deployments
66
icon: https://raw.githubusercontent.com/fluxcd/flagger/main/docs/logo/flagger-icon.png

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.12.1
12+
newTag: 1.13.0

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

0 commit comments

Comments
 (0)