@cubejs-backend/native 0.29.12 → 0.29.20

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 CHANGED
@@ -3,6 +3,38 @@
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.20](https://github.com/cube-js/cube.js/compare/v0.29.19...v0.29.20) (2022-01-10)
7
+
8
+ **Note:** Version bump only for package @cubejs-backend/native
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.29.18](https://github.com/cube-js/cube.js/compare/v0.29.17...v0.29.18) (2022-01-09)
15
+
16
+ **Note:** Version bump only for package @cubejs-backend/native
17
+
18
+
19
+
20
+
21
+
22
+ ## [0.29.15](https://github.com/cube-js/cube.js/compare/v0.29.14...v0.29.15) (2021-12-30)
23
+
24
+ **Note:** Version bump only for package @cubejs-backend/native
25
+
26
+
27
+
28
+
29
+
30
+ ## [0.29.14](https://github.com/cube-js/cube.js/compare/v0.29.12-1...v0.29.14) (2021-12-29)
31
+
32
+ **Note:** Version bump only for package @cubejs-backend/native
33
+
34
+
35
+
36
+
37
+
6
38
  ## [0.29.12](https://github.com/cube-js/cube.js/compare/v0.29.11...v0.29.12) (2021-12-29)
7
39
 
8
40
 
package/README.md CHANGED
@@ -9,8 +9,14 @@
9
9
 
10
10
  Native module for Cube.js (binding to Rust codebase).
11
11
 
12
+ ## Supported architectures and platforms
13
+
14
+ > If your platform/architecture is not supported, you can launch Cube
15
+ > using Docker.
16
+
12
17
  [Learn more](https://github.com/cube-js/cube.js#getting-started)
13
18
 
14
19
  ### License
15
20
 
16
21
  Cube.js Native is [Apache 2.0 licensed](./LICENSE).
22
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cubejs-backend/native",
3
- "version": "0.29.12",
3
+ "version": "0.29.20",
4
4
  "author": "Cube Dev, Inc.",
5
5
  "description": "Native module for Cube.js (binding to Rust codebase)",
6
6
  "main": "dist/js/index.js",
@@ -16,6 +16,7 @@
16
16
  "native:build-debug": "npm run native:build --",
17
17
  "native:build-release": "npm run native:build -- --release",
18
18
  "install": "node-pre-gyp install || echo 'Your system is not supported by @cubejs-backend/native, some feature will be unavailable.'",
19
+ "upload-binary-cross": "mkdir -p native && cp index.node native/index.node && node-pre-gyp package --target_arch=$PACKAGE_TARGET_ARCH --target_platform=$PACKAGE_TARGET_PLATFORM --target_libc=$PACKAGE_TARGET_LIBC && node-pre-gyp-github publish",
19
20
  "upload-binary": "mkdir -p native && cp index.node native/index.node && node-pre-gyp package && node-pre-gyp-github publish",
20
21
  "test:unit": "jest --forceExit test",
21
22
  "test:cargo": "cargo test"
@@ -30,16 +31,16 @@
30
31
  "@mapbox/node-pre-gyp"
31
32
  ],
32
33
  "devDependencies": {
33
- "@cubejs-infra/node-pre-gyp-github": "^1",
34
+ "@cubejs-infra/node-pre-gyp-github": "^1.0.3",
34
35
  "@types/jest": "^26",
35
- "@types/node": "^10",
36
+ "@types/node": "^12",
36
37
  "cargo-cp-artifact": "^0.1",
37
38
  "jest": "^26",
38
39
  "mysql2": "^2.3.3",
39
40
  "typescript": "~4.1.5"
40
41
  },
41
42
  "dependencies": {
42
- "@cubejs-backend/cubesql": "^0.29.12",
43
+ "@cubejs-backend/cubesql": "^0.29.20",
43
44
  "@mapbox/node-pre-gyp": "^1"
44
45
  },
45
46
  "binary": {
@@ -58,5 +59,5 @@
58
59
  "publishConfig": {
59
60
  "access": "public"
60
61
  },
61
- "gitHead": "4b7c9154c9533a7a4ae17164742060a34a040515"
62
+ "gitHead": "d475716ed471ee4eccbd65de9cf7fbff7ea0b82d"
62
63
  }