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 examples/express/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"dependencies": {
"node-file-router": "workspace:../../dist",
"express": "4.19.2"
"express": "4.22.1"
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Lockfile not updated to match new dependency version

The package.json was updated to require express 4.22.1, but the pnpm-lock.yaml file wasn't regenerated and still references version 4.19.2. This creates an inconsistency that could cause CI failures with --frozen-lockfile, and more critically, the security vulnerabilities this PR aims to fix may not actually be resolved if the old version gets installed from the stale lockfile. The lockfile needs to be regenerated to complete this dependency upgrade.

Fix in Cursor Fix in Web

},
"devDependencies": {
"ts-node": "10.9.1",
Expand Down