diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bc7d64c..3fa78c9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,26 @@ All notable changes to this project are documented in this file. +## 1.0.1 (2020-07-18) + +Add support for App Mesh Gateway GA + +#### Improvements + +- Update App Mesh docs to v1beta2 API + [#649](https://github.com/weaveworks/flagger/pull/649) +- Add threadiness to Flagger helm chart + [#643](https://github.com/weaveworks/flagger/pull/643) +- Add Istio virtual service to loadtester helm chart + [#643](https://github.com/weaveworks/flagger/pull/643) + +#### Fixes + +- Fix multiple paths per rule on canary ingress + [#632](https://github.com/weaveworks/flagger/pull/632) +- Fix installers for kustomize >= 3.6.0 + [#646](https://github.com/weaveworks/flagger/pull/646) + ## 1.0.0 (2020-06-17) This is the GA release for Flagger v1.0.0. diff --git a/artifacts/flagger/deployment.yaml b/artifacts/flagger/deployment.yaml index 7e783286..74be4a3b 100644 --- a/artifacts/flagger/deployment.yaml +++ b/artifacts/flagger/deployment.yaml @@ -22,7 +22,7 @@ spec: serviceAccountName: flagger containers: - name: flagger - image: weaveworks/flagger:1.0.0 + image: weaveworks/flagger:1.0.1 imagePullPolicy: IfNotPresent ports: - name: http diff --git a/charts/flagger/Chart.yaml b/charts/flagger/Chart.yaml index dc36eabb..6a2ced3b 100644 --- a/charts/flagger/Chart.yaml +++ b/charts/flagger/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: flagger -version: 1.1.0 -appVersion: 1.0.0 +version: 1.0.1 +appVersion: 1.0.1 kubeVersion: ">=1.11.0-0" engine: gotpl description: Flagger is a progressive delivery operator for Kubernetes diff --git a/charts/flagger/values.yaml b/charts/flagger/values.yaml index b453a9c9..257b3a5d 100644 --- a/charts/flagger/values.yaml +++ b/charts/flagger/values.yaml @@ -2,7 +2,7 @@ image: repository: weaveworks/flagger - tag: 1.0.0 + tag: 1.0.1 pullPolicy: IfNotPresent pullSecret: diff --git a/charts/loadtester/Chart.yaml b/charts/loadtester/Chart.yaml index f3262924..b1fe5917 100644 --- a/charts/loadtester/Chart.yaml +++ b/charts/loadtester/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: loadtester -version: 0.17.0 -appVersion: 0.17.0 +version: 0.18.0 +appVersion: 0.18.0 kubeVersion: ">=1.11.0-0" engine: gotpl description: Flagger's load testing services based on rakyll/hey and bojand/ghz that generates traffic during canary analysis when configured as a webhook. diff --git a/charts/loadtester/values.yaml b/charts/loadtester/values.yaml index d50dcd9e..af7a7ffe 100644 --- a/charts/loadtester/values.yaml +++ b/charts/loadtester/values.yaml @@ -2,7 +2,7 @@ replicaCount: 1 image: repository: weaveworks/flagger-loadtester - tag: 0.17.0 + tag: 0.18.0 pullPolicy: IfNotPresent podAnnotations: diff --git a/cmd/loadtester/main.go b/cmd/loadtester/main.go index 20e2644a..8d96ad06 100644 --- a/cmd/loadtester/main.go +++ b/cmd/loadtester/main.go @@ -11,7 +11,7 @@ import ( "go.uber.org/zap" ) -var VERSION = "0.17.0" +var VERSION = "0.18.0" var ( logLevel string port string diff --git a/kustomize/base/flagger/deployment.yaml b/kustomize/base/flagger/deployment.yaml index c8311943..f88be587 100644 --- a/kustomize/base/flagger/deployment.yaml +++ b/kustomize/base/flagger/deployment.yaml @@ -20,7 +20,7 @@ spec: serviceAccountName: flagger containers: - name: flagger - image: weaveworks/flagger:0.21.0 + image: weaveworks/flagger:1.0.0 imagePullPolicy: IfNotPresent ports: - name: http diff --git a/kustomize/base/flagger/kustomization.yaml b/kustomize/base/flagger/kustomization.yaml index ad9e0c45..4356b691 100644 --- a/kustomize/base/flagger/kustomization.yaml +++ b/kustomize/base/flagger/kustomization.yaml @@ -8,4 +8,4 @@ resources: - deployment.yaml images: - name: weaveworks/flagger - newTag: 1.0.0 + newTag: 1.0.1 diff --git a/kustomize/tester/deployment.yaml b/kustomize/tester/deployment.yaml index 5915fefa..b25e8150 100644 --- a/kustomize/tester/deployment.yaml +++ b/kustomize/tester/deployment.yaml @@ -18,7 +18,7 @@ spec: spec: containers: - name: loadtester - image: weaveworks/flagger-loadtester:0.17.0 + image: weaveworks/flagger-loadtester:0.18.0 imagePullPolicy: IfNotPresent ports: - name: http diff --git a/pkg/version/version.go b/pkg/version/version.go index b0e07769..a1397302 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -1,4 +1,4 @@ package version -var VERSION = "1.0.0" +var VERSION = "1.0.1" var REVISION = "unknown"