Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
"axios@<1.8.2": "^1.13.2",
"braces@<3.0.3": "^3.0.3",
"semver@<5.7.2": "^5.7.2",
"qs": ">=6.14.1",
Copy link

Copilot AI Jan 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The override pattern for qs is inconsistent with other security overrides in this file. Other security-related overrides use range-based patterns (e.g., axios@<1.8.2, braces@<3.0.3) to target vulnerable versions specifically, while this override uses a bare package name without a vulnerable version range. This means it will force ALL versions of qs to be upgraded, even if they're already at safe versions, which is more aggressive than necessary.

Consider using a pattern like qs@<6.14.1: ">=6.14.1" to match the convention used by other overrides in this file. This would only affect vulnerable versions while being more explicit about which versions are being replaced.

Suggested change
"qs": ">=6.14.1",
"qs@<6.14.1": ">=6.14.1",

Copilot uses AI. Check for mistakes.
"glob@>=10.2.0 <10.5.0": "^10.5.0",
"node-forge@<1.3.2": "^1.3.2",
"vite@>=6.0.0 <6.4.1": "^6.4.1"
Expand Down
35 changes: 11 additions & 24 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading