Skip to content

Commit 8ff25d0

Browse files
committed
v1.2.6
1 parent 344f08d commit 8ff25d0

File tree

116 files changed

+500
-459
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

+500
-459
lines changed

CHANGELOG.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,30 @@
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.5](https://github.com/cube-js/cube/compare/v1.2.4...v1.2.5) (2025-02-13)
7-
6+
## [1.2.6](https://github.com/cube-js/cube/compare/v1.2.5...v1.2.6) (2025-02-18)
87

98
### Bug Fixes
109

11-
* **cubesql:** Fix SELECT DISTINCT on pushdown ([#9144](https://github.com/cube-js/cube/issues/9144)) ([6483f66](https://github.com/cube-js/cube/commit/6483f66c826ad9a638af8770850219d923b3e7d9))
12-
10+
- **api-gateway:** Fix CompareDateRange queries native transformations ([#9232](https://github.com/cube-js/cube/issues/9232)) ([9c6153d](https://github.com/cube-js/cube/commit/9c6153d1e958e42162acb5af5964e9792a7f0433))
11+
- **schema-compiler:** Correct models transpilation in native in multitenant environments ([#9234](https://github.com/cube-js/cube/issues/9234)) ([84f90c0](https://github.com/cube-js/cube/commit/84f90c07ee3827e6f3652dd6c9fab0993ecc8150))
1312

1413
### Features
1514

16-
* Upgrade rust to 1.84.1 (stable) ([#9222](https://github.com/cube-js/cube/issues/9222)) ([cfc95b5](https://github.com/cube-js/cube/commit/cfc95b5e5601166d2a0aa388a211d4be66630cd8))
15+
- **schema-compiler:** Boost models transpilation 10-13x times (using SWC instead of Babel) ([#9225](https://github.com/cube-js/cube/issues/9225)) ([2dd9a4a](https://github.com/cube-js/cube/commit/2dd9a4a5ba0f178e304befc476609fc30ada8975))
16+
17+
### Performance Improvements
18+
19+
- **cubesql:** Avoid allocations in MetaContext methods ([#9228](https://github.com/cube-js/cube/issues/9228)) ([ba753d0](https://github.com/cube-js/cube/commit/ba753d0d43927b50d5cf8faf5f09de3e53bec3db))
1720

21+
## [1.2.5](https://github.com/cube-js/cube/compare/v1.2.4...v1.2.5) (2025-02-13)
1822

23+
### Bug Fixes
1924

25+
- **cubesql:** Fix SELECT DISTINCT on pushdown ([#9144](https://github.com/cube-js/cube/issues/9144)) ([6483f66](https://github.com/cube-js/cube/commit/6483f66c826ad9a638af8770850219d923b3e7d9))
26+
27+
### Features
2028

29+
- Upgrade rust to 1.84.1 (stable) ([#9222](https://github.com/cube-js/cube/issues/9222)) ([cfc95b5](https://github.com/cube-js/cube/commit/cfc95b5e5601166d2a0aa388a211d4be66630cd8))
2130

2231
## [1.2.4](https://github.com/cube-js/cube/compare/v1.2.3...v1.2.4) (2025-02-11)
2332

lerna.json

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,13 @@
11
{
2-
"version": "1.2.5",
2+
"version": "1.2.6",
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

Lines changed: 3 additions & 3 deletions
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.5](https://github.com/cube-js/cube/compare/v1.2.4...v1.2.5) (2025-02-13)
6+
## [1.2.6](https://github.com/cube-js/cube/compare/v1.2.5...v1.2.6) (2025-02-18)
77

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

10+
## [1.2.5](https://github.com/cube-js/cube/compare/v1.2.4...v1.2.5) (2025-02-13)
1011

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

1414
## [1.2.4](https://github.com/cube-js/cube/compare/v1.2.3...v1.2.4) (2025-02-11)
1515

packages/cubejs-api-gateway/package.json

Lines changed: 4 additions & 4 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": "1.2.5",
5+
"version": "1.2.6",
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.5",
31-
"@cubejs-backend/shared": "1.2.5",
30+
"@cubejs-backend/native": "1.2.6",
31+
"@cubejs-backend/shared": "1.2.6",
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.5",
53+
"@cubejs-backend/linter": "1.2.6",
5454
"@types/express": "^4.17.21",
5555
"@types/jest": "^27",
5656
"@types/jsonwebtoken": "^9.0.2",

packages/cubejs-athena-driver/CHANGELOG.md

Lines changed: 3 additions & 3 deletions
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.5](https://github.com/cube-js/cube/compare/v1.2.4...v1.2.5) (2025-02-13)
6+
## [1.2.6](https://github.com/cube-js/cube/compare/v1.2.5...v1.2.6) (2025-02-18)
77

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

10+
## [1.2.5](https://github.com/cube-js/cube/compare/v1.2.4...v1.2.5) (2025-02-13)
1011

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

1414
## [1.2.4](https://github.com/cube-js/cube/compare/v1.2.3...v1.2.4) (2025-02-11)
1515

packages/cubejs-athena-driver/package.json

Lines changed: 5 additions & 5 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": "1.2.5",
5+
"version": "1.2.6",
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.5",
33-
"@cubejs-backend/shared": "1.2.5",
32+
"@cubejs-backend/base-driver": "1.2.6",
33+
"@cubejs-backend/shared": "1.2.6",
3434
"sqlstring": "^2.3.1"
3535
},
3636
"devDependencies": {
37-
"@cubejs-backend/linter": "1.2.5",
38-
"@cubejs-backend/testing-shared": "1.2.5",
37+
"@cubejs-backend/linter": "1.2.6",
38+
"@cubejs-backend/testing-shared": "1.2.6",
3939
"@types/ramda": "^0.27.40",
4040
"typescript": "~5.2.2"
4141
},

packages/cubejs-backend-cloud/CHANGELOG.md

Lines changed: 3 additions & 3 deletions
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.5](https://github.com/cube-js/cube/compare/v1.2.4...v1.2.5) (2025-02-13)
6+
## [1.2.6](https://github.com/cube-js/cube/compare/v1.2.5...v1.2.6) (2025-02-18)
77

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

10+
## [1.2.5](https://github.com/cube-js/cube/compare/v1.2.4...v1.2.5) (2025-02-13)
1011

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

1414
## [1.2.4](/compare/v1.2.3...v1.2.4) (2025-02-11)
1515

packages/cubejs-backend-cloud/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cubejs-backend/cloud",
3-
"version": "1.2.5",
3+
"version": "1.2.6",
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.5",
28+
"@cubejs-backend/linter": "1.2.6",
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.5",
36+
"@cubejs-backend/shared": "1.2.6",
3737
"chokidar": "^3.5.1",
3838
"env-var": "^6.3.0",
3939
"form-data": "^4.0.0",

packages/cubejs-backend-maven/CHANGELOG.md

Lines changed: 3 additions & 3 deletions
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.5](https://github.com/cube-js/cube/compare/v1.2.4...v1.2.5) (2025-02-13)
6+
## [1.2.6](https://github.com/cube-js/cube/compare/v1.2.5...v1.2.6) (2025-02-18)
77

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

10+
## [1.2.5](https://github.com/cube-js/cube/compare/v1.2.4...v1.2.5) (2025-02-13)
1011

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

1414
## [1.2.4](https://github.com/cube-js/cube/compare/v1.2.3...v1.2.4) (2025-02-11)
1515

packages/cubejs-backend-maven/package.json

Lines changed: 3 additions & 3 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": "1.2.5",
5+
"version": "1.2.6",
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.5",
34+
"@cubejs-backend/shared": "1.2.6",
3535
"source-map-support": "^0.5.19",
3636
"xmlbuilder2": "^2.4.0"
3737
},
3838
"devDependencies": {
39-
"@cubejs-backend/linter": "1.2.5",
39+
"@cubejs-backend/linter": "1.2.6",
4040
"@types/jest": "^27",
4141
"@types/node": "^18",
4242
"jest": "^27",

0 commit comments

Comments
 (0)