@cubejs-backend/native 0.29.38 → 0.29.42

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 +30 -0
  2. package/package.json +4 -7
package/CHANGELOG.md CHANGED
@@ -3,6 +3,36 @@
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.42](https://github.com/cube-js/cube.js/compare/v0.29.41...v0.29.42) (2022-04-04)
7
+
8
+ **Note:** Version bump only for package @cubejs-backend/native
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.29.40](https://github.com/cube-js/cube.js/compare/v0.29.39...v0.29.40) (2022-04-03)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **cubesql:** Table columns should take precedence over projection to mimic MySQL and Postgres behavior ([60d6e45](https://github.com/cube-js/cube.js/commit/60d6e4511267b132df204fe7b637953d81e5f980))
20
+
21
+
22
+
23
+
24
+
25
+ ## [0.29.39](https://github.com/cube-js/cube.js/compare/v0.29.38...v0.29.39) (2022-04-01)
26
+
27
+
28
+ ### Bug Fixes
29
+
30
+ * **native:** Post installation issue with npm (avoid bundledDependencies) ([6163838](https://github.com/cube-js/cube.js/commit/6163838926586cf1a17bea353cb23b61e48469ca))
31
+
32
+
33
+
34
+
35
+
6
36
  ## [0.29.38](https://github.com/cube-js/cube.js/compare/v0.29.37...v0.29.38) (2022-04-01)
7
37
 
8
38
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cubejs-backend/native",
3
- "version": "0.29.38",
3
+ "version": "0.29.42",
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",
@@ -15,7 +15,7 @@
15
15
  "native:build": "tsc && cargo-cp-artifact -a cdylib cubejs-native index.node -- cargo build --message-format=json-render-diagnostics",
16
16
  "native:build-debug": "npm run native:build --",
17
17
  "native:build-release": "npm run native:build -- --release",
18
- "postinstall": "node-pre-gyp install || echo 'Your system is not supported by @cubejs-backend/native, some feature will be unavailable.'",
18
+ "install": "node-pre-gyp install || echo 'Your system is not supported by @cubejs-backend/native, some feature will be unavailable.'",
19
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",
20
20
  "upload-binary": "mkdir -p native && cp index.node native/index.node && node-pre-gyp package && node-pre-gyp-github publish",
21
21
  "test:unit": "jest --forceExit test",
@@ -27,9 +27,6 @@
27
27
  "files": [
28
28
  "dist/js"
29
29
  ],
30
- "bundledDependencies": [
31
- "@mapbox/node-pre-gyp"
32
- ],
33
30
  "devDependencies": {
34
31
  "@cubejs-infra/node-pre-gyp-github": "^1.0.3",
35
32
  "@types/jest": "^26",
@@ -40,7 +37,7 @@
40
37
  "typescript": "~4.1.5"
41
38
  },
42
39
  "dependencies": {
43
- "@cubejs-backend/cubesql": "^0.29.38",
40
+ "@cubejs-backend/cubesql": "^0.29.42",
44
41
  "@mapbox/node-pre-gyp": "^1"
45
42
  },
46
43
  "binary": {
@@ -59,5 +56,5 @@
59
56
  "publishConfig": {
60
57
  "access": "public"
61
58
  },
62
- "gitHead": "218d9d57a049422a33bbfa6369feac24a195ab4e"
59
+ "gitHead": "d05b5199da6e06f4d8baaed1baddb56cf1538637"
63
60
  }