@cubejs-backend/prestodb-driver 0.31.0 → 0.31.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -0
- package/driver/PrestoDriver.js +10 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.31.3](https://github.com/cube-js/cube.js/compare/v0.31.2...v0.31.3) (2022-10-08)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* drivers imports alignment ([#5448](https://github.com/cube-js/cube.js/issues/5448)) ([ab12426](https://github.com/cube-js/cube.js/commit/ab1242650ba0368b855176b9c6ca2d73073acf0e))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [0.31.2](https://github.com/cube-js/cube.js/compare/v0.31.1...v0.31.2) (2022-10-08)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @cubejs-backend/prestodb-driver
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [0.31.0](https://github.com/cube-js/cube.js/compare/v0.30.75...v0.31.0) (2022-10-03)
|
|
7
26
|
|
|
8
27
|
|
package/driver/PrestoDriver.js
CHANGED
|
@@ -1,9 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @copyright Cube Dev, Inc.
|
|
3
|
+
* @license Apache-2.0
|
|
4
|
+
* @fileoverview The `PrestoDriver` and related types declaration.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
const {
|
|
8
|
+
getEnv,
|
|
9
|
+
assertDataSource,
|
|
10
|
+
} = require('@cubejs-backend/shared');
|
|
1
11
|
const presto = require('presto-client');
|
|
2
12
|
const {
|
|
3
13
|
map, zipObj, prop, concat
|
|
4
14
|
} = require('ramda');
|
|
5
15
|
const { BaseDriver } = require('@cubejs-backend/base-driver');
|
|
6
|
-
const { getEnv, assertDataSource } = require('@cubejs-backend/shared');
|
|
7
16
|
const SqlString = require('sqlstring');
|
|
8
17
|
|
|
9
18
|
/**
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@cubejs-backend/prestodb-driver",
|
|
3
3
|
"description": "Cube.js Presto database driver",
|
|
4
4
|
"author": "Cube Dev, Inc.",
|
|
5
|
-
"version": "0.31.
|
|
5
|
+
"version": "0.31.3",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/cube-js/cube.js.git",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"lint:fix": "eslint --fix **/*.js"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@cubejs-backend/base-driver": "^0.31.
|
|
22
|
+
"@cubejs-backend/base-driver": "^0.31.3",
|
|
23
23
|
"@cubejs-backend/shared": "^0.31.0",
|
|
24
24
|
"presto-client": "^0.12.1",
|
|
25
25
|
"ramda": "^0.27.0",
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"eslintConfig": {
|
|
39
39
|
"extends": "../cubejs-linter"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "731b43141fc9160dacf2564d4433ac9d0e54ed63"
|
|
42
42
|
}
|