Skip to content

Commit fec456d

Browse files
committed
v0.33.57
1 parent 7ab977f commit fec456d

File tree

100 files changed

+666
-205
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+666
-205
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,29 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.33.57](https://github.com/cube-js/cube/compare/v0.33.56...v0.33.57) (2023-09-15)
7+
8+
9+
### Bug Fixes
10+
11+
* **cubesql:** ORDER BY references outer alias instead of inner expression for SQL push down ([778e16c](https://github.com/cube-js/cube/commit/778e16c52319e5ba6d8a786de1e5ff95036b4461))
12+
* **cubestore:** Eviction - schedule compaction as blocking task ([#7133](https://github.com/cube-js/cube/issues/7133)) ([009b1d6](https://github.com/cube-js/cube/commit/009b1d665e2e90c01a60e2a4192ee108b1838a1c))
13+
* **docs:** change header layout ([#7136](https://github.com/cube-js/cube/issues/7136)) ([581faad](https://github.com/cube-js/cube/commit/581faad70b360b3bab79c52ce735a3650ba17ba4))
14+
* **redshift-driver:** resolves issue where redshift column order can come back in a different order, causing pre-aggregations across partitions to encounter a union all error ([#6965](https://github.com/cube-js/cube/issues/6965)) Thanks [@jskarda829](https://github.com/jskarda829) [@magno32](https://github.com/magno32) ! ([30356d9](https://github.com/cube-js/cube/commit/30356d9a43485ae22a7c97378c9c303679480f05))
15+
16+
17+
### Features
18+
19+
* Config - improve validation (use strict mode) ([#6892](https://github.com/cube-js/cube/issues/6892)) ([5e39b9b](https://github.com/cube-js/cube/commit/5e39b9b35d3a3ca04170b3f9c201d790c437c291))
20+
* **cubesql:** `CONCAT` function support for SQL push down ([da24afe](https://github.com/cube-js/cube/commit/da24afebc844f6f983d6f4df76f2367168667036))
21+
* **cubesql:** DATE_TRUNC support for SQL push down ([#7132](https://github.com/cube-js/cube/issues/7132)) ([ae80eb1](https://github.com/cube-js/cube/commit/ae80eb1e45857cde14ec0ff9c15547f917d6fdd2))
22+
* **cubestore:** Int96 and Decimal96 support ([#6952](https://github.com/cube-js/cube/issues/6952)) ([0262d67](https://github.com/cube-js/cube/commit/0262d67b7c3720224f61385356c6accc1e10cd4b))
23+
* **native:** Cube.py - support orchestratorOptions/http/jwt ([#7135](https://github.com/cube-js/cube/issues/7135)) ([7ab977f](https://github.com/cube-js/cube/commit/7ab977ff4ba011f10dcf0c853fdd8822cfa9bf1e))
24+
25+
26+
27+
28+
629
## [0.33.56](https://github.com/cube-js/cube/compare/v0.33.55...v0.33.56) (2023-09-13)
730

831

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.33.56",
2+
"version": "0.33.57",
33
"npmClient": "yarn",
44
"useWorkspaces": true,
55
"packages": [

packages/cubejs-api-gateway/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.33.57](https://github.com/cube-js/cube/compare/v0.33.56...v0.33.57) (2023-09-15)
7+
8+
9+
### Features
10+
11+
* **native:** Cube.py - support orchestratorOptions/http/jwt ([#7135](https://github.com/cube-js/cube/issues/7135)) ([7ab977f](https://github.com/cube-js/cube/commit/7ab977ff4ba011f10dcf0c853fdd8822cfa9bf1e))
12+
13+
14+
15+
16+
617
## [0.33.56](https://github.com/cube-js/cube/compare/v0.33.55...v0.33.56) (2023-09-13)
718

819
**Note:** Version bump only for package @cubejs-backend/api-gateway

packages/cubejs-api-gateway/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@cubejs-backend/api-gateway",
33
"description": "Cube.js API Gateway",
44
"author": "Cube Dev, Inc.",
5-
"version": "0.33.56",
5+
"version": "0.33.57",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/cube-js/cube.git",
@@ -27,8 +27,8 @@
2727
"dist/src/*"
2828
],
2929
"dependencies": {
30-
"@cubejs-backend/native": "^0.33.56",
31-
"@cubejs-backend/shared": "^0.33.43",
30+
"@cubejs-backend/native": "^0.33.57",
31+
"@cubejs-backend/shared": "^0.33.57",
3232
"@ungap/structured-clone": "^0.3.4",
3333
"body-parser": "^1.19.0",
3434
"chrono-node": "^2.6.2",

packages/cubejs-athena-driver/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.33.57](https://github.com/cube-js/cube/compare/v0.33.56...v0.33.57) (2023-09-15)
7+
8+
**Note:** Version bump only for package @cubejs-backend/athena-driver
9+
10+
11+
12+
13+
614
## [0.33.56](https://github.com/cube-js/cube/compare/v0.33.55...v0.33.56) (2023-09-13)
715

816
**Note:** Version bump only for package @cubejs-backend/athena-driver

packages/cubejs-athena-driver/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@cubejs-backend/athena-driver",
33
"description": "Cube.js Athena database driver",
44
"author": "Cube Dev, Inc.",
5-
"version": "0.33.56",
5+
"version": "0.33.57",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/cube-js/cube.git",
@@ -31,13 +31,13 @@
3131
"@aws-sdk/client-athena": "^3.22.0",
3232
"@aws-sdk/client-s3": "^3.49.0",
3333
"@aws-sdk/s3-request-presigner": "^3.49.0",
34-
"@cubejs-backend/base-driver": "^0.33.43",
35-
"@cubejs-backend/shared": "^0.33.43",
34+
"@cubejs-backend/base-driver": "^0.33.57",
35+
"@cubejs-backend/shared": "^0.33.57",
3636
"sqlstring": "^2.3.1"
3737
},
3838
"devDependencies": {
3939
"@cubejs-backend/linter": "^0.33.0",
40-
"@cubejs-backend/testing-shared": "^0.33.56",
40+
"@cubejs-backend/testing-shared": "^0.33.57",
4141
"@types/ramda": "^0.27.40",
4242
"typescript": "~4.9.5"
4343
},

packages/cubejs-backend-cloud/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.33.57](https://github.com/cube-js/cube/compare/v0.33.56...v0.33.57) (2023-09-15)
7+
8+
**Note:** Version bump only for package @cubejs-backend/cloud
9+
10+
11+
12+
13+
614
## [0.33.43](https://github.com/cube-js/cube/compare/v0.33.42...v0.33.43) (2023-08-04)
715

816
**Note:** Version bump only for package @cubejs-backend/cloud

packages/cubejs-backend-cloud/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cubejs-backend/cloud",
3-
"version": "0.33.43",
3+
"version": "0.33.57",
44
"description": "Cube Cloud package",
55
"main": "dist/src/index.js",
66
"typings": "dist/src/index.d.ts",
@@ -32,7 +32,7 @@
3232
},
3333
"dependencies": {
3434
"@cubejs-backend/dotenv": "^9.0.2",
35-
"@cubejs-backend/shared": "^0.33.43",
35+
"@cubejs-backend/shared": "^0.33.57",
3636
"chokidar": "^3.5.1",
3737
"env-var": "^6.3.0",
3838
"fs-extra": "^9.1.0",

packages/cubejs-backend-maven/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.33.57](https://github.com/cube-js/cube/compare/v0.33.56...v0.33.57) (2023-09-15)
7+
8+
**Note:** Version bump only for package @cubejs-backend/maven
9+
10+
11+
12+
13+
614
## [0.33.43](https://github.com/cube-js/cube/compare/v0.33.42...v0.33.43) (2023-08-04)
715

816
**Note:** Version bump only for package @cubejs-backend/maven

packages/cubejs-backend-maven/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@cubejs-backend/maven",
33
"description": "Cube.js Maven Wrapper for java dependencies downloading",
44
"author": "Cube Dev, Inc.",
5-
"version": "0.33.43",
5+
"version": "0.33.57",
66
"license": "Apache-2.0",
77
"repository": {
88
"type": "git",
@@ -31,7 +31,7 @@
3131
"dist/src/*"
3232
],
3333
"dependencies": {
34-
"@cubejs-backend/shared": "^0.33.43",
34+
"@cubejs-backend/shared": "^0.33.57",
3535
"source-map-support": "^0.5.19",
3636
"xmlbuilder2": "^2.4.0"
3737
},

0 commit comments

Comments
 (0)