You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
[1.83.4] - 2026-09-11 — Alnilam
Fixed
A mounted SPA document may frame itself and its own blob: documents. The document CSP SpaMountController sends (SecurityHeaders::DEFAULT_DOCUMENT_CSP) had no frame-src, so default-src 'self' applied and a browser refused an iframe pointing at a blob: URL the
page minted itself — a CMS admin previewing its rendered header/footer showed nothing but
"Framing 'blob:…' violates … default-src 'self'". The policy now carries frame-src 'self' blob:. Framing the same origin and the document's own blobs is the
document's own content; no third-party origin is allowed and frame-ancestors 'self' is
unchanged. A mount's explicit csp override is untouched.