From 7f4ee09c321bb8b5b086f8904f0ef7cca620124e Mon Sep 17 00:00:00 2001 From: miga-heygen Date: Wed, 16 Sep 2026 06:39:04 +0000 Subject: [PATCH 1/3] chore: release v0.8.42 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Studio preview works for projects whose path has non-Latin-1 characters (#3982) - Studio render downloads use RFC 6266 headers for non-Latin-1 filenames (#3984) - check --json reports HDR auto-promotion; render prints one warning (#3985) - Forced --sdr renders tone-map HDR sources before extraction (#3981) - Render/preview workers no longer survive as orphans after Ctrl-C or parent exit; cancellation reaches final artifact promotion; HYPERFRAMES_RENDER_DETACHED=1 for intentionally detached renders (#3974) - HDR preflight test coverage for held tails (#3963) Co-Authored-By: Miguel Ángel --- .claude-plugin/plugin.json | 2 +- .codex-plugin/plugin.json | 2 +- .cursor-plugin/plugin.json | 2 +- docs/changelog.mdx | 22 ++++++++++++++++++++++ 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.42.md | 21 +++++++++++++++++++++ 18 files changed, 59 insertions(+), 16 deletions(-) create mode 100644 releases/v0.8.42.md diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 7b6d1ab784..cf4f0c1468 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.41", + "version": "0.8.42", "author": { "name": "HeyGen", "email": "hyperframes@heygen.com", diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json index 889e64fec5..45d25dfefc 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.41", + "version": "0.8.42", "author": { "name": "HeyGen", "email": "hyperframes@heygen.com", diff --git a/.cursor-plugin/plugin.json b/.cursor-plugin/plugin.json index 1fa709b2d0..8b96462fa2 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.41", + "version": "0.8.42", "author": { "name": "HeyGen", "email": "hyperframes@heygen.com" diff --git a/docs/changelog.mdx b/docs/changelog.mdx index 6f4b366cd0..324debaa6a 100644 --- a/docs/changelog.mdx +++ b/docs/changelog.mdx @@ -8,6 +8,28 @@ Recent HyperFrames releases, including user-facing features, fixes, and migratio {/* New release entries are prepended by `bun run changelog:draft --write`. */} + +Studio preview and render downloads now work for projects and files with non-Latin-1 names. Forced `--sdr` renders tone-map HDR sources so colors match the Studio preview. HDR auto-promotion now shows up in `check --json`, and render workers no longer survive as orphans after Ctrl-C or a parent exit. + +## Fixes + +- **CLI:** Stop render and preview worker processes from surviving as orphans after Ctrl-C, parent exit, or a stopped Windows wrapper. Carry cancellation through final artifact promotion so a cancelled render never replaces an existing output. Set `HYPERFRAMES_RENDER_DETACHED=1` for intentionally detached renders ([08d48ab75](https://github.com/heygen-com/hyperframes/commit/08d48ab7539e3a21facbe005c0610f2dbc8bf5a5), [#3974](https://github.com/heygen-com/hyperframes/pull/3974)). +- **Engine:** Tone-map HDR sources before frame extraction on forced `--sdr` renders, fixing the cool color cast versus the Studio preview ([ef48485b9](https://github.com/heygen-com/hyperframes/commit/ef48485b919c69735659a09dc01aa21aa73a4f51), [#3981](https://github.com/heygen-com/hyperframes/pull/3981)). +- **CLI:** Report HDR auto-promotion in `check --json` with the triggering asset and resulting output pipeline, and print one render warning when it fires ([5d2478c6f](https://github.com/heygen-com/hyperframes/commit/5d2478c6fae413f28c6106ca4359b952e7434a50), [#3985](https://github.com/heygen-com/hyperframes/pull/3985)). +- **Studio Server:** Serve render downloads and file responses for non-Latin-1 filenames using RFC 6266 `Content-Disposition` headers ([b599f031a](https://github.com/heygen-com/hyperframes/commit/b599f031a929f55ade71246a7b3c5701b311aa46), [#3984](https://github.com/heygen-com/hyperframes/pull/3984)). +- **Studio Server:** Fix preview failures for projects whose path contains non-Latin-1 characters by hashing sub-composition paths into ASCII-safe ETags ([edb6e87ba](https://github.com/heygen-com/hyperframes/commit/edb6e87ba7fa8fa49039dc4ccbe5733cf58afdae), [#3982](https://github.com/heygen-com/hyperframes/pull/3982)). + +## Internal + +- **Engine:** Cover held tails in HDR preflight ([ae18e3a32](https://github.com/heygen-com/hyperframes/commit/ae18e3a327e66e18747cdcc7b4a16b20ea75f97a), [#3963](https://github.com/heygen-com/hyperframes/pull/3963)). + +[View the full commit range](https://github.com/heygen-com/hyperframes/compare/v0.8.41...v0.8.42). + + Date: Wed, 16 Sep 2026 06:52:47 +0000 Subject: [PATCH 2/3] =?UTF-8?q?chore:=20release=20v0.8.42=20notes=20?= =?UTF-8?q?=E2=80=94=20name=20the=20#3982=20symptom=20and=20scope?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - #3982 entry: a Studio preview server crash for compositions whose file path has non-Latin-1 characters (the project directory is not involved) Co-Authored-By: Miguel Ángel --- docs/changelog.mdx | 4 ++-- releases/v0.8.42.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/changelog.mdx b/docs/changelog.mdx index 324debaa6a..4f2a8cae72 100644 --- a/docs/changelog.mdx +++ b/docs/changelog.mdx @@ -13,7 +13,7 @@ Recent HyperFrames releases, including user-facing features, fixes, and migratio description="Released - 2026-09-16" tags={["Release", "CLI", "Engine", "Studio Server"]} > -Studio preview and render downloads now work for projects and files with non-Latin-1 names. Forced `--sdr` renders tone-map HDR sources so colors match the Studio preview. HDR auto-promotion now shows up in `check --json`, and render workers no longer survive as orphans after Ctrl-C or a parent exit. +Studio preview and render downloads now work for compositions and files with non-Latin-1 names. Forced `--sdr` renders tone-map HDR sources so colors match the Studio preview. HDR auto-promotion now shows up in `check --json`, and render workers no longer survive as orphans after Ctrl-C or a parent exit. ## Fixes @@ -21,7 +21,7 @@ Studio preview and render downloads now work for projects and files with non-Lat - **Engine:** Tone-map HDR sources before frame extraction on forced `--sdr` renders, fixing the cool color cast versus the Studio preview ([ef48485b9](https://github.com/heygen-com/hyperframes/commit/ef48485b919c69735659a09dc01aa21aa73a4f51), [#3981](https://github.com/heygen-com/hyperframes/pull/3981)). - **CLI:** Report HDR auto-promotion in `check --json` with the triggering asset and resulting output pipeline, and print one render warning when it fires ([5d2478c6f](https://github.com/heygen-com/hyperframes/commit/5d2478c6fae413f28c6106ca4359b952e7434a50), [#3985](https://github.com/heygen-com/hyperframes/pull/3985)). - **Studio Server:** Serve render downloads and file responses for non-Latin-1 filenames using RFC 6266 `Content-Disposition` headers ([b599f031a](https://github.com/heygen-com/hyperframes/commit/b599f031a929f55ade71246a7b3c5701b311aa46), [#3984](https://github.com/heygen-com/hyperframes/pull/3984)). -- **Studio Server:** Fix preview failures for projects whose path contains non-Latin-1 characters by hashing sub-composition paths into ASCII-safe ETags ([edb6e87ba](https://github.com/heygen-com/hyperframes/commit/edb6e87ba7fa8fa49039dc4ccbe5733cf58afdae), [#3982](https://github.com/heygen-com/hyperframes/pull/3982)). +- **Studio Server:** Fix preview failures for compositions whose file path contains non-Latin-1 characters by hashing sub-composition paths into ASCII-safe ETags ([edb6e87ba](https://github.com/heygen-com/hyperframes/commit/edb6e87ba7fa8fa49039dc4ccbe5733cf58afdae), [#3982](https://github.com/heygen-com/hyperframes/pull/3982)). ## Internal diff --git a/releases/v0.8.42.md b/releases/v0.8.42.md index f461ac6462..feb8905ad3 100644 --- a/releases/v0.8.42.md +++ b/releases/v0.8.42.md @@ -2,7 +2,7 @@ Released on 2026-09-16. -Studio preview and render downloads now work for projects and files with non-Latin-1 names. Forced `--sdr` renders tone-map HDR sources so colors match the Studio preview. HDR auto-promotion now shows up in `check --json`, and render workers no longer survive as orphans after Ctrl-C or a parent exit. +Studio preview and render downloads now work for compositions and files with non-Latin-1 names. Forced `--sdr` renders tone-map HDR sources so colors match the Studio preview. HDR auto-promotion now shows up in `check --json`, and render workers no longer survive as orphans after Ctrl-C or a parent exit. ## Fixes @@ -10,7 +10,7 @@ Studio preview and render downloads now work for projects and files with non-Lat - **Engine:** Tone-map HDR sources before frame extraction on forced `--sdr` renders, fixing the cool color cast versus the Studio preview ([ef48485b9](https://github.com/heygen-com/hyperframes/commit/ef48485b919c69735659a09dc01aa21aa73a4f51), [#3981](https://github.com/heygen-com/hyperframes/pull/3981)). - **CLI:** Report HDR auto-promotion in `check --json` with the triggering asset and resulting output pipeline, and print one render warning when it fires ([5d2478c6f](https://github.com/heygen-com/hyperframes/commit/5d2478c6fae413f28c6106ca4359b952e7434a50), [#3985](https://github.com/heygen-com/hyperframes/pull/3985)). - **Studio Server:** Serve render downloads and file responses for non-Latin-1 filenames using RFC 6266 `Content-Disposition` headers ([b599f031a](https://github.com/heygen-com/hyperframes/commit/b599f031a929f55ade71246a7b3c5701b311aa46), [#3984](https://github.com/heygen-com/hyperframes/pull/3984)). -- **Studio Server:** Fix preview failures for projects whose path contains non-Latin-1 characters by hashing sub-composition paths into ASCII-safe ETags ([edb6e87ba](https://github.com/heygen-com/hyperframes/commit/edb6e87ba7fa8fa49039dc4ccbe5733cf58afdae), [#3982](https://github.com/heygen-com/hyperframes/pull/3982)). +- **Studio Server:** Fix preview failures for compositions whose file path contains non-Latin-1 characters by hashing sub-composition paths into ASCII-safe ETags ([edb6e87ba](https://github.com/heygen-com/hyperframes/commit/edb6e87ba7fa8fa49039dc4ccbe5733cf58afdae), [#3982](https://github.com/heygen-com/hyperframes/pull/3982)). ## Internal From f1c71764c45b543da167b8c43c2869a7ae5847c0 Mon Sep 17 00:00:00 2001 From: miga-heygen Date: Wed, 16 Sep 2026 06:54:34 +0000 Subject: [PATCH 3/3] =?UTF-8?q?chore:=20release=20v0.8.42=20notes=20?= =?UTF-8?q?=E2=80=94=20name=20the=20#3982=20symptom?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - #3982 entry: the uncaught ETag TypeError took the preview server down, so call it a Studio preview server crash rather than a preview failure Co-Authored-By: Miguel Ángel --- docs/changelog.mdx | 2 +- releases/v0.8.42.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/changelog.mdx b/docs/changelog.mdx index 4f2a8cae72..6fae279c17 100644 --- a/docs/changelog.mdx +++ b/docs/changelog.mdx @@ -21,7 +21,7 @@ Studio preview and render downloads now work for compositions and files with non - **Engine:** Tone-map HDR sources before frame extraction on forced `--sdr` renders, fixing the cool color cast versus the Studio preview ([ef48485b9](https://github.com/heygen-com/hyperframes/commit/ef48485b919c69735659a09dc01aa21aa73a4f51), [#3981](https://github.com/heygen-com/hyperframes/pull/3981)). - **CLI:** Report HDR auto-promotion in `check --json` with the triggering asset and resulting output pipeline, and print one render warning when it fires ([5d2478c6f](https://github.com/heygen-com/hyperframes/commit/5d2478c6fae413f28c6106ca4359b952e7434a50), [#3985](https://github.com/heygen-com/hyperframes/pull/3985)). - **Studio Server:** Serve render downloads and file responses for non-Latin-1 filenames using RFC 6266 `Content-Disposition` headers ([b599f031a](https://github.com/heygen-com/hyperframes/commit/b599f031a929f55ade71246a7b3c5701b311aa46), [#3984](https://github.com/heygen-com/hyperframes/pull/3984)). -- **Studio Server:** Fix preview failures for compositions whose file path contains non-Latin-1 characters by hashing sub-composition paths into ASCII-safe ETags ([edb6e87ba](https://github.com/heygen-com/hyperframes/commit/edb6e87ba7fa8fa49039dc4ccbe5733cf58afdae), [#3982](https://github.com/heygen-com/hyperframes/pull/3982)). +- **Studio Server:** Fix a Studio preview server crash for compositions whose file path contains non-Latin-1 characters by hashing sub-composition paths into ASCII-safe ETags ([edb6e87ba](https://github.com/heygen-com/hyperframes/commit/edb6e87ba7fa8fa49039dc4ccbe5733cf58afdae), [#3982](https://github.com/heygen-com/hyperframes/pull/3982)). ## Internal diff --git a/releases/v0.8.42.md b/releases/v0.8.42.md index feb8905ad3..8a00d306e4 100644 --- a/releases/v0.8.42.md +++ b/releases/v0.8.42.md @@ -10,7 +10,7 @@ Studio preview and render downloads now work for compositions and files with non - **Engine:** Tone-map HDR sources before frame extraction on forced `--sdr` renders, fixing the cool color cast versus the Studio preview ([ef48485b9](https://github.com/heygen-com/hyperframes/commit/ef48485b919c69735659a09dc01aa21aa73a4f51), [#3981](https://github.com/heygen-com/hyperframes/pull/3981)). - **CLI:** Report HDR auto-promotion in `check --json` with the triggering asset and resulting output pipeline, and print one render warning when it fires ([5d2478c6f](https://github.com/heygen-com/hyperframes/commit/5d2478c6fae413f28c6106ca4359b952e7434a50), [#3985](https://github.com/heygen-com/hyperframes/pull/3985)). - **Studio Server:** Serve render downloads and file responses for non-Latin-1 filenames using RFC 6266 `Content-Disposition` headers ([b599f031a](https://github.com/heygen-com/hyperframes/commit/b599f031a929f55ade71246a7b3c5701b311aa46), [#3984](https://github.com/heygen-com/hyperframes/pull/3984)). -- **Studio Server:** Fix preview failures for compositions whose file path contains non-Latin-1 characters by hashing sub-composition paths into ASCII-safe ETags ([edb6e87ba](https://github.com/heygen-com/hyperframes/commit/edb6e87ba7fa8fa49039dc4ccbe5733cf58afdae), [#3982](https://github.com/heygen-com/hyperframes/pull/3982)). +- **Studio Server:** Fix a Studio preview server crash for compositions whose file path contains non-Latin-1 characters by hashing sub-composition paths into ASCII-safe ETags ([edb6e87ba](https://github.com/heygen-com/hyperframes/commit/edb6e87ba7fa8fa49039dc4ccbe5733cf58afdae), [#3982](https://github.com/heygen-com/hyperframes/pull/3982)). ## Internal