@cubejs-backend/shared
Advanced tools
Comparing version 0.25.30 to 0.25.32
@@ -6,2 +6,13 @@ # Change Log | ||
## [0.25.32](https://github.com/cube-js/cube.js/compare/v0.25.31...v0.25.32) (2021-01-29) | ||
### Bug Fixes | ||
* **shared:** Value True is not valid for CUBEJS_SCHEDULED_REFRESH_TIMER ([99a5759](https://github.com/cube-js/cube.js/commit/99a5759e619824666b48c589a5c98c82c1817025)) | ||
## [0.25.30](https://github.com/cube-js/cube.js/compare/v0.25.29...v0.25.30) (2021-01-26) | ||
@@ -8,0 +19,0 @@ |
@@ -47,6 +47,6 @@ "use strict"; | ||
function asBoolOrTime(input, envName) { | ||
if (input === 'true') { | ||
if (input.toLowerCase() === 'true') { | ||
return true; | ||
} | ||
if (input === 'false') { | ||
if (input.toLowerCase() === 'false') { | ||
return false; | ||
@@ -53,0 +53,0 @@ } |
{ | ||
"name": "@cubejs-backend/shared", | ||
"version": "0.25.30", | ||
"version": "0.25.32", | ||
"description": "Shared code for Cube.js backend packages", | ||
@@ -45,3 +45,3 @@ "main": "dist/src/index.js", | ||
}, | ||
"gitHead": "3a4f3178d5ca557e78cfa78dc8234cc946d0f703" | ||
"gitHead": "cf4552cbc2ac1a96d60d27cf41d2f5e1079d7ca1" | ||
} |
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
58966