@cubejs-backend/shared
Advanced tools
Comparing version 0.28.55 to 0.29.0
@@ -6,2 +6,23 @@ # Change Log | ||
# [0.29.0](https://github.com/cube-js/cube.js/compare/v0.28.67...v0.29.0) (2021-12-14) | ||
### Reverts | ||
* Revert "BREAKING CHANGE: 0.29 (#3809)" (#3811) ([db005ed](https://github.com/cube-js/cube.js/commit/db005edc04d48e8251250ab9d0e19f496cf3b52b)), closes [#3809](https://github.com/cube-js/cube.js/issues/3809) [#3811](https://github.com/cube-js/cube.js/issues/3811) | ||
* BREAKING CHANGE: 0.29 (#3809) ([6f1418b](https://github.com/cube-js/cube.js/commit/6f1418b9963774844f341682e594601a56bb0084)), closes [#3809](https://github.com/cube-js/cube.js/issues/3809) | ||
### BREAKING CHANGES | ||
* Drop support for Node.js 10 (12.x is a minimal version) | ||
* Upgrade Node.js to 14 for Docker images | ||
* Drop support for Node.js 15 | ||
## [0.28.55](https://github.com/cube-js/cube.js/compare/v0.28.54...v0.28.55) (2021-11-12) | ||
@@ -8,0 +29,0 @@ |
@@ -12,6 +12,6 @@ "use strict"; | ||
const minor = parseInt(semver[1], 10); | ||
if (major < 10 || (major === 10 && minor < 8)) { | ||
if (major < 12 || major === 15) { | ||
console.error(color_1.default.red(`You are running Node.js ${currentNodeVersion}.\n` + | ||
'Cube.js CLI requires Node.js 10.8.0 or higher. \n' + | ||
'Please update your version of Node.js.')); | ||
'Cube.js CLI requires Node.js 12 or higher (except 15). \n' + | ||
'Please update your Node.js version.')); | ||
process_1.default.exit(1); | ||
@@ -21,4 +21,4 @@ } | ||
process_1.default.emitWarning(color_1.default.red(`You are running Node.js ${currentNodeVersion}.\n` + | ||
'Support for Node.js 10 will be removed soon. Please upgrade to Node.js 12 or higher.')); | ||
'Support for Node.js 12 will be removed soon. Please upgrade to Node.js 14 or higher.')); | ||
} | ||
//# sourceMappingURL=node-check.js.map |
{ | ||
"name": "@cubejs-backend/shared", | ||
"version": "0.28.55", | ||
"version": "0.29.0", | ||
"description": "Shared code for Cube.js backend packages", | ||
@@ -20,3 +20,3 @@ "main": "dist/src/index.js", | ||
"engines": { | ||
"node": ">=10.8.0" | ||
"node": "^12.0.0 || ^14.0.0 || >=16.0.0" | ||
}, | ||
@@ -26,3 +26,3 @@ "author": "Cube Dev, Inc.", | ||
"devDependencies": { | ||
"@cubejs-backend/linter": "^0.28.22", | ||
"@cubejs-backend/linter": "^0.29.0", | ||
"@types/bytes": "^3.1.0", | ||
@@ -70,3 +70,3 @@ "@types/cli-progress": "^3.9.1", | ||
}, | ||
"gitHead": "c410184e1046a2eec828b7498f95cb2122d8a3da" | ||
"gitHead": "15502010fedcb085860d4f35267a57a6d60aa9ab" | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
140368