-
-
Notifications
You must be signed in to change notification settings - Fork 17.2k
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
deps: upgrade cookie, cookie-parser and cookie-session #6113
base: master
Are you sure you want to change the base?
Conversation
if (opts.maxAge === null){ | ||
delete opts.maxAge; | ||
} | ||
|
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.
Is this somehow related to the updates? If so, please document why.
@@ -36,7 +36,7 @@ | |||
"body-parser": "^2.0.1", | |||
"content-disposition": "^1.0.0", | |||
"content-type": "~1.0.4", | |||
"cookie": "0.7.1", | |||
"cookie": "1.0.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.
@blakeembrey can you comment on this? I believe the breaking changes in 1.x are passed through and so must go out with a major of express, but maybe I am wrong.
"cookie-parser": "1.4.6", | ||
"cookie-session": "2.0.0", | ||
"cookie-parser": "1.4.7", | ||
"cookie-session": "2.1.0", |
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.
For all dep updates we are moving to ^
prefixes. This will need to be updated as well, but we prefer doing this in individual commits, so it is unlikely this PR would merge. You may want to open these independently so they can be merged.
Related: #6103 (comment)