diff --git a/CHANGELOG.md b/CHANGELOG.md index c5953ca8..fa7adac1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ All notable changes to this project are documented in this file. +## 1.24.1 + +**Release date:** 2022-10-26 + +This release comes with a fix to Gloo routing when a custom service name id used. + +In addition, the Gloo ingress end-to-end testing was updated to Gloo Helm chart v1.12.31. + +#### Fixes: + +- fix(gloo): Use correct route table name in case service name was overwritten + [#1300](https://github.com/fluxcd/flagger/pull/1300) + ## 1.24.0 **Release date:** 2022-10-23 diff --git a/README.md b/README.md index 17e2179d..31b231b8 100644 --- a/README.md +++ b/README.md @@ -260,7 +260,7 @@ When submitting bug reports please include as many details as possible: Here is a list of good entry points into our community, how we stay in touch and how you can meet us as a team. - Slack: Join in and talk to us in the `#flagger` channel on [CNCF Slack](https://slack.cncf.io/). -- Meetings: We run weekly, public meetings - join one of the upcoming dev meetings from the [Flux calendar](https://fluxcd.io/#calendar). +- Public meetings: We run weekly meetings - join one of the upcoming dev meetings from the [Flux calendar](https://fluxcd.io/#calendar). - Blog: Stay up to date with the latest news on [the Flux blog](https://fluxcd.io/blog/). - Mailing list: To be updated on Flux and Flagger progress regularly, please [join the flux-dev mailing list](https://lists.cncf.io/g/cncf-flux-dev). diff --git a/artifacts/flagger/deployment.yaml b/artifacts/flagger/deployment.yaml index 9be783ce..c3f32f31 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.24.0 + image: ghcr.io/fluxcd/flagger:1.24.1 imagePullPolicy: IfNotPresent ports: - name: http diff --git a/charts/flagger/Chart.yaml b/charts/flagger/Chart.yaml index 9d0e16b1..178b3dbc 100644 --- a/charts/flagger/Chart.yaml +++ b/charts/flagger/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: flagger -version: 1.24.0 -appVersion: 1.24.0 +version: 1.24.1 +appVersion: 1.24.1 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 b66fdff8..5718fc1e 100644 --- a/charts/flagger/values.yaml +++ b/charts/flagger/values.yaml @@ -2,7 +2,7 @@ image: repository: ghcr.io/fluxcd/flagger - tag: 1.24.0 + tag: 1.24.1 pullPolicy: IfNotPresent pullSecret: diff --git a/kustomize/base/flagger/kustomization.yaml b/kustomize/base/flagger/kustomization.yaml index 7eddfcc2..def4a311 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.24.0 + newTag: 1.24.1 diff --git a/pkg/version/version.go b/pkg/version/version.go index d8097b2a..e188348e 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -16,5 +16,5 @@ limitations under the License. package version -var VERSION = "1.24.0" +var VERSION = "1.24.1" var REVISION = "unknown"