-
Notifications
You must be signed in to change notification settings - Fork 47
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
fastify-session integration #421
Conversation
Tests are working fine on local. I am investigating to see why the CI is failing |
about the build failing, I don't know what the problem is but I would try removing the lockfile. having a lockfile which is by its nature not portable across node versions doesn't seem like a good idea. also in general we don't use lock files in repos containing packages |
well we have this PR and we don't understand why it's failing either :) |
Good thing we can rule out developers using different versions of the packages dependencies as a cause then! I don't think we should randomly pull levers to see if it fixes this PR, we should look at the fail! Here's the failure message:
My guess is that one of the changes in this PR changes the type of the |
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.
amazing work!
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.
Thanks for putting all this work in, just a couple more comments
… into feat-fastify-session
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.
lgtm
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.
@sameer-coder > CI currently fails due to npm lock file version conflicts
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.
LGTM
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.
✌️
I think this PR should be good to merge. |
This PR adds support for
fastify-session
.PR includes:
Closes #319
Closes #376