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
This commit is contained in:
diegosouzapw
2026-08-07 00:17:59 -03:00
parent 655d4278dd
commit cfe0a783a8

View File

@@ -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)