@cubejs-backend/native 0.32.11 → 0.32.13

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 (1) hide show
  1. package/package.json +8 -6
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@cubejs-backend/native",
3
- "version": "0.32.11",
3
+ "version": "0.32.13",
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",
7
7
  "typings": "dist/js/index.d.ts",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "git+https://github.com/cube-js/cube.js.git"
10
+ "url": "git+https://github.com/cube-js/cube.git"
11
11
  },
12
12
  "scripts": {
13
13
  "tsc": "tsc",
@@ -19,6 +19,7 @@
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:server": "CUBEJS_NATIVE_INTERNAL_DEBUG=true CUBESQL_LOG_LEVEL=trace CUBESQL_PG_PORT=5555 node test/server.js",
22
+ "test:server:stream": "CUBESQL_STREAM_MODE=true CUBESQL_LOG_LEVEL=error CUBESQL_PG_PORT=5555 node test/server.js",
22
23
  "test:unit": "jest --forceExit test",
23
24
  "test:cargo": "cargo test"
24
25
  },
@@ -29,6 +30,7 @@
29
30
  "dist/js"
30
31
  ],
31
32
  "devDependencies": {
33
+ "@cubejs-backend/testing-shared": "^0.32.13",
32
34
  "@cubejs-infra/node-pre-gyp-github": "^1.0.3",
33
35
  "@types/jest": "^26",
34
36
  "@types/node": "^14",
@@ -38,13 +40,13 @@
38
40
  "typescript": "~4.9.5"
39
41
  },
40
42
  "dependencies": {
41
- "@cubejs-backend/cubesql": "^0.32.11",
42
- "@cubejs-backend/shared": "^0.32.2",
43
+ "@cubejs-backend/cubesql": "^0.32.12",
44
+ "@cubejs-backend/shared": "^0.32.12",
43
45
  "@mapbox/node-pre-gyp": "^1"
44
46
  },
45
47
  "binary": {
46
48
  "module_name": "index",
47
- "host": "https://github.com/cube-js/cube.js/releases/download/",
49
+ "host": "https://github.com/cube-js/cube/releases/download/",
48
50
  "remote_path": "v{version}",
49
51
  "package_name": "native-{platform}-{arch}-{libc}.tar.gz",
50
52
  "module_path": "native",
@@ -62,5 +64,5 @@
62
64
  "publishConfig": {
63
65
  "access": "public"
64
66
  },
65
- "gitHead": "f74c8e8aad271319290d7ab5b25a510e30cfb3c4"
67
+ "gitHead": "0f85e06b02a95c369636bdf25003bb60380d6574"
66
68
  }