@cubejs-backend/native 0.33.20 → 0.33.21

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/README.md +23 -0
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -16,6 +16,29 @@ Native module for Cube.js (binding to Rust codebase).
16
16
 
17
17
  [Learn more](https://github.com/cube-js/cube.js#getting-started)
18
18
 
19
+ There are two different types of builds: with Python, and a fallback.
20
+ If Cube cannot detect a `libpython` library or your system is not supported, it will use a fallback build.
21
+
22
+ ### With python
23
+
24
+ Supported python versions: `3.11`, `3.10`, `3.9`.
25
+
26
+ | | `linux-gnu` | `linux-musl` | `darwin` | `win32` |
27
+ | -------- |:---------------:|:----------------:|:-----------:|:-------------:|
28
+ | `x86` | N/A | N/A | N/A | N/A |
29
+ | `x86_64` | ✅ | N/A | N/A | N/A |
30
+ | `arm64` | N/A | N/A | N/A | N/A |
31
+
32
+ ### Fallback (without python)
33
+
34
+ | | `linux-gnu` | `linux-musl` | `darwin` | `win32` |
35
+ | -------- | :---------: |:-------------:| :------: | :-----: |
36
+ | `x86` | N/A | N/A | N/A | N/A |
37
+ | `x86_64` | ✅ | N/A | ✅ | ✅ |
38
+ | `arm64` | ✅ | N/A | ✅[1] | |
39
+
40
+ [1] It can be launched using Rosetta 2 via the `x86_64-apple` binary.
41
+
19
42
  ### License
20
43
 
21
44
  Cube.js Native is [Apache 2.0 licensed](./LICENSE).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cubejs-backend/native",
3
- "version": "0.33.20",
3
+ "version": "0.33.21",
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",
@@ -34,7 +34,7 @@
34
34
  "dist/js"
35
35
  ],
36
36
  "devDependencies": {
37
- "@cubejs-backend/testing-shared": "^0.33.20",
37
+ "@cubejs-backend/testing-shared": "^0.33.21",
38
38
  "@cubejs-infra/node-pre-gyp-github": "^1.0.3",
39
39
  "@types/jest": "^26",
40
40
  "@types/node": "^14",
@@ -45,7 +45,7 @@
45
45
  },
46
46
  "dependencies": {
47
47
  "@cubejs-backend/cubesql": "^0.33.11",
48
- "@cubejs-backend/shared": "^0.33.20",
48
+ "@cubejs-backend/shared": "^0.33.21",
49
49
  "@mapbox/node-pre-gyp": "^1"
50
50
  },
51
51
  "binary": {
@@ -100,5 +100,5 @@
100
100
  "publishConfig": {
101
101
  "access": "public"
102
102
  },
103
- "gitHead": "e1a56932c1f98b0425e832c81c13f4cc88146b88"
103
+ "gitHead": "c20bb62bf3bd7708ffc99b937a8e13cc60a075e7"
104
104
  }