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
22 changes: 3 additions & 19 deletions package-lock.json

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

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,8 @@
"karma-jasmine-html-reporter": "~2.1.0",
"prettier": "^3.6.0",
"typescript": "~5.9.0"
},
"overrides": {
"qs": ">=6.15.2"
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

medium

Using >=6.15.2 for the override is effective for resolving the security alert, but it allows for potential automatic upgrades to future major versions (e.g., 7.0.0). Since qs major versions often include breaking changes in how query strings are parsed or stringified, it is safer to use a caret range like ^6.15.2. This ensures you get security patches and minor updates within the version 6 ecosystem while maintaining API compatibility.

Suggested change
"qs": ">=6.15.2"
"qs": "^6.15.2"

}
}
Loading