fix(plugins): pin browser plugin zod to exact 4.3.6 + refresh lockfile#5
Merged
shivammittal274 merged 1 commit intomainfrom Apr 29, 2026
Merged
fix(plugins): pin browser plugin zod to exact 4.3.6 + refresh lockfile#5shivammittal274 merged 1 commit intomainfrom
shivammittal274 merged 1 commit intomainfrom
Conversation
The previous PR (#4) used `"zod": "^3.25.76"` for the browser plugin, which the runtime-deps staging script rejected: Error: failed to stage bundled runtime deps for browser: Cause: runtime dependency zod must resolve to an exact installed version, got: ^3.25.76 The staging script requires runtime-deps to be pinned to the exact version in the workspace lockfile. The root project pins `"zod": "^4.3.6"` and the lockfile resolves to `[email protected]` — so this change pins the browser plugin's zod to the same exact `4.3.6`. Also refreshes pnpm-lock.yaml so the new browser-plugin → zod link plus the new openrouter/moonshot → @mariozechner/pi-ai links from #4 are recorded in the workspace graph (PR #4 was merged with package.json changes only; the lockfile entries for those new deps were missing, which is what tripped the staging closure check).
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.
Summary
Image build for #4 failed with:
Two issues with my earlier change:
"zod": "^3.25.76"→"zod": "4.3.6".zod ^4.3.6(resolves to4.3.6), and PR fix(plugins): stage runtime deps for openrouter/openai/moonshot + add zod for browser #4 added new deps without updatingpnpm-lock.yaml. Ranpnpm installto record:extensions/browser → [email protected]extensions/moonshot → @mariozechner/[email protected]([email protected]...)extensions/openrouter → @mariozechner/[email protected]([email protected]...)Test plan
browseros-openclaw-image.ymlagainstmainafter merge → build should now pass the runtime-deps staging closure checkghcr.io/browseros-ai/openclaw:2026.4.28-browseros.4🤖 Generated with Claude Code