The following block in package.json restricts Node 26 from use:
"engines": {
"node": ">= 24.13.0 < 25"
},
Is this by policy, that we only support the currently released LTS or is there a known incompatibility? Node 26 will become LTS in a couple months from time of writing. What steps do we need to take to validate that Node 26 is compatible and when do we want to enable Node 26 support given Node's lifecycle?
The following block in package.json restricts Node 26 from use:
Is this by policy, that we only support the currently released LTS or is there a known incompatibility? Node 26 will become LTS in a couple months from time of writing. What steps do we need to take to validate that Node 26 is compatible and when do we want to enable Node 26 support given Node's lifecycle?