diff --git a/CHANGELOG.md b/CHANGELOG.md index b1789b47..babeaec6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ All notable changes to this project are documented in this file. +## 0.18.2 (2019-08-05) + +Fixes multi-port support for Istio + +#### Fixes + +- Fix port discovery for multiple port services [#267](https://github.com/weaveworks/flagger/pull/267) + +#### Improvements + +- Update e2e testing to Istio v1.2.3, Gloo v0.18.8 and NGINX ingress chart v1.12.1 [#268](https://github.com/weaveworks/flagger/pull/268) + ## 0.18.1 (2019-07-30) Fixes Blue/Green style deployments for Kubernetes and Linkerd providers @@ -26,8 +38,8 @@ Adds support for [manual gating](https://docs.flagger.app/how-it-works#manual-ga #### Breaking changes -- due to the status sub-resource changes in [#240](https://github.com/weaveworks/flagger/pull/240), when upgrading Flagger the canaries status phase will be reset to `Initialized` -- upgrading Flagger with Helm will fail due to Helm poor support of CRDs, see [workaround](https://github.com/weaveworks/flagger/issues/223) +- Due to the status sub-resource changes in [#240](https://github.com/weaveworks/flagger/pull/240), when upgrading Flagger the canaries status phase will be reset to `Initialized` +- Upgrading Flagger with Helm will fail due to Helm poor support of CRDs, see [workaround](https://github.com/weaveworks/flagger/issues/223) ## 0.17.0 (2019-07-08) diff --git a/artifacts/flagger/deployment.yaml b/artifacts/flagger/deployment.yaml index 66b4fb8f..c8a85f4b 100644 --- a/artifacts/flagger/deployment.yaml +++ b/artifacts/flagger/deployment.yaml @@ -22,7 +22,7 @@ spec: serviceAccountName: flagger containers: - name: flagger - image: weaveworks/flagger:0.18.1 + image: weaveworks/flagger:0.18.2 imagePullPolicy: IfNotPresent ports: - name: http diff --git a/charts/flagger/Chart.yaml b/charts/flagger/Chart.yaml index 091eb09c..41125eec 100644 --- a/charts/flagger/Chart.yaml +++ b/charts/flagger/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: flagger -version: 0.18.1 -appVersion: 0.18.1 +version: 0.18.2 +appVersion: 0.18.2 kubeVersion: ">=1.11.0-0" engine: gotpl description: Flagger is a Kubernetes operator that automates the promotion of canary deployments using Istio, Linkerd, App Mesh, Gloo or NGINX routing for traffic shifting and Prometheus metrics for canary analysis. diff --git a/charts/flagger/values.yaml b/charts/flagger/values.yaml index 30561ae0..fc67ff5f 100644 --- a/charts/flagger/values.yaml +++ b/charts/flagger/values.yaml @@ -2,7 +2,7 @@ image: repository: weaveworks/flagger - tag: 0.18.1 + tag: 0.18.2 pullPolicy: IfNotPresent pullSecret: diff --git a/kustomize/base/flagger/kustomization.yaml b/kustomize/base/flagger/kustomization.yaml index 2eae8bb1..fccd1142 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: 0.18.1 + newTag: 0.18.2 diff --git a/pkg/version/version.go b/pkg/version/version.go index 51991970..c52f6568 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -1,4 +1,4 @@ package version -var VERSION = "0.18.1" +var VERSION = "0.18.2" var REVISION = "unknown"