diff --git a/CHANGELOG.md b/CHANGELOG.md index 16928b28e..a1106a0fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,29 @@ All notable changes to this project are documented in this file. +## 1.9.3 + +**Release date:** 2026-08-07 + +This patch release unifies the request limits of the two HTTP servers exposed by +the controller. The event server and the receiver server now share the same +request body limit of 3 MiB, enforced by a common helper that rejects oversized +bodies with HTTP 413, with the receiver limit applied before the receiver lookup +and payload validation. Both servers now set a read timeout of 30s, a read +header timeout of 10s and a maximum header size of 256 KiB. The event rate +limiter store sweeps stale entries at the configured `--rate-limit-interval` and +purges them after twice that interval, and `sethvargo/go-limiter` has been +updated to v1.2.0 to reduce lock contention in the store. In addition, the +Bitbucket Cloud receiver documentation has been updated. + +Fixes: +- Unify HTTP server request limits + [#1363](https://github.com/fluxcd/notification-controller/pull/1363) + +Improvements: +- Update Bitbucket Cloud receiver guidance + [#1350](https://github.com/fluxcd/notification-controller/pull/1350) + ## 1.9.2 **Release date:** 2026-07-07 diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index 94ce9ca0c..426d4fd2a 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.2 + newTag: v1.9.3 diff --git a/go.mod b/go.mod index a19e1c3ad..64da338d2 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.2 + github.com/fluxcd/notification-controller/api v1.9.3 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