From d35ecbeba815be954dbbf9cb701738e5fd0fec85 Mon Sep 17 00:00:00 2001 From: Sanskar Jaiswal Date: Tue, 29 Aug 2023 12:31:47 +0530 Subject: [PATCH] Release v1.33.0 Signed-off-by: Sanskar Jaiswal --- CHANGELOG.md | 45 +++++++++++++++++++++++ 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, 51 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e5ed4b19..968f0acb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,51 @@ All notable changes to this project are documented in this file. +## 1.33.0 + +**Release date:** 2023-08-29 + +This release fixes bugs related to the Canary lifecycle. The +`confirm-traffic-increase` webhook is no longer called if the Canary is in the +`WaitingPromotion` phase. Furthermore, a bug which caused downtime when +initializing the Canary deployment has been fixed. +Also, a bug in the `request-duration` metric for Traefik which assumed the +result to be in milliseconds instead of seconds has been addressed. + +The loadtester now also supports running `kubectl` commands. + +#### Improvements +- Helm: Add option to configure honorLabels for serviceMonitor + [#1442](https://github.com/fluxcd/flagger/pull/1442) +- Helm: Use PodDisruptionBudget API policy/v1 if available + [#1476](https://github.com/fluxcd/flagger/pull/1476) +- podinfo: Update hpa version from autoscaling/v2beta2 to autoscaling/v2 + [#1477](https://github.com/fluxcd/flagger/pull/1477) +- Helm: Allow custom labels for servicemonitor + [#1483](https://github.com/fluxcd/flagger/pull/1483) +- feat: loadtester support kubectl type + [#1485](https://github.com/fluxcd/flagger/pull/1485) +- Update Istio Gateway reference format + [#1489](https://github.com/fluxcd/flagger/pull/1489) +- e2e: Update Istio to v1.18 + [#1492](https://github.com/fluxcd/flagger/pull/1492) +- add docs for kubectl in loadtester + [#1494](https://github.com/fluxcd/flagger/pull/1494) + +#### Fixes +- fix: typo on "Parase", should be "Parse". + [#1443](https://github.com/fluxcd/flagger/pull/1443) +- Fix Traefik request-duration metric + [#1446](https://github.com/fluxcd/flagger/pull/1446) +- Fix initial deployment downtime + [#1451](https://github.com/fluxcd/flagger/pull/1451) +- Fix FAQ templating format and change reference of $workload to $target. + [#1456](https://github.com/fluxcd/flagger/pull/1456) +- Update doc.go + [#1466](https://github.com/fluxcd/flagger/pull/1466) +- Avoid running traffic increase hooks when waiting for promotion or promoting + [#1470](https://github.com/fluxcd/flagger/pull/1470) + ## 1.32.0 **Release date:** 2023-07-14 diff --git a/artifacts/flagger/deployment.yaml b/artifacts/flagger/deployment.yaml index fe144fe9..5515dc65 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.32.0 + image: ghcr.io/fluxcd/flagger:1.33.0 imagePullPolicy: IfNotPresent ports: - name: http diff --git a/charts/flagger/Chart.yaml b/charts/flagger/Chart.yaml index 67fa2e2d..92123bbf 100644 --- a/charts/flagger/Chart.yaml +++ b/charts/flagger/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: flagger -version: 1.32.0 -appVersion: 1.32.0 +version: 1.33.0 +appVersion: 1.33.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 9d64d126..a6e6e966 100644 --- a/charts/flagger/values.yaml +++ b/charts/flagger/values.yaml @@ -5,7 +5,7 @@ image: repository: ghcr.io/fluxcd/flagger - tag: 1.32.0 + tag: 1.33.0 pullPolicy: IfNotPresent pullSecret: diff --git a/kustomize/base/flagger/kustomization.yaml b/kustomize/base/flagger/kustomization.yaml index 35c551a6..80df7cd8 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.32.0 + newTag: 1.33.0 diff --git a/pkg/version/version.go b/pkg/version/version.go index 97993152..2c3e6c20 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -16,5 +16,5 @@ limitations under the License. package version -var VERSION = "1.32.0" +var VERSION = "1.33.0" var REVISION = "unknown"