diff --git a/CHANGELOG.md b/CHANGELOG.md index e3df4f7b..60b28fba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to this project are documented in this file. +## 0.22.0 (2020-01-16) + +Adds event dispatching through webhooks + +#### Features + +- Implement event dispatching webhook [#409](https://github.com/weaveworks/flagger/pull/409) +- Add general purpose event webhook [#401](https://github.com/weaveworks/flagger/pull/401) + +#### Improvements + +- Update Contour to v1.1 and add Linkerd header [#411](https://github.com/weaveworks/flagger/pull/411) +- Update Istio e2e to v1.4.3 [#407](https://github.com/weaveworks/flagger/pull/407) +- Update Kubernetes packages to 1.17 [#406](https://github.com/weaveworks/flagger/pull/406) + ## 0.21.0 (2020-01-06) Adds support for Contour ingress controller diff --git a/artifacts/flagger/deployment.yaml b/artifacts/flagger/deployment.yaml index 87bb109b..575de791 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.21.0 + image: weaveworks/flagger:0.22.0 imagePullPolicy: IfNotPresent ports: - name: http diff --git a/charts/flagger/Chart.yaml b/charts/flagger/Chart.yaml index e9aad557..7fc79716 100644 --- a/charts/flagger/Chart.yaml +++ b/charts/flagger/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: flagger -version: 0.21.0 -appVersion: 0.21.0 +version: 0.22.0 +appVersion: 0.22.0 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 325ec3df..70c53e23 100644 --- a/charts/flagger/values.yaml +++ b/charts/flagger/values.yaml @@ -2,7 +2,7 @@ image: repository: weaveworks/flagger - tag: 0.21.0 + tag: 0.22.0 pullPolicy: IfNotPresent pullSecret: diff --git a/kustomize/base/flagger/kustomization.yaml b/kustomize/base/flagger/kustomization.yaml index 0b6fcdbe..58e0615f 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.21.0 + newTag: 0.22.0 diff --git a/pkg/version/version.go b/pkg/version/version.go index 6183d04a..f8360f4b 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -1,4 +1,4 @@ package version -var VERSION = "0.21.0" +var VERSION = "0.22.0" var REVISION = "unknown"