From 963612bb5e1e586279d6e430689f652a2304db20 Mon Sep 17 00:00:00 2001 From: miga-heygen Date: Wed, 16 Sep 2026 17:02:54 +0000 Subject: [PATCH] chore: release v0.8.43 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Portrait compositions render the full frame when the project was scaffolded at a different size: html/body are sized to the composition root at runtime; new lint warning root_dimensions_mismatch (#4005, fixes #4001) - render_complete telemetry adds composition_element_tags, aroll_video_count, heygen_video_count; render_error adds error_name and failed_stage_code (#4004) - Catalog docs "Source" accordion titles are plain strings, so docs search no longer shows [object Object] (#4006) Co-Authored-By: Miguel Ángel --- .claude-plugin/plugin.json | 2 +- .codex-plugin/plugin.json | 2 +- .cursor-plugin/plugin.json | 2 +- docs/changelog.mdx | 20 ++++++++++++++++++++ packages/aws-lambda/package.json | 2 +- packages/cli/package.json | 2 +- packages/core/package.json | 2 +- packages/engine/package.json | 2 +- packages/gcp-cloud-run/package.json | 2 +- packages/lint/package.json | 2 +- packages/parsers/package.json | 2 +- packages/player/package.json | 2 +- packages/producer/package.json | 2 +- packages/sdk/package.json | 2 +- packages/shader-transitions/package.json | 2 +- packages/studio-server/package.json | 2 +- packages/studio/package.json | 2 +- releases/v0.8.43.md | 19 +++++++++++++++++++ 18 files changed, 55 insertions(+), 16 deletions(-) create mode 100644 releases/v0.8.43.md 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). + +