diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index cf4f0c1468..79d0699c0c 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,7 +1,7 @@ { "name": "hyperframes", "description": "HyperFrames by HeyGen. Write HTML, render video. Compositions, GSAP and runtime adapter animations, captions, voiceovers, audio-reactive visuals, and website capture for HyperFrames.", - "version": "0.8.42", + "version": "0.8.43", "author": { "name": "HeyGen", "email": "hyperframes@heygen.com", diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json index 45d25dfefc..c8986414fa 100644 --- a/.codex-plugin/plugin.json +++ b/.codex-plugin/plugin.json @@ -1,7 +1,7 @@ { "name": "hyperframes", "description": "Write HTML, render video. Compositions, Tailwind v4 styles, GSAP and runtime adapter animations, captions, voiceovers, audio-reactive visuals, and website capture for HyperFrames.", - "version": "0.8.42", + "version": "0.8.43", "author": { "name": "HeyGen", "email": "hyperframes@heygen.com", diff --git a/.cursor-plugin/plugin.json b/.cursor-plugin/plugin.json index 8b96462fa2..396a741a19 100644 --- a/.cursor-plugin/plugin.json +++ b/.cursor-plugin/plugin.json @@ -3,7 +3,7 @@ "name": "hyperframes", "displayName": "HyperFrames by HeyGen", "description": "Write HTML, render video. Compositions, Tailwind v4 styles, GSAP and runtime adapter animations, captions, voiceovers, audio-reactive visuals, and website capture for HyperFrames.", - "version": "0.8.42", + "version": "0.8.43", "author": { "name": "HeyGen", "email": "hyperframes@heygen.com" diff --git a/docs/changelog.mdx b/docs/changelog.mdx index 6fae279c17..fe7b6dec7f 100644 --- a/docs/changelog.mdx +++ b/docs/changelog.mdx @@ -8,6 +8,26 @@ Recent HyperFrames releases, including user-facing features, fixes, and migratio {/* New release entries are prepended by `bun run changelog:draft --write`. */} + +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 `html` and `body` to 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](https://github.com/heygen-com/hyperframes/issues/4001) ([eb0957a49](https://github.com/heygen-com/hyperframes/commit/eb0957a497208e72fda82952410d14dcb03cce77), [#4005](https://github.com/heygen-com/hyperframes/pull/4005)). +- **Lint:** New `root_dimensions_mismatch` warning. It fires when the root's `data-width`/`data-height` disagree with the `html, body` CSS size or the viewport meta, so the drift shows up in `lint` and `check` before 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](https://github.com/heygen-com/hyperframes/commit/eb0957a497208e72fda82952410d14dcb03cce77), [#4005](https://github.com/heygen-com/hyperframes/pull/4005)). +- **Docs:** Catalog page "Source" section titles are now plain strings, so docs search shows the file name instead of `[object Object]` ([7b5fdb1ad](https://github.com/heygen-com/hyperframes/commit/7b5fdb1ad28347272d235edea7aa6a9c762d5e1c), [#4006](https://github.com/heygen-com/hyperframes/pull/4006)). + +## Features + +- **Telemetry:** `render_complete` events now include `composition_element_tags` (a count per element tag), `aroll_video_count`, and `heygen_video_count`. `render_error` events add `error_name` and `failed_stage_code`, so failures can be grouped by error type and pipeline stage ([3704863d9](https://github.com/heygen-com/hyperframes/commit/3704863d966aa2bbee305e69b4f8dbfa0b93090b), [#4004](https://github.com/heygen-com/hyperframes/pull/4004)). + +[View the full commit range](https://github.com/heygen-com/hyperframes/compare/v0.8.42...v0.8.43). + +