diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f745881..31d9901e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,46 @@ All notable changes to this project are documented in this file. +## 1.30.0 + +**Release date:** 2023-04-12 + +This release fixes a bug related to the lack of updates to the generated +object's metadata according to the metadata specified in `spec.service.apex`. +Furthermore, a bug where labels were wrongfully copied over from the canary +deployment to primary deployment when no value was provided for +`--include-label-prefix` has been fixed. +This release also makes Flagger compatible with Flux's helm-controller drift +detection. + +#### Improvements + +- build(deps): bump actions/cache from 3.2.5 to 3.3.1 + [#1385](https://github.com/fluxcd/flagger/pull/1385) +- helm: Added the option to supply additional volumes + [#1393](https://github.com/fluxcd/flagger/pull/1393) +- build(deps): bump actions/setup-go from 3 to 4 + [#1394](https://github.com/fluxcd/flagger/pull/1394) +- update Kuma version and docs + [#1402](https://github.com/fluxcd/flagger/pull/1402) +- ci: bump k8s to 1.24 and kind to 1.18 + [#1406](https://github.com/fluxcd/flagger/pull/1406) +- Helm: Allow configuring deployment `annotations` + [#1411](https://github.com/fluxcd/flagger/pull/1411) +- update dependencies + [#1412](https://github.com/fluxcd/flagger/pull/1412) + +#### Fixes + +- Enable updates for labels and annotations + [#1392](https://github.com/fluxcd/flagger/pull/1392) +- Update flagger-install-with-flux.md + [#1398](https://github.com/fluxcd/flagger/pull/1398) +- avoid copying canary labels to primary on promotion + [#1405](https://github.com/fluxcd/flagger/pull/1405) +- Disable Flux helm drift detection for managed resources + [#1408](https://github.com/fluxcd/flagger/pull/1408) + ## 1.29.0 **Release date:** 2023-02-21 diff --git a/artifacts/flagger/deployment.yaml b/artifacts/flagger/deployment.yaml index 21ea1f49..11ccfe19 100644 --- a/artifacts/flagger/deployment.yaml +++ b/artifacts/flagger/deployment.yaml @@ -22,7 +22,7 @@ spec: serviceAccountName: flagger containers: - name: flagger - image: ghcr.io/fluxcd/flagger:1.29.0 + image: ghcr.io/fluxcd/flagger:1.30.0 imagePullPolicy: IfNotPresent ports: - name: http diff --git a/charts/flagger/Chart.yaml b/charts/flagger/Chart.yaml index bc3b269a..1ab742a6 100644 --- a/charts/flagger/Chart.yaml +++ b/charts/flagger/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: flagger -version: 1.29.0 -appVersion: 1.29.0 +version: 1.30.0 +appVersion: 1.30.0 kubeVersion: ">=1.19.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 340be179..6b54b681 100644 --- a/charts/flagger/values.yaml +++ b/charts/flagger/values.yaml @@ -5,7 +5,7 @@ image: repository: ghcr.io/fluxcd/flagger - tag: 1.29.0 + tag: 1.30.0 pullPolicy: IfNotPresent pullSecret: diff --git a/kustomize/base/flagger/kustomization.yaml b/kustomize/base/flagger/kustomization.yaml index 2fe441c6..6f40ed0a 100644 --- a/kustomize/base/flagger/kustomization.yaml +++ b/kustomize/base/flagger/kustomization.yaml @@ -9,4 +9,4 @@ resources: images: - name: ghcr.io/fluxcd/flagger newName: ghcr.io/fluxcd/flagger - newTag: 1.29.0 + newTag: 1.30.0 diff --git a/pkg/version/version.go b/pkg/version/version.go index 09cab99a..c1e8d320 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -16,5 +16,5 @@ limitations under the License. package version -var VERSION = "1.29.0" +var VERSION = "1.30.0" var REVISION = "unknown"