diff --git a/CHANGELOG.md b/CHANGELOG.md index b798996a3..16928b28e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ All notable changes to this project are documented in this file. +## 1.9.2 + +**Release date:** 2026-07-07 + +This patch release disables Flux variable substitution on the notification +CRDs. The CRDs are now annotated with +`kustomize.toolkit.fluxcd.io/substitute: disabled` so that Kustomizations with +post-build substitution enabled no longer corrupt the CRD schemas when they +contain `${...}` sequences. + +Fixes: +- Disable variable substitution in CRDs + [#1345](https://github.com/fluxcd/notification-controller/pull/1345) + ## 1.9.1 **Release date:** 2026-06-30 diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index 0397acafe..94ce9ca0c 100644 --- a/config/manager/kustomization.yaml +++ b/config/manager/kustomization.yaml @@ -6,4 +6,4 @@ resources: images: - name: fluxcd/notification-controller newName: fluxcd/notification-controller - newTag: v1.9.1 + newTag: v1.9.2 diff --git a/go.mod b/go.mod index bca681c64..3b7c9100a 100644 --- a/go.mod +++ b/go.mod @@ -17,7 +17,7 @@ require ( github.com/coreos/go-oidc/v3 v3.18.0 github.com/elazarl/goproxy v1.8.4 github.com/fluxcd/cli-utils v1.2.2 - github.com/fluxcd/notification-controller/api v1.9.1 + github.com/fluxcd/notification-controller/api v1.9.2 github.com/fluxcd/pkg/apis/event v0.27.1 github.com/fluxcd/pkg/apis/meta v1.30.1 github.com/fluxcd/pkg/auth v0.54.1