Skip to content
Open
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
2 changes: 1 addition & 1 deletion packages/env/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"node": ">=14"
},
"dependencies": {
"axios": "^0.24.0",
"axios": "^1.13.5",
Copy link

Copilot AI Feb 15, 2026

Choose a reason for hiding this comment

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

This security upgrade is incomplete. The monorepo has multiple packages that depend on axios 0.24.0, including packages/cli and packages/youtill. Both of these packages need to be upgraded to the same axios version to fix the security vulnerability consistently across the codebase. Additionally, packages/cli depends on gritenv (this package), which will create a dependency conflict: cli will require both axios@^0.24.0 (its direct dependency) and axios@^1.13.5 (via gritenv). All packages using axios should be upgraded together in this PR.

Suggested change
"axios": "^1.13.5",
"axios": "^0.24.0",

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Feb 15, 2026

Choose a reason for hiding this comment

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

The PR description indicates that the yarn.lock file was not updated successfully. This means the lockfile still references axios 0.24.0, and the security vulnerability will not actually be fixed until the lockfile is updated. The yarn.lock must be successfully updated and included in this PR for the security fix to take effect. Run 'yarn install' to update the lockfile before merging.

Copilot uses AI. Check for mistakes.
"chalk": "^4.1.2",
"chokidar": "^3.5.2",
"commander": "^8.3.0",
Expand Down
Loading