fix(config): accept "openclaw" as browser profile driver in Zod schema#39374
Merged
altaywtf merged 4 commits intoopenclaw:mainfrom Mar 8, 2026
Merged
fix(config): accept "openclaw" as browser profile driver in Zod schema#39374altaywtf merged 4 commits intoopenclaw:mainfrom
altaywtf merged 4 commits intoopenclaw:mainfrom
Conversation
Contributor
Greptile SummaryThis PR correctly fixes a schema validation gap introduced by the project rename from "clawd" to "openclaw" — the Zod schema now accepts Key finding:
Confidence Score: 3/5
Last reviewed commit: 1c17335 |
|
Fixed — added |
ac6934f to
cc4b702
Compare
2fa761e to
0eba5ab
Compare
Member
|
Merged via squash.
Thanks @gambletan! |
This was referenced Mar 8, 2026
Saitop
pushed a commit
to NomiciAI/openclaw
that referenced
this pull request
Mar 8, 2026
openclaw#39374) Merged via squash. Prepared head SHA: 0eba5ab Co-authored-by: gambletan <[email protected]> Co-authored-by: altaywtf <[email protected]> Reviewed-by: @altaywtf
GordonSH-oss
pushed a commit
to GordonSH-oss/openclaw
that referenced
this pull request
Mar 9, 2026
openclaw#39374) Merged via squash. Prepared head SHA: 0eba5ab Co-authored-by: gambletan <[email protected]> Co-authored-by: altaywtf <[email protected]> Reviewed-by: @altaywtf
jenawant
pushed a commit
to jenawant/openclaw
that referenced
this pull request
Mar 10, 2026
openclaw#39374) Merged via squash. Prepared head SHA: 0eba5ab Co-authored-by: gambletan <[email protected]> Co-authored-by: altaywtf <[email protected]> Reviewed-by: @altaywtf
4 tasks
sauerdaniel
pushed a commit
to sauerdaniel/openclaw
that referenced
this pull request
Mar 11, 2026
openclaw#39374) Merged via squash. Prepared head SHA: 0eba5ab Co-authored-by: gambletan <[email protected]> Co-authored-by: altaywtf <[email protected]> Reviewed-by: @altaywtf
dhoman
pushed a commit
to dhoman/chrono-claw
that referenced
this pull request
Mar 11, 2026
openclaw#39374) Merged via squash. Prepared head SHA: 0eba5ab Co-authored-by: gambletan <[email protected]> Co-authored-by: altaywtf <[email protected]> Reviewed-by: @altaywtf
alexey-pelykh
pushed a commit
to remoteclaw/remoteclaw
that referenced
this pull request
Mar 14, 2026
openclaw#39374) Merged via squash. Prepared head SHA: 0eba5ab Co-authored-by: gambletan <[email protected]> Co-authored-by: altaywtf <[email protected]> Reviewed-by: @altaywtf (cherry picked from commit e5fdfec)
alexey-pelykh
added a commit
to remoteclaw/remoteclaw
that referenced
this pull request
Mar 14, 2026
…ile driver in Zod schema (#1292) * fix(config): accept "openclaw" as browser profile driver in Zod schema (openclaw#39374) Merged via squash. Prepared head SHA: 0eba5ab Co-authored-by: gambletan <[email protected]> Co-authored-by: altaywtf <[email protected]> Reviewed-by: @altaywtf (cherry picked from commit e5fdfec) * fix: update test expectations for rebranded browser driver enum The upstream cherry-pick added "openclaw" as a driver option, which the fork rebrand converted to "remoteclaw". The test expectations auto-merged with stale "openclaw" literal — update to match the rebranded enum value. --------- Co-authored-by: gambletan <[email protected]>
senw-developers
pushed a commit
to senw-developers/va-openclaw
that referenced
this pull request
Mar 17, 2026
openclaw#39374) Merged via squash. Prepared head SHA: 0eba5ab Co-authored-by: gambletan <[email protected]> Co-authored-by: altaywtf <[email protected]> Reviewed-by: @altaywtf
V-Gutierrez
pushed a commit
to V-Gutierrez/openclaw-vendor
that referenced
this pull request
Mar 17, 2026
openclaw#39374) Merged via squash. Prepared head SHA: 0eba5ab Co-authored-by: gambletan <[email protected]> Co-authored-by: altaywtf <[email protected]> Reviewed-by: @altaywtf
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
"openclaw"as an accepted value forbrowser.profiles.*.driverin the Zod config schema"clawd"as accepted for backwards compatibilityProblem
The project was renamed from "clawd" to "openclaw" but the browser profile driver schema was not updated. The TypeScript type definition (
types.browser.ts:7) already definesdriver?: "openclaw" | "extension", and runtime code defaults to"openclaw", but the Zod schema only accepted"clawd"— causing validation errors for users who setdriver: "openclaw".Fixes #35620
Test plan
openclaw config set 'browser.profiles.default.driver' openclawshould succeed🤖 Generated with Claude Code