@cubejs-backend/native 0.28.42 → 0.28.43
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 +12 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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.28.43](https://github.com/cube-js/cube.js/compare/v0.28.42...v0.28.43) (2021-10-17)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **native:** Allow to install Cube.js on unsupported systems ([71ce6a4](https://github.com/cube-js/cube.js/commit/71ce6a4eaa78870a3716bf8c9f1e091d08639753))
|
|
12
|
+
* **native:** Split musl/libc packages (musl is unsupported for now) ([836bd5f](https://github.com/cube-js/cube.js/commit/836bd5f3a2125326144819831c6b04962bdc0565))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
6
18
|
## [0.28.42](https://github.com/cube-js/cube.js/compare/v0.28.41...v0.28.42) (2021-10-15)
|
|
7
19
|
|
|
8
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cubejs-backend/native",
|
|
3
|
-
"version": "0.28.
|
|
3
|
+
"version": "0.28.43",
|
|
4
4
|
"author": "Cube Dev, Inc.",
|
|
5
5
|
"description": "Native module for Cube.js (binding to Rust codebase)",
|
|
6
6
|
"main": "dist/lib/index.js",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"build": "tsc && cargo-cp-artifact -a cdylib cubejs-native index.node -- cargo build --message-format=json-render-diagnostics",
|
|
15
15
|
"build-debug": "npm run tsc && npm run build --",
|
|
16
16
|
"build-release": "npm run tsc && npm run build -- --release",
|
|
17
|
-
"install": "node-pre-gyp install ||
|
|
17
|
+
"install": "node-pre-gyp install || echo 'Your system is not supported by @cubejs-backend/native, some feature will be anavailable.'",
|
|
18
18
|
"upload-binary": "npm run build-release && mkdir -p native && cp index.node native/index.node && node-pre-gyp package && node-pre-gyp-github publish",
|
|
19
19
|
"test:unit": "jest --verbose --forceExit test",
|
|
20
20
|
"test:cargo": "cargo test"
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"module_name": "index",
|
|
46
46
|
"host": "https://github.com/cube-js/cube.js/releases/download/",
|
|
47
47
|
"remote_path": "v{version}",
|
|
48
|
-
"package_name": "native-{node_abi}-{platform}-{arch}.tar.gz",
|
|
48
|
+
"package_name": "native-{node_abi}-{platform}-{arch}-{libc}.tar.gz",
|
|
49
49
|
"module_path": "native",
|
|
50
50
|
"pkg_path": "."
|
|
51
51
|
},
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"publishConfig": {
|
|
57
57
|
"access": "public"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "6ff124f934e5b82b231bca7dce8336ecd3a53ac4"
|
|
60
60
|
}
|