Release Flagger v1.0.0-RC.3

This commit is contained in:
stefanprodan
2020-03-23 11:28:34 +02:00
parent ce426b50e3
commit 1d43447994
6 changed files with 29 additions and 6 deletions

View File

@@ -2,6 +2,29 @@
All notable changes to this project are documented in this file.
## 1.0.0-rc.3 (2020-03-23)
This is a release candidate for Flagger v1.0.0.
The upgrade procedure from 0.x to 1.0 can be found [here](https://docs.flagger.app/dev/upgrade-guide).
#### Features
- Add opt-in finalizers to revert Flagger's mutations on deletion of a canary
[#495](https://github.com/weaveworks/flagger/pull/495)
#### Improvements
- e2e: update end-to-end tests to Contour 1.3.0 and Gloo 1.3.14
[#519](https://github.com/weaveworks/flagger/pull/519)
- build: update Kubernetes packages to 1.17.4
[#516](https://github.com/weaveworks/flagger/pull/516)
#### Fixes
- Preserve node ports on service reconciliation
[#514](https://github.com/weaveworks/flagger/pull/514)
## 1.0.0-rc.2 (2020-03-19)
This is a release candidate for Flagger v1.0.0.

View File

@@ -22,7 +22,7 @@ spec:
serviceAccountName: flagger
containers:
- name: flagger
image: weaveworks/flagger:1.0.0-rc.2
image: weaveworks/flagger:1.0.0-rc.3
imagePullPolicy: IfNotPresent
ports:
- name: http

View File

@@ -1,7 +1,7 @@
apiVersion: v1
name: flagger
version: 0.25.0
appVersion: 1.0.0-rc.2
version: 0.26.0
appVersion: 1.0.0-rc.3
kubeVersion: ">=1.11.0-0"
engine: gotpl
description: Flagger is a progressive delivery operator for Kubernetes

View File

@@ -2,7 +2,7 @@
image:
repository: weaveworks/flagger
tag: 1.0.0-rc.2
tag: 1.0.0-rc.3
pullPolicy: IfNotPresent
pullSecret:

View File

@@ -8,4 +8,4 @@ resources:
- deployment.yaml
images:
- name: weaveworks/flagger
newTag: 1.0.0-rc.2
newTag: 1.0.0-rc.3

View File

@@ -1,4 +1,4 @@
package version
var VERSION = "1.0.0-rc.2"
var VERSION = "1.0.0-rc.3"
var REVISION = "unknown"