Skip to content

Commit 7b797bf

Browse files
committed
v0.34.57
1 parent 77cc883 commit 7b797bf

File tree

100 files changed

+669
-206
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

+669
-206
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,31 @@
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.34.57](https://github.com/cube-js/cube/compare/v0.34.56...v0.34.57) (2024-02-26)
7+
8+
9+
### Bug Fixes
10+
11+
* **cubesql:** `ungrouped` query can be routed to Cube Store ([#7810](https://github.com/cube-js/cube/issues/7810)) ([b122837](https://github.com/cube-js/cube/commit/b122837de9cd4fcaca4ddc0e7f85ff695de09483))
12+
* **cubesql:** Can't find rewrite due to AST node limit reached for remaining non-equivalent date and timestamp constant folding rules ([b79f697](https://github.com/cube-js/cube/commit/b79f69739e2b8cb74cfc86db72fa7157dd723960))
13+
* **cubesql:** More readable error message during SQL generation ([d9a7194](https://github.com/cube-js/cube/commit/d9a719479d6ca00ef5b2b511677cd777ceb131e7))
14+
* **cubesql:** Support `Z` postfix in `Timestamp` response transformation ([c013c91](https://github.com/cube-js/cube/commit/c013c913bbeb8dabacc508240ab94956f1172a8b))
15+
* **cubesql:** Timestamp equals filter support ([754a0df](https://github.com/cube-js/cube/commit/754a0df3a20cae5269e961649a01fb5047906645))
16+
* **cubesql:** writerOrChannel.resolve is not a function ([abc95e2](https://github.com/cube-js/cube/commit/abc95e259c82894aea63371e468c98d640b4d42e))
17+
18+
19+
### Features
20+
21+
* **cubesql:** `WHERE` SQL push down ([#7808](https://github.com/cube-js/cube/issues/7808)) ([98b5709](https://github.com/cube-js/cube/commit/98b570946905586f16a502f83b0a1cf8e4aa92a6))
22+
* **cubesql:** Allow replacement of aggregation functions in SQL push down ([#7811](https://github.com/cube-js/cube/issues/7811)) ([97fa757](https://github.com/cube-js/cube/commit/97fa757a0d22e6d7d9432d686005765b28271f7c))
23+
* **cubesql:** Support placeholders in `OFFSET`, `FETCH ...` ([60aad90](https://github.com/cube-js/cube/commit/60aad90a237800f4471bb4efa10ec590b50e19fe))
24+
* **cubesql:** Support temporary tables ([7022611](https://github.com/cube-js/cube/commit/702261156fc3748fc7d3103f28bd4f4648fd4e0b))
25+
* **duckdb-driver:** Add support for local fs duckdb database path ([#7799](https://github.com/cube-js/cube/issues/7799)) ([77cc883](https://github.com/cube-js/cube/commit/77cc883a3d73d37730a82ecf9128b8929abb2ca3))
26+
27+
28+
29+
30+
631
## [0.34.56](https://github.com/cube-js/cube/compare/v0.34.55...v0.34.56) (2024-02-20)
732

833

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.34.56",
2+
"version": "0.34.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.34.57](https://github.com/cube-js/cube/compare/v0.34.56...v0.34.57) (2024-02-26)
7+
8+
9+
### Features
10+
11+
* **cubesql:** `WHERE` SQL push down ([#7808](https://github.com/cube-js/cube/issues/7808)) ([98b5709](https://github.com/cube-js/cube/commit/98b570946905586f16a502f83b0a1cf8e4aa92a6))
12+
13+
14+
15+
16+
617
## [0.34.56](https://github.com/cube-js/cube/compare/v0.34.55...v0.34.56) (2024-02-20)
718

819

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.34.56",
5+
"version": "0.34.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.34.56",
31-
"@cubejs-backend/shared": "^0.34.55",
30+
"@cubejs-backend/native": "^0.34.57",
31+
"@cubejs-backend/shared": "^0.34.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.34.57](https://github.com/cube-js/cube/compare/v0.34.56...v0.34.57) (2024-02-26)
7+
8+
**Note:** Version bump only for package @cubejs-backend/athena-driver
9+
10+
11+
12+
13+
614
## [0.34.56](https://github.com/cube-js/cube/compare/v0.34.55...v0.34.56) (2024-02-20)
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.34.56",
5+
"version": "0.34.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.34.55",
35-
"@cubejs-backend/shared": "^0.34.55",
34+
"@cubejs-backend/base-driver": "^0.34.57",
35+
"@cubejs-backend/shared": "^0.34.57",
3636
"sqlstring": "^2.3.1"
3737
},
3838
"devDependencies": {
3939
"@cubejs-backend/linter": "^0.34.25",
40-
"@cubejs-backend/testing-shared": "^0.34.56",
40+
"@cubejs-backend/testing-shared": "^0.34.57",
4141
"@types/ramda": "^0.27.40",
4242
"typescript": "~5.2.2"
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.34.57](https://github.com/cube-js/cube.js/compare/v0.34.56...v0.34.57) (2024-02-26)
7+
8+
**Note:** Version bump only for package @cubejs-backend/cloud
9+
10+
11+
12+
13+
614
## [0.34.55](https://github.com/cube-js/cube.js/compare/v0.34.54...v0.34.55) (2024-02-15)
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.34.55",
3+
"version": "0.34.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.34.55",
35+
"@cubejs-backend/shared": "^0.34.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.34.57](https://github.com/cube-js/cube/compare/v0.34.56...v0.34.57) (2024-02-26)
7+
8+
**Note:** Version bump only for package @cubejs-backend/maven
9+
10+
11+
12+
13+
614
## [0.34.55](https://github.com/cube-js/cube/compare/v0.34.54...v0.34.55) (2024-02-15)
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.34.55",
5+
"version": "0.34.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.34.55",
34+
"@cubejs-backend/shared": "^0.34.57",
3535
"source-map-support": "^0.5.19",
3636
"xmlbuilder2": "^2.4.0"
3737
},

0 commit comments

Comments
 (0)