@cubejs-backend/cubestore 0.29.8 → 0.29.12

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 +50 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -3,6 +3,56 @@
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.12](https://github.com/cube-js/cube.js/compare/v0.29.11...v0.29.12) (2021-12-29)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **cubestore:** Do not fail scheduler loop on lagged broadcast receive ([11a2a67](https://github.com/cube-js/cube.js/commit/11a2a67bc733a76ab6a01ca1a4c3853e5d15ea4e))
12
+
13
+
14
+
15
+
16
+
17
+ ## [0.29.11](https://github.com/cube-js/cube.js/compare/v0.29.10...v0.29.11) (2021-12-24)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **cubestore:** Respect pending chunks for compaction ([ac23554](https://github.com/cube-js/cube.js/commit/ac235545a0516a27009035b72defaa338a2fc5d3))
23
+
24
+
25
+ ### Features
26
+
27
+ * **cubestore:** Build binary for aarch64-unknown-linux-gnu ([#3844](https://github.com/cube-js/cube.js/issues/3844)) ([38b8054](https://github.com/cube-js/cube.js/commit/38b8054308353bb11a023d6c47b05761e7bc7535))
28
+
29
+
30
+
31
+
32
+
33
+ ## [0.29.10](https://github.com/cube-js/cube.js/compare/v0.29.9...v0.29.10) (2021-12-22)
34
+
35
+
36
+ ### Bug Fixes
37
+
38
+ * **cubestore:** Do not show errors for not uploaded chunks scheduled for removal ([ca94fb2](https://github.com/cube-js/cube.js/commit/ca94fb284d9d70753099a448b59b60690a229d93))
39
+ * **cubestore:** Re-parent chunks on compaction instead of repartitioning ([cb6b9d5](https://github.com/cube-js/cube.js/commit/cb6b9d536182ff7843ecf7726db886fb3f90511c))
40
+
41
+
42
+
43
+
44
+
45
+ ## [0.29.9](https://github.com/cube-js/cube.js/compare/v0.29.8...v0.29.9) (2021-12-22)
46
+
47
+
48
+ ### Features
49
+
50
+ * **cubestore:** Introduce table partition_split_threshold to allow large scale partitions ([#3837](https://github.com/cube-js/cube.js/issues/3837)) ([2bdebce](https://github.com/cube-js/cube.js/commit/2bdebced3b4c0901216557dc5729f8be1b739854))
51
+
52
+
53
+
54
+
55
+
6
56
  ## [0.29.8](https://github.com/cube-js/cube.js/compare/v0.29.7...v0.29.8) (2021-12-21)
7
57
 
8
58
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cubejs-backend/cubestore",
3
- "version": "0.29.8",
3
+ "version": "0.29.12",
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,12 +37,12 @@
37
37
  "access": "public"
38
38
  },
39
39
  "dependencies": {
40
- "@cubejs-backend/shared": "^0.29.0",
40
+ "@cubejs-backend/shared": "^0.29.12",
41
41
  "@octokit/core": "^3.2.5",
42
42
  "source-map-support": "^0.5.19"
43
43
  },
44
44
  "eslintConfig": {
45
- "extends": "../packages/cubejs-linter"
45
+ "extends": "../../packages/cubejs-linter"
46
46
  },
47
47
  "jest": {
48
48
  "testMatch": [
@@ -50,5 +50,5 @@
50
50
  ],
51
51
  "testEnvironment": "node"
52
52
  },
53
- "gitHead": "2bd982f9f7aff8afc071c01015306421a2cd7739"
53
+ "gitHead": "4b7c9154c9533a7a4ae17164742060a34a040515"
54
54
  }