-
Notifications
You must be signed in to change notification settings - Fork 0
[Snyk] Security upgrade express-session from 1.15.6 to 1.18.2 #63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,7 +18,7 @@ | |
| "connect-redis": "^3.4.0", | ||
| "cors": "^2.8.5", | ||
| "express": "^4.16.4", | ||
| "express-session": "^1.15.6", | ||
| "express-session": "^1.18.2", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Upgrading This mismatch can lead to build failures, incorrect autocompletion, and potential runtime errors if the API has changed between versions. To maintain type safety, please upgrade the types package as well. You should update |
||
| "graphql": "^14.1.1", | ||
| "graphql-query-complexity": "^0.2.3", | ||
| "ioredis": "^4.6.2", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As noted in the pull request description, the
package-lock.jsonfile has not been updated. This is a critical omission, as the lock file ensures that the exact same dependency versions are installed across all environments, guaranteeing reproducible builds.Without an updated lock file, the security fix this PR intends to apply might not be consistently installed. Please run
npm installto generate the updatedpackage-lock.jsonand commit it to this branch before merging.