From a4941bd764e5789f9f01aaa509ce36f534953e75 Mon Sep 17 00:00:00 2001 From: Sanskar Jaiswal Date: Mon, 29 Aug 2022 18:22:33 +0530 Subject: [PATCH] Release v1.22.2 Signed-off-by: Sanskar Jaiswal --- CHANGELOG.md | 36 +++++++++++++++++++++++ artifacts/flagger/deployment.yaml | 2 +- charts/flagger/Chart.yaml | 4 +-- charts/flagger/values.yaml | 2 +- kustomize/base/flagger/kustomization.yaml | 2 +- pkg/version/version.go | 2 +- 6 files changed, 42 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 509d4018..00985aea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,42 @@ All notable changes to this project are documented in this file. +## 1.22.2 + +**Release date:** 2022-08-29 + +This release fixes a bug related scaling up the canary deployment when a +reference to an autoscaler is specified. + +Furthermore, it contains updates to packages used by the project, including +updates to Helm and grpc-health-probe used in the loadtester. + +CVEs fixed (originating from dependencies): +* CVE-2022-37434 +* CVE-2022-27191 +* CVE-2021-33194 +* CVE-2021-44716 +* CVE-2022-29526 +* CVE-2022-1996 + +#### Fixes: + +- If HPA is set, it uses HPA minReplicas when scaling up the canary + [#1253](https://github.com/fluxcd/flagger/pull/1253) + +#### Improvements: + +- Release loadtester v0.23.0 + [#1246](https://github.com/fluxcd/flagger/pull/1246) +- Add target and script to keep crds in sync + [#1254](https://github.com/fluxcd/flagger/pull/1254) +- docs: add knative support to roadmap + [#1258](https://github.com/fluxcd/flagger/pull/1258) +- Update dependencies + [#1259](https://github.com/fluxcd/flagger/pull/1259) +- Release loadtester v0.24.0 + [#1261](https://github.com/fluxcd/flagger/pull/1261) + ## 1.22.1 **Release date:** 2022-08-01 diff --git a/artifacts/flagger/deployment.yaml b/artifacts/flagger/deployment.yaml index de62e24e..e6bd87b4 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.22.1 + image: ghcr.io/fluxcd/flagger:1.22.2 imagePullPolicy: IfNotPresent ports: - name: http diff --git a/charts/flagger/Chart.yaml b/charts/flagger/Chart.yaml index 2cf500e8..0c19ef51 100644 --- a/charts/flagger/Chart.yaml +++ b/charts/flagger/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: flagger -version: 1.22.1 -appVersion: 1.22.1 +version: 1.22.2 +appVersion: 1.22.2 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 2a5cf3c4..5b1836e8 100644 --- a/charts/flagger/values.yaml +++ b/charts/flagger/values.yaml @@ -2,7 +2,7 @@ image: repository: ghcr.io/fluxcd/flagger - tag: 1.22.1 + tag: 1.22.2 pullPolicy: IfNotPresent pullSecret: diff --git a/kustomize/base/flagger/kustomization.yaml b/kustomize/base/flagger/kustomization.yaml index 3e0cf116..ae352278 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.22.1 + newTag: 1.22.2 diff --git a/pkg/version/version.go b/pkg/version/version.go index bcc56fb3..58c9dec2 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -16,5 +16,5 @@ limitations under the License. package version -var VERSION = "1.22.1" +var VERSION = "1.22.2" var REVISION = "unknown"