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
2 changes: 1 addition & 1 deletion authentication/source/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"dependencies": {
"@aps_sdk/autodesk-sdkmanager": "^1.0.0",
"@types/node": "^20.9.0",
"axios": "^1.7.8"
"axios": "^1.13.5"
Copy link

Copilot AI Feb 13, 2026

Choose a reason for hiding this comment

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

package-lock.json under authentication/source/ still pins axios to ^1.7.8 / resolved 1.7.9, so this change in package.json won’t actually take effect for consumers relying on the lockfile and may not remediate the vulnerability. Please run npm install (or equivalent) in authentication/source and commit the updated package-lock.json so axios is locked to 1.13.5+ and the tree is consistent.

Suggested change
"axios": "^1.13.5"
"axios": "1.13.5"

Copilot uses AI. Check for mistakes.
},
"devDependencies": {
"prettier": "^2.8.8",
Expand Down