Skip to content
Merged
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
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@
"axios": ">=1.8.2",
"form-data": ">=4.0.4",
"@types/d3-dispatch": "3.0.6",
"@types/linkify-it": "3.0.5"
"@types/linkify-it": "3.0.5",
"ip": ">=1.1.9"
Copy link

Copilot AI Jan 8, 2026

Choose a reason for hiding this comment

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

The version constraint >=1.1.9 will allow the vulnerable version 2.0.0 to be installed. According to the PR description and CVE-2023-42282, version 2.0.0 is vulnerable while versions 1.1.9 and 2.0.1 are patched. The constraint should be updated to either 1.1.9 (to pin to this specific version) or ^1.1.9 (to allow patch updates in the 1.x range but exclude 2.0.0), or use a more explicit constraint like >=1.1.9 <2.0.0 || >=2.0.1 to allow both patched versions while excluding the vulnerable 2.0.0.

Suggested change
"ip": ">=1.1.9"
"ip": ">=1.1.9 <2.0.0 || >=2.0.1"

Copilot uses AI. Check for mistakes.
},
"browser": {
"fs": false,
Expand Down