From 76c82f48a43d9e3ad5954f8d0d1fde211282e0dd Mon Sep 17 00:00:00 2001 From: stefanprodan Date: Wed, 5 Jun 2019 10:28:13 +0300 Subject: [PATCH 1/2] Release v0.14.1 --- artifacts/flagger/deployment.yaml | 2 +- charts/flagger/Chart.yaml | 4 ++-- charts/flagger/values.yaml | 2 +- pkg/version/version.go | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/artifacts/flagger/deployment.yaml b/artifacts/flagger/deployment.yaml index bb21999b..7e8b18c0 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.14.0 + image: weaveworks/flagger:0.14.1 imagePullPolicy: IfNotPresent ports: - name: http diff --git a/charts/flagger/Chart.yaml b/charts/flagger/Chart.yaml index f05bf0e7..83cc761d 100644 --- a/charts/flagger/Chart.yaml +++ b/charts/flagger/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: flagger -version: 0.14.0 -appVersion: 0.14.0 +version: 0.14.1 +appVersion: 0.14.1 kubeVersion: ">=1.11.0-0" engine: gotpl description: Flagger is a Kubernetes operator that automates the promotion of canary deployments using Istio, App Mesh 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 43ea1907..1e8d74bc 100644 --- a/charts/flagger/values.yaml +++ b/charts/flagger/values.yaml @@ -2,7 +2,7 @@ image: repository: weaveworks/flagger - tag: 0.14.0 + tag: 0.14.1 pullPolicy: IfNotPresent metricsServer: "http://prometheus:9090" diff --git a/pkg/version/version.go b/pkg/version/version.go index 1db23e44..1ecd5904 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -1,4 +1,4 @@ package version -var VERSION = "0.14.0" +var VERSION = "0.14.1" var REVISION = "unknown" From 396452b7b6121f46d5961f62a5a6c2343de9920f Mon Sep 17 00:00:00 2001 From: stefanprodan Date: Wed, 5 Jun 2019 10:28:40 +0300 Subject: [PATCH 2/2] Add changelog for v0.14.1 --- CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c0a2eed7..167edf47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ All notable changes to this project are documented in this file. +## 0.14.1 (2019-06-05) + +Adds support for running [acceptance/integration tests](https://docs.flagger.app/how-it-works#integration-testing) with Helm test or Bash Bats using pre-rollout hooks + +#### Features + +- Implement Helm and Bash pre-rollout hooks [#196](https://github.com/weaveworks/flagger/pull/196) + +#### Fixes + +- Fix promoting canary when max weight is not a multiple of step [#190](https://github.com/weaveworks/flagger/pull/190) +- Add ability to set Prometheus url with custom path without trailing '/' [#197](https://github.com/weaveworks/flagger/pull/197) + ## 0.14.0 (2019-05-21) Adds support for Service Mesh Interface and [Gloo](https://docs.flagger.app/usage/gloo-progressive-delivery) ingress controller