@cubejs-backend/cubestore 0.28.38 → 0.28.46

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 +56 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -3,6 +3,62 @@
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.46](https://github.com/cube-js/cube.js/compare/v0.28.45...v0.28.46) (2021-10-20)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **native:** Catch errors in authentication handshake (msql_srv) ([#3560](https://github.com/cube-js/cube.js/issues/3560)) ([9012399](https://github.com/cube-js/cube.js/commit/90123990fa5713fc1351ba0540776a9f7cd78dce))
12
+
13
+
14
+
15
+
16
+
17
+ ## [0.28.42](https://github.com/cube-js/cube.js/compare/v0.28.41...v0.28.42) (2021-10-15)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **cubesql:** SET NAMES utf8mb4 ([9229123](https://github.com/cube-js/cube.js/commit/9229123b8160eefe47f071063a455eb854199ebf))
23
+
24
+
25
+ ### Features
26
+
27
+ * Integrate SQL Connector to Cube.js ([#3544](https://github.com/cube-js/cube.js/issues/3544)) ([f90de4c](https://github.com/cube-js/cube.js/commit/f90de4c9283178962f501826a8a64abb674c37d1))
28
+
29
+
30
+
31
+
32
+
33
+ ## [0.28.41](https://github.com/cube-js/cube.js/compare/v0.28.40...v0.28.41) (2021-10-12)
34
+
35
+
36
+ ### Bug Fixes
37
+
38
+ * **cubestore:** fix parquet statistics for string columns ([565465a](https://github.com/cube-js/cube.js/commit/565465a02328875340d63046245637a3544ce2f1))
39
+
40
+
41
+ ### Features
42
+
43
+ * Introduce cubeclient (rust client) ([ff44347](https://github.com/cube-js/cube.js/commit/ff443477925e9948b9b6e190370696e1d8375ee0))
44
+ * Introduce SQL Connector for Cube.js 🚀 ([#3527](https://github.com/cube-js/cube.js/issues/3527)) ([7d97398](https://github.com/cube-js/cube.js/commit/7d97398bc11b64c1c77463030263316fad1da27a))
45
+
46
+
47
+
48
+
49
+
50
+ ## [0.28.39](https://github.com/cube-js/cube.js/compare/v0.28.38...v0.28.39) (2021-09-22)
51
+
52
+
53
+ ### Bug Fixes
54
+
55
+ * **cubestore:** fix string-to-timestamp conversion ([654e81d](https://github.com/cube-js/cube.js/commit/654e81d42ef90bdcfffbe5c9760aa231facf8a43))
56
+ * **cubestore:** invalid data after compaction of binary columns ([064a9f4](https://github.com/cube-js/cube.js/commit/064a9f46995ddbf35fefa3c25f5c3a6e47d96c1a))
57
+
58
+
59
+
60
+
61
+
6
62
  ## [0.28.38](https://github.com/cube-js/cube.js/compare/v0.28.37...v0.28.38) (2021-09-20)
7
63
 
8
64
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cubejs-backend/cubestore",
3
- "version": "0.28.38",
3
+ "version": "0.28.46",
4
4
  "description": "Cube.js pre-aggregation storage layer.",
5
5
  "main": "dist/src/index.js",
6
6
  "typings": "dist/src/index.d.ts",
@@ -37,7 +37,7 @@
37
37
  "access": "public"
38
38
  },
39
39
  "dependencies": {
40
- "@cubejs-backend/shared": "^0.28.29",
40
+ "@cubejs-backend/shared": "^0.28.42",
41
41
  "@octokit/core": "^3.2.5",
42
42
  "source-map-support": "^0.5.19"
43
43
  },
@@ -50,5 +50,5 @@
50
50
  ],
51
51
  "testEnvironment": "node"
52
52
  },
53
- "gitHead": "b6ac84b0ec679a40886a19e85d24619e0ca6a2ec"
53
+ "gitHead": "f22879da4b29b6fb6bafdec7d2b5169c40169f2b"
54
54
  }