v0.8.43
HyperFrames v0.8.43
Released on 2026-09-16.
Portrait compositions no longer render clipped when the project was scaffolded at a different size, and hyperframes lint now warns before you render when the scaffold's html, body size drifts from the root. Render telemetry gains per-tag and failure-type detail, and docs search shows catalog source file names correctly.
Fixes
- Core: Size
htmlandbodyto the composition root at runtime. A portrait composition (for example 1080x1920) in a project scaffolded landscape used to render only its top 1080px, with the page background below. It now renders the full frame. Fixes #4001 (eb0957a49, #4005). - Lint: New
root_dimensions_mismatchwarning. It fires when the root'sdata-width/data-heightdisagree with thehtml, bodyCSS size or the viewport meta, so the drift shows up inlintandcheckbefore a render. Sub-compositions saved as full HTML documents can trigger this warning even though the parent composition sizes them; it does not affect renders, and a fix follows in the next patch (eb0957a49, #4005). - Docs: Catalog page "Source" section titles are now plain strings, so docs search shows the file name instead of
[object Object](7b5fdb1ad, #4006).
Features
- Telemetry:
render_completeevents now includecomposition_element_tags(a count per element tag),aroll_video_count, andheygen_video_count.render_errorevents adderror_nameandfailed_stage_code, so failures can be grouped by error type and pipeline stage (3704863d9, #4004).