Breaking changes from V10 -> V16 ? #42622
-
I am gathering information for breaking changes from Node 10 to Node 16, and as i was going through the changelog, I couldn't find anything really. Am i correct to assume that there is not really any breaking changes going from 10 to 16? Or am i reading it wrong? Background: I need to update a loopback 3 project from using node 10 to node 16. And was just checking for any breaking changes in node. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
There are many breaking changes between Node.js 10 to 16. To find them in the changelog, you'd need to review the semver major sections of all of the initial releases (vN.0.0) between Node.js 10 and 16, such as https://nodejs.org/en/blog/release/v11.0.0/#semver-major-commits, https://nodejs.org/en/blog/release/v12.0.0/#semver-major-commits, etc. It may be easier to try to upgrade in steps versus jumping straight from Node.js 10 to 16, as you'd have a smaller subset of the breaking changes to review at each step. |
Beta Was this translation helpful? Give feedback.
-
Surely if you want to upgrade your project from the node version 10 to the v16 you need to change few things. |
Beta Was this translation helpful? Give feedback.
There are many breaking changes between Node.js 10 to 16. To find them in the changelog, you'd need to review the semver major sections of all of the initial releases (vN.0.0) between Node.js 10 and 16, such as https://nodejs.org/en/blog/release/v11.0.0/#semver-major-commits, https://nodejs.org/en/blog/release/v12.0.0/#semver-major-commits, etc.
It may be easier to try to upgrade in steps versus jumping straight from Node.js 10 to 16, as you'd have a smaller subset of the breaking changes to review at each step.