1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Drop EOL Node 14

This commit is contained in:
Rotzbua 2023-09-04 14:58:33 +02:00
parent 2478a7194e
commit b0ac9d64dd
No known key found for this signature in database
GPG Key ID: C69022D529C17845
5 changed files with 5 additions and 5 deletions

View File

@ -122,6 +122,6 @@
"supertest": "6.3.3"
},
"engines": {
"node": ">=14"
"node": ">=16"
}
}

View File

@ -33,7 +33,7 @@ if (NODE_MAJOR_VERSION > 14) {
function checkVersion(userSettings) {
var semver = require('semver');
if (!semver.satisfies(process.version,">=14.0.0")) {
if (!semver.satisfies(process.version,">=16.0.0")) {
// TODO: in the future, make this a hard error.
// var e = new Error("Unsupported version of Node.js");
// e.code = "unsupported_version";

View File

@ -47,6 +47,6 @@
"bcrypt": "5.1.0"
},
"engines": {
"node": ">=14"
"node": ">=16"
}
}

View File

@ -346,7 +346,7 @@ httpsPromise.then(function(startupHttps) {
} catch(err) {
if (err.code == "unsupported_version") {
console.log("Unsupported version of Node.js:",process.version);
console.log("Node-RED requires Node.js v8.9.0 or later");
console.log("Node-RED requires Node.js v16 or later");
} else {
console.log("Failed to start server:");
if (err.stack) {

View File

@ -19,6 +19,6 @@
}
},
"engines": {
"node": ">=12.x"
"node": ">=16"
}
}