Skip to content

Commit 7d890ff

Browse files
committed
v1.2.28
1 parent 85d86b4 commit 7d890ff

File tree

116 files changed

+551
-284
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

+551
-284
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
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.28](https://github.com/cube-js/cube/compare/v1.2.27...v1.2.28) (2025-04-01)
7+
8+
### Bug Fixes
9+
10+
- **cubesql:** Allow more filters in CubeScan before aggregation pushdown ([#9409](https://github.com/cube-js/cube/issues/9409)) ([351ac7a](https://github.com/cube-js/cube/commit/351ac7aece72e7795f570f5582250206e3c0124e))
11+
- **schema-compiler:** Fix BigQuery DATETIME_TRUNC() week processing ([#9380](https://github.com/cube-js/cube/issues/9380)) ([6c8564f](https://github.com/cube-js/cube/commit/6c8564ffc15e5e930fa2160be642ea3f3cb7b888))
12+
- **schema-compiler:** Fix date alignment for week-based custom granularities ([#9405](https://github.com/cube-js/cube/issues/9405)) ([8b6c490](https://github.com/cube-js/cube/commit/8b6c4906e2c49fb2c04abc381f6fdb3105309eaf))
13+
- **schema-compiler:** Fix model validation for aliased included members for views ([#9398](https://github.com/cube-js/cube/issues/9398)) ([f5e69f7](https://github.com/cube-js/cube/commit/f5e69f76e7268812aa776a20588875d85077b3bf))
14+
- **schema-compiler:** Skip syntax check for transpiled files ([#9395](https://github.com/cube-js/cube/issues/9395)) ([c624e88](https://github.com/cube-js/cube/commit/c624e88d4793c917bb43c3099a7c9d128b517b8a))
15+
- **tesseract:** Support rolling window with multiple granularities ([#9382](https://github.com/cube-js/cube/issues/9382)) ([6ff9331](https://github.com/cube-js/cube/commit/6ff9331729af59e45385608057fa0e99688cfcbe))
16+
17+
### Features
18+
19+
- **clickhouse-driver:** Allow to enable compression, thanks @Graphmaxer ([#9341](https://github.com/cube-js/cube/issues/9341)) ([78ac7b2](https://github.com/cube-js/cube/commit/78ac7b2d93896bae0903ba5f8e4f055165791962))
20+
- **databricks-jdbc-driver:** Switch to the latest OSS Databricks JDBC driver ([#9376](https://github.com/cube-js/cube/issues/9376)) ([29fdd61](https://github.com/cube-js/cube/commit/29fdd615f7eb70690f5fc85897e0c93a5a0cc29a))
21+
- **tesseract:** Custom granularities support ([#9400](https://github.com/cube-js/cube/issues/9400)) ([dc93e40](https://github.com/cube-js/cube/commit/dc93e4022d4c2741d0aafcdb1007a69c6181f232))
22+
- **tesseract:** Support for rolling window without date range ([#9364](https://github.com/cube-js/cube/issues/9364)) ([fd94b02](https://github.com/cube-js/cube/commit/fd94b02b8bba286a67264057f9259769215239a9))
23+
624
## [1.2.27](https://github.com/cube-js/cube/compare/v1.2.26...v1.2.27) (2025-03-25)
725

826
### Features

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.2.27",
2+
"version": "1.2.28",
33
"npmClient": "yarn",
44
"command": {
55
"bootstrap": {

packages/cubejs-api-gateway/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.28](https://github.com/cube-js/cube/compare/v1.2.27...v1.2.28) (2025-04-01)
7+
8+
**Note:** Version bump only for package @cubejs-backend/api-gateway
9+
610
## [1.2.27](https://github.com/cube-js/cube/compare/v1.2.26...v1.2.27) (2025-03-25)
711

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

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

packages/cubejs-athena-driver/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.28](https://github.com/cube-js/cube/compare/v1.2.27...v1.2.28) (2025-04-01)
7+
8+
**Note:** Version bump only for package @cubejs-backend/athena-driver
9+
610
## [1.2.27](https://github.com/cube-js/cube/compare/v1.2.26...v1.2.27) (2025-03-25)
711

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

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

packages/cubejs-backend-cloud/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.28](https://github.com/cube-js/cube/compare/v1.2.27...v1.2.28) (2025-04-01)
7+
8+
**Note:** Version bump only for package @cubejs-backend/cloud
9+
610
## [1.2.27](https://github.com/cube-js/cube/compare/v1.2.26...v1.2.27) (2025-03-25)
711

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

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.27",
3+
"version": "1.2.28",
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.27",
28+
"@cubejs-backend/linter": "1.2.28",
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.27",
36+
"@cubejs-backend/shared": "1.2.28",
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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.28](https://github.com/cube-js/cube/compare/v1.2.27...v1.2.28) (2025-04-01)
7+
8+
**Note:** Version bump only for package @cubejs-backend/maven
9+
610
## [1.2.27](https://github.com/cube-js/cube/compare/v1.2.26...v1.2.27) (2025-03-25)
711

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

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

0 commit comments

Comments
 (0)