@cubejs-backend/hive-driver 0.31.57 → 0.31.59
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 +16 -0
- package/README.md +4 -3
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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.59](https://github.com/cube-js/cube.js/compare/v0.31.58...v0.31.59) (2023-02-06)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @cubejs-backend/hive-driver
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.31.58](https://github.com/cube-js/cube.js/compare/v0.31.57...v0.31.58) (2023-02-02)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @cubejs-backend/hive-driver
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [0.31.57](https://github.com/cube-js/cube.js/compare/v0.31.56...v0.31.57) (2023-02-02)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @cubejs-backend/hive-driver
|
package/README.md
CHANGED
|
@@ -26,9 +26,10 @@ While the Cube Dev team is happy to review and accept future community contribut
|
|
|
26
26
|
|
|
27
27
|
### Using Docker
|
|
28
28
|
|
|
29
|
-
1.
|
|
30
|
-
2.
|
|
31
|
-
3.
|
|
29
|
+
1. Download Hive Thrift definition for your version from https://github.com/apache/hive/blob/master/service-rpc/if/TCLIService.thrift.
|
|
30
|
+
2. Have docker installed and running
|
|
31
|
+
3. Run `docker run -v "$PWD:/data" thrift thrift -o /data --gen js:node /data/TCLIService.thrift`
|
|
32
|
+
4. Copy generated files to the idl directory of this repository.
|
|
32
33
|
|
|
33
34
|
## License
|
|
34
35
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@cubejs-backend/hive-driver",
|
|
3
3
|
"description": "Cube.js Hive database driver",
|
|
4
4
|
"author": "Cube Dev, Inc.",
|
|
5
|
-
"version": "0.31.
|
|
5
|
+
"version": "0.31.59",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/cube-js/cube.js.git",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
},
|
|
14
14
|
"main": "driver/HiveDriver.js",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@cubejs-backend/base-driver": "^0.31.
|
|
16
|
+
"@cubejs-backend/base-driver": "^0.31.58",
|
|
17
17
|
"generic-pool": "^3.6.0",
|
|
18
18
|
"jshs2": "^0.4.4",
|
|
19
19
|
"sasl-plain": "^0.1.0",
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|
|
27
27
|
},
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "1ab6899b71b695dc0a28a7c63aa430a6036d021b"
|
|
29
29
|
}
|