From cfe0a783a8f776c7d363d7ea3443279a26dd8181 Mon Sep 17 00:00:00 2001 From: diegosouzapw Date: Fri, 7 Aug 2026 00:17:59 -0300 Subject: [PATCH] fix(plugins): add markdown bullet prefix to changelog fragment The changelog fragment was missing the required '- ' markdown bullet prefix, causing the check:changelog-integrity gate to fail. Refs #9570 --- changelog.d/features/9570-plugin-context-headers.md | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/changelog.d/features/9570-plugin-context-headers.md b/changelog.d/features/9570-plugin-context-headers.md index 0301713244..07fc8687c4 100644 --- a/changelog.d/features/9570-plugin-context-headers.md +++ b/changelog.d/features/9570-plugin-context-headers.md @@ -1,10 +1 @@ -feat(plugins): expose client request headers in plugin onRequest/onResponse context (#9570) - -Adds an optional `headers` field to `PluginContext` so plugin hooks can -read request-scoped HTTP headers (trace ids, correlation ids, session markers) -sent by the client. The `clientRawRequest.headers` value is plumbed through -both `runPluginOnRequestHook` and `runPluginOnResponseHook` at the 3 call sites -in `handleChatCore()`. - -No breaking changes — the field is optional and all existing callers -are unaffected. +- feat(plugins): expose client request headers in plugin onRequest/onResponse context (#9570)