New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@cubejs-backend/shared

Package Overview
Dependencies
Maintainers
0
Versions
213
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cubejs-backend/shared - npm Package Compare versions

Comparing version 1.2.18 to 1.2.19

20

dist/src/env.js

@@ -858,2 +858,22 @@ "use strict";

pinotAuthToken: ({ dataSource, }) => (process.env[keyByDataSource('CUBEJS_DB_PINOT_AUTH_TOKEN', dataSource)]),
/**
* Pinot / Startree Null value support
*/
pinotNullHandling: ({ dataSource }) => {
const val = process.env[keyByDataSource('CUBEJS_DB_PINOT_NULL_HANDLING', dataSource)];
if (val) {
if (val.toLocaleLowerCase() === 'true') {
return true;
}
else if (val.toLowerCase() === 'false') {
return false;
}
else {
throw new TypeError(`The ${keyByDataSource('CUBEJS_DB_PINOT_NULL_HANDLING', dataSource)} must be either 'true' or 'false'.`);
}
}
else {
return false;
}
},
/** ****************************************************************

@@ -860,0 +880,0 @@ * Dremio Driver *

6

package.json
{
"name": "@cubejs-backend/shared",
"version": "1.2.18",
"version": "1.2.19",
"description": "Shared code for Cube.js backend packages",

@@ -25,3 +25,3 @@ "main": "dist/src/index.js",

"devDependencies": {
"@cubejs-backend/linter": "1.2.18",
"@cubejs-backend/linter": "1.2.19",
"@types/bytes": "^3.1.5",

@@ -76,3 +76,3 @@ "@types/cli-progress": "^3.9.1",

},
"gitHead": "085b54f803b2175dd725c9ebe65cf2a88b5045d8"
"gitHead": "e19beb56921f2f985b784e2bd3c91b08fd32593d"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc