-
Notifications
You must be signed in to change notification settings - Fork 373
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
Adds scrypt support in node 12 #739
Conversation
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 LGTM 👍
Let's hold off on merging until Node 8 support is officially terminated next month.
Node 8's end of life is December 31, 2019. I guess the earliest business day we can merge is 1/2/2020. Or do you prefer some time later that month? |
Gcloud (Firestore, Storage etc) has a plan to drop Node8 support sometime in mid January. Let's align with their timetable. |
Firestore already dropped support for Node 8. See #921 |
Replaces scrypt npm module (no longer maintained and doesn't work for node 12) for testing standard scrypt with `crypto.scryptSync` which has been supported since node v10.5.
It's taken a while, but we are finally ready to drop Node 8 support. @bojeil-google I've rebased your branch against latest master, and updated the GitHub Actions configs to drop Node 8 support. Can I ask you to take a quick look? |
Related to #921 |
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
Replaces scrypt npm module (no longer maintained and
doesn't work for node 12) for testing standard scrypt with
crypto.scryptSync
which has been supported since node v10.5.