fix(openclaw): bump protobufjs to >=7.5.5 (GHSA-xq3m-2v4x-88gg)#5012
Merged
kk2211 merged 1 commit intomem0ai:mainfrom Apr 29, 2026
Merged
fix(openclaw): bump protobufjs to >=7.5.5 (GHSA-xq3m-2v4x-88gg)#5012kk2211 merged 1 commit intomem0ai:mainfrom
kk2211 merged 1 commit intomem0ai:mainfrom
Conversation
Adds a pnpm.overrides entry pinning the transitive protobufjs (pulled in via mem0ai -> @google/genai) to ^7.5.5 to remediate GHSA-xq3m-2v4x-88gg / CVE-2026-41242 (code injection via malicious protobuf type fields, CVSS 9.4). Lockfile resolves to 7.5.6. Build and tests verified locally (420/420 passing).
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
kartik-mem0
approved these changes
Apr 29, 2026
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.
Linked Issue
N/A — security advisory remediation. Reported via Slack: bump npm
protobufjsto>=7.5.5to address GHSA-xq3m-2v4x-88gg / CVE-2026-41242.Description
openclaw/pnpm-lock.yamlwas resolvingprotobufjs@7.5.4, which is vulnerable to GHSA-xq3m-2v4x-88gg — code injection via malicious protobuf type fields (CVSS 9.4, CWE-94). Fixed in7.5.5.protobufjsis a transitive dependency:@mem0/openclaw-mem0→mem0ai→@google/genai@1.45.0→protobufjs. Since it isn't a direct dep, the minimal-blast-radius fix is apnpm.overridesconstraint pinning vulnerable ranges to a patched version.Changes
openclaw/package.json— adds:openclaw/pnpm-lock.yaml— regenerated.protobufjsnow resolves to7.5.6(patched).No source changes; no public API changes.
Type of Change
Breaking Changes
None.
protobufjs@7.5.6is semver-compatible with7.5.4(the consumer is@google/genai, which declaresprotobufjsas a runtime dep without a tight version pin).Test Coverage
Verified locally in
openclaw/:pnpm installprotobufjs@7.5.6in lockfile; no7.5.4references remainpnpm run buildpnpm run testChecklist