@cubejs-backend/native 0.28.62 → 0.29.5

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 +48 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -3,6 +3,54 @@
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.5](https://github.com/cube-js/cube.js/compare/v0.29.4...v0.29.5) (2021-12-17)
7
+
8
+
9
+ ### Features
10
+
11
+ * **cubesql:** Support DATE with compound identifier ([fa959d8](https://github.com/cube-js/cube.js/commit/fa959d89406ab84d6764e0cc035b819b2f7dae21))
12
+
13
+
14
+
15
+
16
+
17
+ ## [0.29.4](https://github.com/cube-js/cube.js/compare/v0.29.3...v0.29.4) (2021-12-16)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **cubesql:** LIKE '%(%)%' ([c75efaa](https://github.com/cube-js/cube.js/commit/c75efaa18566b8e4bf8e2448c9f9066ef2dc815c))
23
+ * **cubesql:** Substr with negative count should return empty string (not an error) ([197b9e5](https://github.com/cube-js/cube.js/commit/197b9e5edbdabfc8167ef55d643240b6a597dad4))
24
+
25
+
26
+ ### Features
27
+
28
+ * **cubesql:** Support SUBSTRING with commans syntax ([ffb0a6b](https://github.com/cube-js/cube.js/commit/ffb0a6b321cfdc767ff6b0f7b93313cd3aee5c42))
29
+
30
+
31
+
32
+
33
+
34
+ # [0.29.0](https://github.com/cube-js/cube.js/compare/v0.28.67...v0.29.0) (2021-12-14)
35
+
36
+ **Note:** Version bump only for package @cubejs-backend/native
37
+
38
+
39
+
40
+
41
+
42
+ ## [0.28.63](https://github.com/cube-js/cube.js/compare/v0.28.62...v0.28.63) (2021-12-03)
43
+
44
+
45
+ ### Bug Fixes
46
+
47
+ * **cubesql:** Crash with WHEN ELSE IF ([7eeadf5](https://github.com/cube-js/cube.js/commit/7eeadf54433c3cbb8f5f501cacbd84d2766be52b))
48
+ * **cubesql:** Information_schema.COLUMNS - correct DATA_TYPE fields ([337d1d1](https://github.com/cube-js/cube.js/commit/337d1d1e74d52fa58685107c4217a0987e203cba))
49
+
50
+
51
+
52
+
53
+
6
54
  ## [0.28.62](https://github.com/cube-js/cube.js/compare/v0.28.61...v0.28.62) (2021-12-02)
7
55
 
8
56
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cubejs-backend/native",
3
- "version": "0.28.62",
3
+ "version": "0.29.5",
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",
@@ -21,7 +21,7 @@
21
21
  "test:cargo": "cargo test"
22
22
  },
23
23
  "engines": {
24
- "node": ">=10.8.0"
24
+ "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
25
25
  },
26
26
  "files": [
27
27
  "dist/js"
@@ -57,5 +57,5 @@
57
57
  "publishConfig": {
58
58
  "access": "public"
59
59
  },
60
- "gitHead": "282bdc1b730ca5e5eb7cbe0fef19b0c6b4e7d52a"
60
+ "gitHead": "518281dea6e0c511813df4502f3aa97038f9be23"
61
61
  }