[chore]: patch worker and remotion dependency issues - #58
Open
Caezarr wants to merge 1 commit into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🎯 Objective
Patch published dependency vulnerabilities in the Worker and Remotion packages, and restore a valid Remotion package set for local renders.
🔍 Problem Found
worker/package.json:14-15allowedhonoto resolve below the patched range for four published advisories affecting Hono request handling and middleware behavior.remotion/package.json:16-33let the marketing video package resolve vulnerable transitiveesbuildandwsversions, and it declaredzod^4.4.3even though Remotion currently expects4.3.6exactly.pnpm exec remotion compositions src/index.tssurfaced the version mismatch before Chrome download.✅ Changes Made
honoresolves to4.12.25inworker/pnpm-lock.yaml.pnpm.overridesinremotion/package.jsonto force patchedesbuild@0.28.1andws@8.20.1across the Remotion dependency graph.@remotion/cli,@remotion/google-fonts, andremotionto the same exact4.0.459version to avoid future package drift.zodto4.3.6, matching Remotion's expected version and removing the CLI compatibility warning.🧪 How to Test
cd worker && pnpm typecheck && pnpm audit --prodcd remotion && pnpm lint && pnpm audit --prodcd remotion && pnpm exec remotion versions --log=verbosecd landing && pnpm build,pnpm typecheck,pnpm build, andcargo testfrom the desktop app surfaces.None expected. This is a dependency-only patch plus exact-version alignment for Remotion.
📎 References