-
Notifications
You must be signed in to change notification settings - Fork 83
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
Reaction Admin - Upgrade node version to 18 #483
base: trunk
Are you sure you want to change the base?
Conversation
Signed-off-by: Sujith <[email protected]>
Signed-off-by: Sujith <[email protected]>
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 didn't test it, but are you sure the Meteor build supports Node 18? I thought they did not yet. It also isn't on the latest version of Meteor, so it might be a good idea to update Meteor, too.
If everything works, then I think it's fine.
You might want to also update the NPM version in the Dockerfile to the latest 9.x
I think Meteor has its own internal version of Node so as long as it starts I think we're ok? Meteor itself is usually years behind on their support of Node so I bet the current version is 16.x but we should keep Meteor up to date. Hopefully this thing goes away this year. |
Yes, it seems the the internal Node version managed by Meteor is different from what we have in environment. Our current Meteor is v2.5. As per this changelog entry v2.5 is on Node 14.18.1. This matches with the output of So, similar to what we discussed for Jest/Node upgrade, I shall go ahead and straight away test with Meteor v2.10 and fix any broken pieces and then go through the breaking changes list to ensure nothing major is left out. |
I have not worked with Meteor much lately, but my memory is that the internal Node.js version is for development only, and when you build the app for prod, you then need to correctly match that version. Their docs seem to indicate that is still true.
Errors would only happen at run time, but if Meteor isn't using any deprecated APIs it might be fine. It's sad that they are so far behind, but it looks like their 3.0 release is all about removing Fibers and getting on to latest Node. |
Resolves #6396
Impact: major
Type: feature|chore
Issue
Reaction API is being upgraded to Node18. Make the same upgrade for Admin
Solution
Updated the Node version in Dockerfile to node:18.10.0-slim
Updated the CircleCI image from circleci/node:12.16.1-stretch to cimg/node:18.10.0
Breaking changes
Old versions Node 14/15 no longer supported
Testing
All automated tests should pass
Able to perform the basic admin activities related to adding products, publishing, viewing order etc.