diff --git a/CHANGELOG.md b/CHANGELOG.md index 968f0acb3..72b4155cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,55 @@ All notable changes to this project are documented in this file. +## 1.34.0 + +**Release date:** 2023-10-04 + +This release comes with several new features. The Gateway API integration +has been significantly improved with support for +* [Canary releases with session affinty](https://docs.flagger.app/tutorials/gatewayapi-progressive-delivery#session-affinty) +* [B/G deployments with traffic mirroring](https://docs.flagger.app/tutorials/gatewayapi-progressive-delivery#traffic-mirroring) +* Filters in the generated `HTTPRoute` (`.spec.rules[].filters`) + +Most of the Filters are derived from existing fields in the Canary spec like +`.spec.service.headers`. To support arbitary request mirroring through the +`RequestMirror` filter, a new field `.spec.service.mirror` has been introduced. + +A new field `checksum` has been added to the Canary webhook payload. This field +is computed by hashing the `.status.lastAppliedSpec` and +`.status.trackedConfigs`. It can be used to distinguish between Canary runs. + +Furthermore, the Gloo integration now uses strings for specifying time durations +in order to be better compatible with protobuf duration parsing. + +Lastly, Kubernetes packages were updated to be on 1.27. + +#### Improvements +- Update Kubernetes to v1.27 + [#1506](https://github.com/fluxcd/flagger/pull/1506) +- gatewayapi: add support for session affinity + [#1507](https://github.com/fluxcd/flagger/pull/1507) +- gatewayapi: add support for route rule filters + [#1512](https://github.com/fluxcd/flagger/pull/1512) +- Update Linkerd tutorial to use Kubernetes Gateway API + [#1516](https://github.com/fluxcd/flagger/pull/1516) +- Add Checksum field to the Webhook payload to distinguish canary runs + [#1521](https://github.com/fluxcd/flagger/pull/1521) +- gatewayapi: add support for b/g mirroring + [#1525](https://github.com/fluxcd/flagger/pull/1525) +- Update Go dependencies + [#1528](https://github.com/fluxcd/flagger/pull/1528) + +#### Fixes +- chore: fix incorrect canary name on document + [#1502](https://github.com/fluxcd/flagger/pull/1502) +- fix: Support for queryParams in canary match condition #880 + [#1505](https://github.com/fluxcd/flagger/pull/1505) +- docs: fix error example in deployment strategies + [#1518](https://github.com/fluxcd/flagger/pull/1518) +- Change Gloo Duration type to string + [#1524](https://github.com/fluxcd/flagger/pull/1524) + ## 1.33.0 **Release date:** 2023-08-29 diff --git a/artifacts/flagger/deployment.yaml b/artifacts/flagger/deployment.yaml index 5515dc65e..59b8116f5 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.33.0 + image: ghcr.io/fluxcd/flagger:1.34.0 imagePullPolicy: IfNotPresent ports: - name: http diff --git a/charts/flagger/Chart.yaml b/charts/flagger/Chart.yaml index 92123bbf0..25cdaa054 100644 --- a/charts/flagger/Chart.yaml +++ b/charts/flagger/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: flagger -version: 1.33.0 -appVersion: 1.33.0 +version: 1.34.0 +appVersion: 1.34.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 a6e6e966b..63d8bb5d7 100644 --- a/charts/flagger/values.yaml +++ b/charts/flagger/values.yaml @@ -5,7 +5,7 @@ image: repository: ghcr.io/fluxcd/flagger - tag: 1.33.0 + tag: 1.34.0 pullPolicy: IfNotPresent pullSecret: diff --git a/kustomize/base/flagger/kustomization.yaml b/kustomize/base/flagger/kustomization.yaml index 80df7cd82..b75325f68 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.33.0 + newTag: 1.34.0 diff --git a/pkg/version/version.go b/pkg/version/version.go index 2c3e6c202..5efd75a48 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -16,5 +16,5 @@ limitations under the License. package version -var VERSION = "1.33.0" +var VERSION = "1.34.0" var REVISION = "unknown"