Skip to content

Commit e19beb5

Browse files
committed
v1.2.19
1 parent 3de622d commit e19beb5

File tree

116 files changed

+488
-487
lines changed

Some content is hidden

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

116 files changed

+488
-487
lines changed

CHANGELOG.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,25 @@
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-
## [1.2.18](https://github.com/cube-js/cube/compare/v1.2.17...v1.2.18) (2025-03-06)
7-
8-
9-
### Bug Fixes
10-
11-
* **cubesql:** Calculate proper limit and offset for CubeScan in nested limits case ([#8924](https://github.com/cube-js/cube/issues/8924)) ([0e95f18](https://github.com/cube-js/cube/commit/0e95f18bede4d2c79c8c3b729004715aa8aa7a58))
12-
* **cubesql:** Make cube join check stricter ([#9043](https://github.com/cube-js/cube/issues/9043)) ([feaf03b](https://github.com/cube-js/cube/commit/feaf03b5a0199abda5e6d1f41ae5487c509a1276))
13-
* **query-orchestrator:** Fix improper pre-aggregation buildRange construction for non UTC timezones ([#9284](https://github.com/cube-js/cube/issues/9284)) ([ef12d8d](https://github.com/cube-js/cube/commit/ef12d8d02702df7dcc1e6531c1b0aee6afa576ef))
14-
* **tesseract:** Don't generate COALESCE with single argument ([#9300](https://github.com/cube-js/cube/issues/9300)) ([3174be1](https://github.com/cube-js/cube/commit/3174be17cd1d9ba6aa1c0ec3ccbd0c5426342dc0))
15-
* **tesseract:** fix wrong default alias for symbols with digits in name ([#9299](https://github.com/cube-js/cube/issues/9299)) ([329d228](https://github.com/cube-js/cube/commit/329d2289e115a5f71714755323a8b8a92a260519))
16-
6+
## [1.2.19](https://github.com/cube-js/cube/compare/v1.2.18...v1.2.19) (2025-03-08)
177

188
### Features
199

20-
* **cubesql:** Support multiple columns on each side in ungrouped-grouped join condition ([#9282](https://github.com/cube-js/cube/issues/9282)) ([e25d5c1](https://github.com/cube-js/cube/commit/e25d5c1ce686e743c67fce45ae596270c9e1ddbe))
10+
- **pinot-driver:** Add enableNullHandling to query options using env var ([#9310](https://github.com/cube-js/cube/issues/9310)) ([df763cc](https://github.com/cube-js/cube/commit/df763cc9a375eb656d6ac4dc10adbd9a68082a0e))
2111

12+
## [1.2.18](https://github.com/cube-js/cube/compare/v1.2.17...v1.2.18) (2025-03-06)
2213

14+
### Bug Fixes
2315

16+
- **cubesql:** Calculate proper limit and offset for CubeScan in nested limits case ([#8924](https://github.com/cube-js/cube/issues/8924)) ([0e95f18](https://github.com/cube-js/cube/commit/0e95f18bede4d2c79c8c3b729004715aa8aa7a58))
17+
- **cubesql:** Make cube join check stricter ([#9043](https://github.com/cube-js/cube/issues/9043)) ([feaf03b](https://github.com/cube-js/cube/commit/feaf03b5a0199abda5e6d1f41ae5487c509a1276))
18+
- **query-orchestrator:** Fix improper pre-aggregation buildRange construction for non UTC timezones ([#9284](https://github.com/cube-js/cube/issues/9284)) ([ef12d8d](https://github.com/cube-js/cube/commit/ef12d8d02702df7dcc1e6531c1b0aee6afa576ef))
19+
- **tesseract:** Don't generate COALESCE with single argument ([#9300](https://github.com/cube-js/cube/issues/9300)) ([3174be1](https://github.com/cube-js/cube/commit/3174be17cd1d9ba6aa1c0ec3ccbd0c5426342dc0))
20+
- **tesseract:** fix wrong default alias for symbols with digits in name ([#9299](https://github.com/cube-js/cube/issues/9299)) ([329d228](https://github.com/cube-js/cube/commit/329d2289e115a5f71714755323a8b8a92a260519))
21+
22+
### Features
2423

24+
- **cubesql:** Support multiple columns on each side in ungrouped-grouped join condition ([#9282](https://github.com/cube-js/cube/issues/9282)) ([e25d5c1](https://github.com/cube-js/cube/commit/e25d5c1ce686e743c67fce45ae596270c9e1ddbe))
2525

2626
## [1.2.17](https://github.com/cube-js/cube/compare/v1.2.16...v1.2.17) (2025-03-05)
2727

lerna.json

+3-8
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,13 @@
11
{
2-
"version": "1.2.18",
2+
"version": "1.2.19",
33
"npmClient": "yarn",
44
"command": {
55
"bootstrap": {
66
"npmClient": "yarn",
7-
"npmClientArgs": [
8-
"--frozen-lockfile"
9-
]
7+
"npmClientArgs": ["--frozen-lockfile"]
108
},
119
"version": {
12-
"allowBranch": [
13-
"master",
14-
"lts/*"
15-
]
10+
"allowBranch": ["master", "lts/*"]
1611
}
1712
},
1813
"$schema": "node_modules/lerna/schemas/lerna-schema.json"

packages/cubejs-api-gateway/CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
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-
## [1.2.18](https://github.com/cube-js/cube/compare/v1.2.17...v1.2.18) (2025-03-06)
6+
## [1.2.19](https://github.com/cube-js/cube/compare/v1.2.18...v1.2.19) (2025-03-08)
77

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

10+
## [1.2.18](https://github.com/cube-js/cube/compare/v1.2.17...v1.2.18) (2025-03-06)
1011

11-
12-
12+
**Note:** Version bump only for package @cubejs-backend/api-gateway
1313

1414
## [1.2.17](https://github.com/cube-js/cube/compare/v1.2.16...v1.2.17) (2025-03-05)
1515

packages/cubejs-api-gateway/package.json

+4-4
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": "1.2.18",
5+
"version": "1.2.19",
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": "1.2.18",
31-
"@cubejs-backend/shared": "1.2.18",
30+
"@cubejs-backend/native": "1.2.19",
31+
"@cubejs-backend/shared": "1.2.19",
3232
"@ungap/structured-clone": "^0.3.4",
3333
"body-parser": "^1.19.0",
3434
"chrono-node": "^2.6.2",
@@ -50,7 +50,7 @@
5050
"uuid": "^8.3.2"
5151
},
5252
"devDependencies": {
53-
"@cubejs-backend/linter": "1.2.18",
53+
"@cubejs-backend/linter": "1.2.19",
5454
"@types/express": "^4.17.21",
5555
"@types/jest": "^27",
5656
"@types/jsonwebtoken": "^9.0.2",

packages/cubejs-athena-driver/CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
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-
## [1.2.18](https://github.com/cube-js/cube/compare/v1.2.17...v1.2.18) (2025-03-06)
6+
## [1.2.19](https://github.com/cube-js/cube/compare/v1.2.18...v1.2.19) (2025-03-08)
77

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

10+
## [1.2.18](https://github.com/cube-js/cube/compare/v1.2.17...v1.2.18) (2025-03-06)
1011

11-
12-
12+
**Note:** Version bump only for package @cubejs-backend/athena-driver
1313

1414
## [1.2.17](https://github.com/cube-js/cube/compare/v1.2.16...v1.2.17) (2025-03-05)
1515

packages/cubejs-athena-driver/package.json

+5-5
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": "1.2.18",
5+
"version": "1.2.19",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/cube-js/cube.git",
@@ -29,13 +29,13 @@
2929
"types": "dist/src/index.d.ts",
3030
"dependencies": {
3131
"@aws-sdk/client-athena": "^3.22.0",
32-
"@cubejs-backend/base-driver": "1.2.18",
33-
"@cubejs-backend/shared": "1.2.18",
32+
"@cubejs-backend/base-driver": "1.2.19",
33+
"@cubejs-backend/shared": "1.2.19",
3434
"sqlstring": "^2.3.1"
3535
},
3636
"devDependencies": {
37-
"@cubejs-backend/linter": "1.2.18",
38-
"@cubejs-backend/testing-shared": "1.2.18",
37+
"@cubejs-backend/linter": "1.2.19",
38+
"@cubejs-backend/testing-shared": "1.2.19",
3939
"@types/ramda": "^0.27.40",
4040
"typescript": "~5.2.2"
4141
},

packages/cubejs-backend-cloud/CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
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-
## [1.2.18](https://github.com/cube-js/cube/compare/v1.2.17...v1.2.18) (2025-03-06)
6+
## [1.2.19](https://github.com/cube-js/cube/compare/v1.2.18...v1.2.19) (2025-03-08)
77

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

10+
## [1.2.18](https://github.com/cube-js/cube/compare/v1.2.17...v1.2.18) (2025-03-06)
1011

11-
12-
12+
**Note:** Version bump only for package @cubejs-backend/cloud
1313

1414
## [1.2.17](/compare/v1.2.16...v1.2.17) (2025-03-05)
1515

packages/cubejs-backend-cloud/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cubejs-backend/cloud",
3-
"version": "1.2.18",
3+
"version": "1.2.19",
44
"description": "Cube Cloud package",
55
"main": "dist/src/index.js",
66
"typings": "dist/src/index.d.ts",
@@ -25,15 +25,15 @@
2525
"devDependencies": {
2626
"@babel/core": "^7.24.5",
2727
"@babel/preset-env": "^7.24.5",
28-
"@cubejs-backend/linter": "1.2.18",
28+
"@cubejs-backend/linter": "1.2.19",
2929
"@types/fs-extra": "^9.0.8",
3030
"@types/jest": "^27",
3131
"jest": "^27",
3232
"typescript": "~5.2.2"
3333
},
3434
"dependencies": {
3535
"@cubejs-backend/dotenv": "^9.0.2",
36-
"@cubejs-backend/shared": "1.2.18",
36+
"@cubejs-backend/shared": "1.2.19",
3737
"chokidar": "^3.5.1",
3838
"env-var": "^6.3.0",
3939
"form-data": "^4.0.0",

packages/cubejs-backend-maven/CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
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-
## [1.2.18](https://github.com/cube-js/cube/compare/v1.2.17...v1.2.18) (2025-03-06)
6+
## [1.2.19](https://github.com/cube-js/cube/compare/v1.2.18...v1.2.19) (2025-03-08)
77

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

10+
## [1.2.18](https://github.com/cube-js/cube/compare/v1.2.17...v1.2.18) (2025-03-06)
1011

11-
12-
12+
**Note:** Version bump only for package @cubejs-backend/maven
1313

1414
## [1.2.17](https://github.com/cube-js/cube/compare/v1.2.16...v1.2.17) (2025-03-05)
1515

packages/cubejs-backend-maven/package.json

+3-3
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": "1.2.18",
5+
"version": "1.2.19",
66
"license": "Apache-2.0",
77
"repository": {
88
"type": "git",
@@ -31,12 +31,12 @@
3131
"dist/src/*"
3232
],
3333
"dependencies": {
34-
"@cubejs-backend/shared": "1.2.18",
34+
"@cubejs-backend/shared": "1.2.19",
3535
"source-map-support": "^0.5.19",
3636
"xmlbuilder2": "^2.4.0"
3737
},
3838
"devDependencies": {
39-
"@cubejs-backend/linter": "1.2.18",
39+
"@cubejs-backend/linter": "1.2.19",
4040
"@types/jest": "^27",
4141
"@types/node": "^18",
4242
"jest": "^27",

packages/cubejs-backend-native/CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
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-
## [1.2.18](https://github.com/cube-js/cube/compare/v1.2.17...v1.2.18) (2025-03-06)
6+
## [1.2.19](https://github.com/cube-js/cube/compare/v1.2.18...v1.2.19) (2025-03-08)
77

88
**Note:** Version bump only for package @cubejs-backend/native
99

10+
## [1.2.18](https://github.com/cube-js/cube/compare/v1.2.17...v1.2.18) (2025-03-06)
1011

11-
12-
12+
**Note:** Version bump only for package @cubejs-backend/native
1313

1414
## [1.2.17](https://github.com/cube-js/cube/compare/v1.2.16...v1.2.17) (2025-03-05)
1515

packages/cubejs-backend-native/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cubejs-backend/native",
3-
"version": "1.2.18",
3+
"version": "1.2.19",
44
"author": "Cube Dev, Inc.",
55
"description": "Native module for Cube.js (binding to Rust codebase)",
66
"main": "dist/js/index.js",
@@ -34,7 +34,7 @@
3434
"dist/js"
3535
],
3636
"devDependencies": {
37-
"@cubejs-backend/linter": "1.2.18",
37+
"@cubejs-backend/linter": "1.2.19",
3838
"@types/jest": "^27",
3939
"@types/node": "^18",
4040
"cargo-cp-artifact": "^0.1.9",
@@ -44,8 +44,8 @@
4444
"uuid": "^8.3.2"
4545
},
4646
"dependencies": {
47-
"@cubejs-backend/cubesql": "1.2.17",
48-
"@cubejs-backend/shared": "1.2.18",
47+
"@cubejs-backend/cubesql": "1.2.19",
48+
"@cubejs-backend/shared": "1.2.19",
4949
"@cubejs-infra/post-installer": "^0.0.7"
5050
},
5151
"resources": {

packages/cubejs-backend-shared/CHANGELOG.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -3,16 +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-
## [1.2.18](https://github.com/cube-js/cube/compare/v1.2.17...v1.2.18) (2025-03-06)
7-
8-
9-
### Bug Fixes
6+
## [1.2.19](https://github.com/cube-js/cube/compare/v1.2.18...v1.2.19) (2025-03-08)
107

11-
* **query-orchestrator:** Fix improper pre-aggregation buildRange construction for non UTC timezones ([#9284](https://github.com/cube-js/cube/issues/9284)) ([ef12d8d](https://github.com/cube-js/cube/commit/ef12d8d02702df7dcc1e6531c1b0aee6afa576ef))
8+
### Features
129

10+
- **pinot-driver:** Add enableNullHandling to query options using env var ([#9310](https://github.com/cube-js/cube/issues/9310)) ([df763cc](https://github.com/cube-js/cube/commit/df763cc9a375eb656d6ac4dc10adbd9a68082a0e))
1311

12+
## [1.2.18](https://github.com/cube-js/cube/compare/v1.2.17...v1.2.18) (2025-03-06)
1413

14+
### Bug Fixes
1515

16+
- **query-orchestrator:** Fix improper pre-aggregation buildRange construction for non UTC timezones ([#9284](https://github.com/cube-js/cube/issues/9284)) ([ef12d8d](https://github.com/cube-js/cube/commit/ef12d8d02702df7dcc1e6531c1b0aee6afa576ef))
1617

1718
## [1.2.17](/compare/v1.2.16...v1.2.17) (2025-03-05)
1819

packages/cubejs-backend-shared/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cubejs-backend/shared",
3-
"version": "1.2.18",
3+
"version": "1.2.19",
44
"description": "Shared code for Cube.js backend packages",
55
"main": "dist/src/index.js",
66
"typings": "dist/src/index.d.ts",
@@ -22,7 +22,7 @@
2222
"author": "Cube Dev, Inc.",
2323
"license": "Apache-2.0",
2424
"devDependencies": {
25-
"@cubejs-backend/linter": "1.2.18",
25+
"@cubejs-backend/linter": "1.2.19",
2626
"@types/bytes": "^3.1.5",
2727
"@types/cli-progress": "^3.9.1",
2828
"@types/decompress": "^4.2.7",

packages/cubejs-base-driver/CHANGELOG.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,15 @@
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-
## [1.2.18](https://github.com/cube-js/cube/compare/v1.2.17...v1.2.18) (2025-03-06)
7-
8-
9-
### Bug Fixes
10-
11-
* **query-orchestrator:** Fix improper pre-aggregation buildRange construction for non UTC timezones ([#9284](https://github.com/cube-js/cube/issues/9284)) ([ef12d8d](https://github.com/cube-js/cube/commit/ef12d8d02702df7dcc1e6531c1b0aee6afa576ef))
6+
## [1.2.19](https://github.com/cube-js/cube/compare/v1.2.18...v1.2.19) (2025-03-08)
127

8+
**Note:** Version bump only for package @cubejs-backend/base-driver
139

10+
## [1.2.18](https://github.com/cube-js/cube/compare/v1.2.17...v1.2.18) (2025-03-06)
1411

12+
### Bug Fixes
1513

14+
- **query-orchestrator:** Fix improper pre-aggregation buildRange construction for non UTC timezones ([#9284](https://github.com/cube-js/cube/issues/9284)) ([ef12d8d](https://github.com/cube-js/cube/commit/ef12d8d02702df7dcc1e6531c1b0aee6afa576ef))
1615

1716
## [1.2.17](https://github.com/cube-js/cube/compare/v1.2.16...v1.2.17) (2025-03-05)
1817

packages/cubejs-base-driver/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@cubejs-backend/base-driver",
33
"description": "Cube.js Base Driver",
44
"author": "Cube Dev, Inc.",
5-
"version": "1.2.18",
5+
"version": "1.2.19",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/cube-js/cube.git",
@@ -33,11 +33,11 @@
3333
"@aws-sdk/s3-request-presigner": "^3.49.0",
3434
"@azure/identity": "^4.4.1",
3535
"@azure/storage-blob": "^12.9.0",
36-
"@cubejs-backend/shared": "1.2.18",
36+
"@cubejs-backend/shared": "1.2.19",
3737
"@google-cloud/storage": "^7.13.0"
3838
},
3939
"devDependencies": {
40-
"@cubejs-backend/linter": "1.2.18",
40+
"@cubejs-backend/linter": "1.2.19",
4141
"@types/jest": "^27",
4242
"@types/node": "^18",
4343
"jest": "^27",

packages/cubejs-bigquery-driver/CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
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-
## [1.2.18](https://github.com/cube-js/cube/compare/v1.2.17...v1.2.18) (2025-03-06)
6+
## [1.2.19](https://github.com/cube-js/cube/compare/v1.2.18...v1.2.19) (2025-03-08)
77

88
**Note:** Version bump only for package @cubejs-backend/bigquery-driver
99

10+
## [1.2.18](https://github.com/cube-js/cube/compare/v1.2.17...v1.2.18) (2025-03-06)
1011

11-
12-
12+
**Note:** Version bump only for package @cubejs-backend/bigquery-driver
1313

1414
## [1.2.17](https://github.com/cube-js/cube/compare/v1.2.16...v1.2.17) (2025-03-05)
1515

0 commit comments

Comments
 (0)