@cubejs-backend/bigquery-driver 0.28.60 → 0.29.0
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 +45 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,51 @@
|
|
|
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.29.0](https://github.com/cube-js/cube.js/compare/v0.28.67...v0.29.0) (2021-12-14)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Reverts
|
|
10
|
+
|
|
11
|
+
* Revert "BREAKING CHANGE: 0.29 (#3809)" (#3811) ([db005ed](https://github.com/cube-js/cube.js/commit/db005edc04d48e8251250ab9d0e19f496cf3b52b)), closes [#3809](https://github.com/cube-js/cube.js/issues/3809) [#3811](https://github.com/cube-js/cube.js/issues/3811)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
* BREAKING CHANGE: 0.29 (#3809) ([6f1418b](https://github.com/cube-js/cube.js/commit/6f1418b9963774844f341682e594601a56bb0084)), closes [#3809](https://github.com/cube-js/cube.js/issues/3809)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### BREAKING CHANGES
|
|
18
|
+
|
|
19
|
+
* Drop support for Node.js 10 (12.x is a minimal version)
|
|
20
|
+
* Upgrade Node.js to 14 for Docker images
|
|
21
|
+
* Drop support for Node.js 15
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
## [0.28.64](https://github.com/cube-js/cube.js/compare/v0.28.63...v0.28.64) (2021-12-05)
|
|
28
|
+
|
|
29
|
+
**Note:** Version bump only for package @cubejs-backend/bigquery-driver
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
## [0.28.63](https://github.com/cube-js/cube.js/compare/v0.28.62...v0.28.63) (2021-12-03)
|
|
36
|
+
|
|
37
|
+
**Note:** Version bump only for package @cubejs-backend/bigquery-driver
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
## [0.28.61](https://github.com/cube-js/cube.js/compare/v0.28.60...v0.28.61) (2021-11-30)
|
|
44
|
+
|
|
45
|
+
**Note:** Version bump only for package @cubejs-backend/bigquery-driver
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
6
51
|
## [0.28.60](https://github.com/cube-js/cube.js/compare/v0.28.59...v0.28.60) (2021-11-25)
|
|
7
52
|
|
|
8
53
|
**Note:** Version bump only for package @cubejs-backend/bigquery-driver
|
package/package.json
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
"name": "@cubejs-backend/bigquery-driver",
|
|
3
3
|
"description": "Cube.js BigQuery database driver",
|
|
4
4
|
"author": "Cube Dev, Inc.",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.29.0",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/cube-js/cube.js.git",
|
|
9
9
|
"directory": "packages/cubejs-bigquery-driver"
|
|
10
10
|
},
|
|
11
11
|
"engines": {
|
|
12
|
-
"node": ">=
|
|
12
|
+
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
|
|
13
13
|
},
|
|
14
14
|
"scripts": {
|
|
15
15
|
"build": "rm -rf dist && npm run tsc",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"main": "index.js",
|
|
26
26
|
"types": "dist/src/index.d.ts",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@cubejs-backend/query-orchestrator": "^0.
|
|
29
|
-
"@cubejs-backend/shared": "^0.
|
|
28
|
+
"@cubejs-backend/query-orchestrator": "^0.29.0",
|
|
29
|
+
"@cubejs-backend/shared": "^0.29.0",
|
|
30
30
|
"@google-cloud/bigquery": "^5.6.0",
|
|
31
31
|
"@google-cloud/storage": "^5.7.2",
|
|
32
32
|
"ramda": "^0.27.1"
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"eslintConfig": {
|
|
43
43
|
"extends": "../cubejs-linter"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "15502010fedcb085860d4f35267a57a6d60aa9ab"
|
|
46
46
|
}
|