@cubejs-backend/shared
Advanced tools
Comparing version 0.27.15 to 0.27.17
@@ -6,2 +6,18 @@ # Change Log | ||
## [0.27.17](https://github.com/cube-js/cube.js/compare/v0.27.16...v0.27.17) (2021-05-22) | ||
### Bug Fixes | ||
* CUBEJS_JWT_KEY - allow string ([1bd9832](https://github.com/cube-js/cube.js/commit/1bd9832ca1f93dc685ff9633482ebe7c8537e11b)) | ||
### Features | ||
* **snowflake-driver:** Support UNLOAD to S3 ([d984f97](https://github.com/cube-js/cube.js/commit/d984f973547d1ff339dbf6ba26f0e363bddf2e98)) | ||
## [0.27.15](https://github.com/cube-js/cube.js/compare/v0.27.14...v0.27.15) (2021-05-18) | ||
@@ -8,0 +24,0 @@ |
@@ -102,2 +102,14 @@ "use strict"; | ||
.asString(), | ||
// Export Bucket options | ||
dbExportBucketType: () => env_var_1.get('CUBEJS_DB_EXPORT_BUCKET_TYPE') | ||
.asEnum(['s3']), | ||
dbExportBucket: () => env_var_1.get('CUBEJS_DB_EXPORT_BUCKET') | ||
.asString(), | ||
// Export bucket options for AWS S3 | ||
dbExportBucketAwsKey: () => env_var_1.get('CUBEJS_DB_EXPORT_BUCKET_AWS_KEY') | ||
.asString(), | ||
dbExportBucketAwsSecret: () => env_var_1.get('CUBEJS_DB_EXPORT_BUCKET_AWS_SECRET') | ||
.asString(), | ||
dbExportBucketAwsRegion: () => env_var_1.get('CUBEJS_DB_EXPORT_BUCKET_AWS_REGION') | ||
.asString(), | ||
// BigQuery Driver | ||
@@ -197,3 +209,3 @@ bigQueryLocation: () => env_var_1.get('CUBEJS_DB_BQ_LOCATION') | ||
jwtKey: () => env_var_1.get('CUBEJS_JWT_KEY') | ||
.asUrlString(), | ||
.asString(), | ||
jwtAlgorithms: () => env_var_1.get('CUBEJS_JWT_ALGS') | ||
@@ -215,3 +227,4 @@ .asArray(','), | ||
telemetry: () => env_var_1.get('CUBEJS_TELEMETRY') | ||
.default('true'), | ||
.default('true') | ||
.asBool(), | ||
// Experiments & Preview flags | ||
@@ -218,0 +231,0 @@ livePreview: () => env_var_1.get('CUBEJS_LIVE_PREVIEW') |
{ | ||
"name": "@cubejs-backend/shared", | ||
"version": "0.27.15", | ||
"version": "0.27.17", | ||
"description": "Shared code for Cube.js backend packages", | ||
@@ -63,3 +63,3 @@ "main": "dist/src/index.js", | ||
}, | ||
"gitHead": "587351412eb05f16df51d54b8783e9bc6d6caa38" | ||
"gitHead": "aa0847f494812d233c42de532d4c4b13b4a93c61" | ||
} |
Sorry, the diff of this file is not supported yet
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
110501
1195