-
Notifications
You must be signed in to change notification settings - Fork 100
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
Update npm packages including express #400
Conversation
Hey @irfanh94, thank you so much for your contribution. I just updated dependencies myself, but I did not update |
cc: @notaphplover |
"express" | ||
], | ||
"dependencies": { | ||
"express": "4.21.1", |
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.
This should be a peer dependency I'm afraid. Let's allow any minor:
"express": "^4.21.1",
"dependencies": { | ||
"express": "4.21.1", | ||
"http-status-codes": "2.3.0", | ||
"inversify": "^6.0.3" |
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.
This should be a peer dependency as well.
@@ -11,4 +11,4 @@ export * from './debug'; | |||
export * from './httpResponseMessage'; | |||
export * from './content/stringContent'; | |||
export * from './content/jsonContent'; | |||
export * from './content/httpContent'; | |||
export * from './content/httpContent'; |
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.
Let's keep the line feed
"devDependencies": { | ||
"@types/async": "3.2.24", | ||
"@types/cookie-parser": "1.4.7", | ||
"@types/express": "4.17.21", |
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.
Let's allow any minor:
"@types/express": "^4.17.21",
This reverts commit a0ee887.
Description
This PR updates several npm packages, with the main focus on updating the
express
package to its latest version. It ensures compatibility with the updated dependencies and applies minor fixes where necessary to avoid potential issues caused by outdated packages.Related Issue
No specific issue is linked to this PR. This update is primarily to maintain the project's health by keeping dependencies up to date.
Motivation and Context
Keeping dependencies up to date is important for security, performance, and compatibility reasons. The main motivation behind this PR is to upgrade
express
and ensure that the project continues to function smoothly with the latest version.How Has This Been Tested?
npm run test
, and all tests passed successfully.Types of changes
Checklist: