From c3554dcffe04aff8976dcd8bcc753db4d6c56cae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20=C3=81ngel?= Date: Fri, 12 Jun 2026 00:59:17 -0400 Subject: [PATCH] fix(studio): disable keyframes feature flag by default, release v0.6.93 --- 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/player/package.json | 2 +- packages/producer/package.json | 2 +- packages/shader-transitions/package.json | 2 +- packages/studio/package.json | 2 +- .../studio/src/components/editor/manualEditingAvailability.ts | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/packages/aws-lambda/package.json b/packages/aws-lambda/package.json index d863fee37..a403c2d99 100644 --- a/packages/aws-lambda/package.json +++ b/packages/aws-lambda/package.json @@ -1,6 +1,6 @@ { "name": "@hyperframes/aws-lambda", - "version": "0.6.92", + "version": "0.6.93", "description": "AWS Lambda adapter for HyperFrames distributed rendering — handler, client-side SDK, and CDK construct.", "repository": { "type": "git", diff --git a/packages/cli/package.json b/packages/cli/package.json index da2003620..418d8f393 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@hyperframes/cli", - "version": "0.6.92", + "version": "0.6.93", "description": "HyperFrames CLI — create, preview, and render HTML video compositions", "repository": { "type": "git", diff --git a/packages/core/package.json b/packages/core/package.json index 5e974014b..f1fc83417 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@hyperframes/core", - "version": "0.6.92", + "version": "0.6.93", "description": "", "repository": { "type": "git", diff --git a/packages/engine/package.json b/packages/engine/package.json index 82b8cafb2..04c92d7e0 100644 --- a/packages/engine/package.json +++ b/packages/engine/package.json @@ -1,6 +1,6 @@ { "name": "@hyperframes/engine", - "version": "0.6.92", + "version": "0.6.93", "description": "Seekable web page to video rendering engine (Puppeteer + FFmpeg)", "repository": { "type": "git", diff --git a/packages/gcp-cloud-run/package.json b/packages/gcp-cloud-run/package.json index 7ac042f8a..55cbbd7b2 100644 --- a/packages/gcp-cloud-run/package.json +++ b/packages/gcp-cloud-run/package.json @@ -1,6 +1,6 @@ { "name": "@hyperframes/gcp-cloud-run", - "version": "0.6.92", + "version": "0.6.93", "description": "Google Cloud Run + Workflows adapter for HyperFrames distributed rendering — request handler, client-side SDK, and Terraform module.", "repository": { "type": "git", diff --git a/packages/player/package.json b/packages/player/package.json index edfb5b13c..a57325616 100644 --- a/packages/player/package.json +++ b/packages/player/package.json @@ -1,6 +1,6 @@ { "name": "@hyperframes/player", - "version": "0.6.92", + "version": "0.6.93", "description": "Embeddable web component for HyperFrames compositions", "repository": { "type": "git", diff --git a/packages/producer/package.json b/packages/producer/package.json index 2f8f95158..a31d8c390 100644 --- a/packages/producer/package.json +++ b/packages/producer/package.json @@ -1,6 +1,6 @@ { "name": "@hyperframes/producer", - "version": "0.6.92", + "version": "0.6.93", "description": "HTML-to-video rendering engine using Chrome's BeginFrame API", "repository": { "type": "git", diff --git a/packages/shader-transitions/package.json b/packages/shader-transitions/package.json index 559c9f827..93145554e 100644 --- a/packages/shader-transitions/package.json +++ b/packages/shader-transitions/package.json @@ -1,6 +1,6 @@ { "name": "@hyperframes/shader-transitions", - "version": "0.6.92", + "version": "0.6.93", "description": "WebGL shader transitions for HyperFrames compositions", "repository": { "type": "git", diff --git a/packages/studio/package.json b/packages/studio/package.json index 2ba4c9e63..e3ce04b78 100644 --- a/packages/studio/package.json +++ b/packages/studio/package.json @@ -1,6 +1,6 @@ { "name": "@hyperframes/studio", - "version": "0.6.92", + "version": "0.6.93", "description": "", "repository": { "type": "git", diff --git a/packages/studio/src/components/editor/manualEditingAvailability.ts b/packages/studio/src/components/editor/manualEditingAvailability.ts index 6bbc57ddd..f7c8de005 100644 --- a/packages/studio/src/components/editor/manualEditingAvailability.ts +++ b/packages/studio/src/components/editor/manualEditingAvailability.ts @@ -74,7 +74,7 @@ export const STUDIO_GSAP_PANEL_ENABLED = resolveStudioBooleanEnvFlag( export const STUDIO_KEYFRAMES_ENABLED = resolveStudioBooleanEnvFlag( env, ["VITE_STUDIO_ENABLE_KEYFRAMES", "VITE_STUDIO_KEYFRAMES_ENABLED"], - true, + false, ); export const STUDIO_RAZOR_TOOL_ENABLED = resolveStudioBooleanEnvFlag(