fix: override qs to 6.14.1 to resolve CVE-2025-15284 (Dependabot #401)#1573
Merged
jmfernandezalba merged 2 commits intomainfrom Feb 10, 2026
Merged
fix: override qs to 6.14.1 to resolve CVE-2025-15284 (Dependabot #401)#1573jmfernandezalba merged 2 commits intomainfrom
jmfernandezalba merged 2 commits intomainfrom
Conversation
Co-Authored-By: Penelope <penelope@paella.dev>
|
Contributor
Author
Original prompt from Penelope |
Contributor
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
jmfernandezalba
approved these changes
Feb 10, 2026
…rides Co-Authored-By: Penelope <penelope@paella.dev>
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.
Description
Resolves Dependabot alert #401 — CVE-2025-15284 (High severity, CVSS 7.5).
qs@6.13.0is a transitive dependency pinned byexpress@4.21.1andbody-parser@1.20.3. The vulnerability allowsarrayLimitbypass via bracket notation, enabling DoS through memory exhaustion. The fix is inqs@6.14.1.Since
express@4.21.1pinsqsto exactly6.13.0, a direct upgrade isn't possible without jumping to Express 5.x (breaking). Instead, this adds a pnpm override to forceqsto6.14.1, consistent with how other transitive dependency vulnerabilities are already handled in this repo.Human review checklist
"qs": "6.14.1"override is preferred over a scoped"qs@6": "6.14.1"— only one major version (6.x) exists in the tree, so both are equivalent todaypackage.jsonandpnpm-lock.yamlchanged; no files underpackages/were modifiedTest plan
pnpm lint— passespnpm test:vitest— all 11 test suites pass (48 tests total)qs@6.14.1in all three locations (body-parser, express, standalone)Package updates
No published packages are affected —
qsis only a transitive dependency ofexpress/body-parserused in demo apps. No changeset required.Link to Devin run: https://crossmint.devinenterprise.com/sessions/9ce066e103f044e9af55e7ea756bc368
Requested by: Penelope (@soinclined)