Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where do I find list of breaking changes for Any NodeJS version

I am currently using node 6.1 in my project. I want to upgrade it to latest stable version now. Before doing that I want to know what are the breaking changes introduced in all the versions in between 6 to 12

Is there any place I can get all these breaking changes for the node versions.

like image 969
Naresh Joshi Avatar asked Sep 13 '25 21:09

Naresh Joshi


2 Answers

I've found this page to be the most helpful list of all major/minor/patch changes:

https://nodejs.org/en/blog/release/

example: https://nodejs.org/en/blog/release/v16.0.0/

like image 127
d-_-b Avatar answered Sep 15 '25 13:09

d-_-b


Another good resource to find changes to all the different major versions, is the changelog archive on nodejs' github:

https://github.com/nodejs/node/tree/main/doc/changelogs

like image 45
nover Avatar answered Sep 15 '25 13:09

nover