diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fa78c9b..8d36f224 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,34 @@ All notable changes to this project are documented in this file. +## 1.1.0 (2020-08-18) + +Add support for Skipper ingress controller + +#### Features + +- Skipper Ingress Controller support + [#670](https://github.com/weaveworks/flagger/pull/670) +- Support per-config configTracker disable via ConfigMap/Secret annotation + [#671](https://github.com/weaveworks/flagger/pull/671) + +#### Improvements + +- Add priorityClassName and securityContext to Helm charts + [#652](https://github.com/weaveworks/flagger/pull/652) + [#668](https://github.com/weaveworks/flagger/pull/668) +- Update Kubernetes packages to v1.18.8 + [#672](https://github.com/weaveworks/flagger/pull/672) +- Update Istio, Linkerd and Contour e2e tests + [#661](https://github.com/weaveworks/flagger/pull/661) + +#### Fixes + +- Fix O(log n) bug over network in GetTargetConfigs + [#663](https://github.com/weaveworks/flagger/pull/663) +- Fix(grafana): metrics change since Kubernetes 1.16 + [#663](https://github.com/weaveworks/flagger/pull/663) + ## 1.0.1 (2020-07-18) Add support for App Mesh Gateway GA diff --git a/artifacts/flagger/deployment.yaml b/artifacts/flagger/deployment.yaml index 74be4a3b..a82da6b8 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.1 + image: weaveworks/flagger:1.1.0 imagePullPolicy: IfNotPresent ports: - name: http diff --git a/charts/flagger/Chart.yaml b/charts/flagger/Chart.yaml index 6a2ced3b..36dd58aa 100644 --- a/charts/flagger/Chart.yaml +++ b/charts/flagger/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: flagger -version: 1.0.1 -appVersion: 1.0.1 +version: 1.1.0 +appVersion: 1.1.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 94286043..3956f5ff 100644 --- a/charts/flagger/values.yaml +++ b/charts/flagger/values.yaml @@ -2,7 +2,7 @@ image: repository: weaveworks/flagger - tag: 1.0.1 + tag: 1.1.0 pullPolicy: IfNotPresent pullSecret: diff --git a/kustomize/base/flagger/kustomization.yaml b/kustomize/base/flagger/kustomization.yaml index 4356b691..b4859564 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.1 + newTag: 1.1.0 diff --git a/pkg/version/version.go b/pkg/version/version.go index a1397302..1bd77e47 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -1,4 +1,4 @@ package version -var VERSION = "1.0.1" +var VERSION = "1.1.0" var REVISION = "unknown"