@cubejs-backend/bigquery-driver 0.28.64 → 0.29.12

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +45 -0
  2. 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.12](https://github.com/cube-js/cube.js/compare/v0.29.11...v0.29.12) (2021-12-29)
7
+
8
+ **Note:** Version bump only for package @cubejs-backend/bigquery-driver
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.29.7](https://github.com/cube-js/cube.js/compare/v0.29.6...v0.29.7) (2021-12-20)
15
+
16
+ **Note:** Version bump only for package @cubejs-backend/bigquery-driver
17
+
18
+
19
+
20
+
21
+
22
+ ## [0.29.6](https://github.com/cube-js/cube.js/compare/v0.29.5...v0.29.6) (2021-12-19)
23
+
24
+ **Note:** Version bump only for package @cubejs-backend/bigquery-driver
25
+
26
+
27
+
28
+
29
+
30
+ # [0.29.0](https://github.com/cube-js/cube.js/compare/v0.28.67...v0.29.0) (2021-12-14)
31
+
32
+
33
+ ### Reverts
34
+
35
+ * 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)
36
+
37
+
38
+ * 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)
39
+
40
+
41
+ ### BREAKING CHANGES
42
+
43
+ * Drop support for Node.js 10 (12.x is a minimal version)
44
+ * Upgrade Node.js to 14 for Docker images
45
+ * Drop support for Node.js 15
46
+
47
+
48
+
49
+
50
+
6
51
  ## [0.28.64](https://github.com/cube-js/cube.js/compare/v0.28.63...v0.28.64) (2021-12-05)
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.28.64",
5
+ "version": "0.29.12",
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": ">=10.8.0"
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.28.64",
29
- "@cubejs-backend/shared": "^0.28.55",
28
+ "@cubejs-backend/query-orchestrator": "^0.29.12",
29
+ "@cubejs-backend/shared": "^0.29.12",
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": "765209d27873caf675e1bcd46c52b6cf69a07bc3"
45
+ "gitHead": "4b7c9154c9533a7a4ae17164742060a34a040515"
46
46
  }