diff --git a/CHANGELOG.md b/CHANGELOG.md
index 656ca7dcbb529..7593d237b396d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package cubejs
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
### Bug Fixes
diff --git a/docs/pages/product/apis-integrations/core-data-apis.mdx b/docs/pages/product/apis-integrations/core-data-apis.mdx
index d6138861e50da..a674ac2e33a02 100644
--- a/docs/pages/product/apis-integrations/core-data-apis.mdx
+++ b/docs/pages/product/apis-integrations/core-data-apis.mdx
@@ -35,6 +35,7 @@ tools][ref-viz-tools]. Some of the features with partial support are listed belo
| [Hierarchies][ref-hierarchies] | [Microsoft Power BI][ref-powerbi] via the [DAX API][ref-dax-api]
[Cube Cloud for Excel][ref-cube-cloud-for-excel]
[Cube Cloud for Sheets][ref-cube-cloud-for-sheets]
[Tableau][ref-tableau] via [Semantic Layer Sync][ref-sls]
Also, supported in [Playground][ref-playground] |
| Flat [folders][ref-folders] | [Microsoft Power BI][ref-powerbi] via the [DAX API][ref-dax-api]
[Microsoft Excel][ref-excel] via the [MDX API][ref-mdx-api]
[Cube Cloud for Excel][ref-cube-cloud-for-excel]
[Cube Cloud for Sheets][ref-cube-cloud-for-sheets]
[Tableau][ref-tableau] via [Semantic Layer Sync][ref-sls]
[Apache Superset][ref-superset] via [Semantic Layer Sync][ref-sls]
[Preset][ref-preset] via [Semantic Layer Sync][ref-sls]
Also, supported in [Playground][ref-playground] |
| Nested [folders][ref-folders] | [Microsoft Power BI][ref-powerbi] via the [DAX API][ref-dax-api]
[Microsoft Excel][ref-excel] via the [MDX API][ref-mdx-api] |
+| [Custom time formats][ref-custom-time-formats] | [Microsoft Excel][ref-excel] via the [MDX API][ref-mdx-api]
Also, supported in [Playground][ref-playground] and [Workbooks][ref-workbooks] |
## Authentication methods
@@ -77,4 +78,5 @@ tools][ref-viz-tools]:
[ref-superset]: /product/configuration/visualization-tools/superset
[ref-preset]: /product/configuration/visualization-tools/superset
[ref-playground]: /product/administration/workspace/playground
-
+[ref-custom-time-formats]: /product/data-modeling/reference/types-and-formats#custom-time-formats
+[ref-workbooks]: /product/exploration/workbooks
\ No newline at end of file
diff --git a/docs/pages/product/data-modeling/reference/types-and-formats.mdx b/docs/pages/product/data-modeling/reference/types-and-formats.mdx
index 095490a054e41..d55347037ce1b 100644
--- a/docs/pages/product/data-modeling/reference/types-and-formats.mdx
+++ b/docs/pages/product/data-modeling/reference/types-and-formats.mdx
@@ -214,11 +214,11 @@ engine][link-tesseract]. Tesseract is currently in preview. Use the
-Unlike the `number` type which is used for calculations on measures (e.g.,
+Unlike the `number` type which is used for calculations on measures (e.g.,
`SUM(revenue) / COUNT(*)`), `number_agg` indicates that the `sql` parameter contains
a direct SQL aggregate function.
-The `sql` parameter is required and must include a custom aggregate function that returns a numeric
+The `sql` parameter is required and must include a custom aggregate function that returns a numeric
value.
@@ -646,8 +646,8 @@ cubes:
-Note that the type of the target column should be `TIMESTAMP`.
-If your time-based column is type `DATE` or another temporal type,
+Note that the type of the target column should be `TIMESTAMP`.
+If your time-based column is type `DATE` or another temporal type,
you should cast it to a timestamp in the `sql` parameter of the dimension.
@@ -998,8 +998,104 @@ cubes:
+### Custom time formats
+
+Dimensions with `time` type support custom formatting using
+[POSIX strftime][link-strftime] format strings with [d3-time-format][link-d3-time-format] extensions.
+
+
+
+Custom time formatting is subject to support in [visualization tools][ref-viz-tools].
+Check [APIs & Integrations][ref-apis-support] for details.
+
+
+
+
+
+```javascript
+cube(`orders`, {
+ // ...
+
+ dimensions: {
+ created_at: {
+ sql: `created_at`,
+ type: `time`,
+ format: `%Y-%m-%d %H:%M:%S`
+ }
+ }
+})
+```
+
+```yaml
+cubes:
+ - name: orders
+ # ...
+
+ dimensions:
+ - name: created_at
+ sql: created_at
+ type: time
+ format: "%Y-%m-%d %H:%M:%S"
+```
+
+
+
+#### Common format examples
+
+| Format string | Example output |
+|---------------|----------------|
+| `%m/%d/%Y %H:%M` | 12/04/2025 14:30 |
+| `%Y-%m-%d %H:%M:%S` | 2025-12-04 14:30:00 |
+| `%B %d, %Y` | December 04, 2025 |
+| `%b %d, %Y` | Dec 04, 2025 |
+| `%I:%M %p` | 02:30 PM |
+| `%A, %B %d` | Thursday, December 04 |
+| `Q%q %Y` | Q4 2025 |
+| `Week %V, %Y` | Week 49, 2025 |
+
+#### Supported format specifiers
+
+| Specifier | Description |
+|-----------|-------------|
+| `%a` | Abbreviated weekday name |
+| `%A` | Full weekday name |
+| `%b` | Abbreviated month name |
+| `%B` | Full month name |
+| `%c` | Locale's date and time |
+| `%d` | Day of month [01,31] |
+| `%e` | Space-padded day of month |
+| `%f` | Microseconds |
+| `%g` | ISO 8601 year without century |
+| `%G` | ISO 8601 year with century |
+| `%H` | Hour (24-hour) [00,23] |
+| `%I` | Hour (12-hour) [01,12] |
+| `%j` | Day of year [001,366] |
+| `%L` | Milliseconds |
+| `%m` | Month [01,12] |
+| `%M` | Minute [00,59] |
+| `%p` | AM or PM |
+| `%q` | Quarter [1,4] |
+| `%Q` | Milliseconds since UNIX epoch |
+| `%s` | Seconds since UNIX epoch |
+| `%S` | Second [00,61] |
+| `%u` | Monday-based weekday [1,7] |
+| `%U` | Sunday-based week number [00,53] |
+| `%V` | ISO 8601 week number |
+| `%w` | Sunday-based weekday [0,6] |
+| `%W` | Monday-based week number [00,53] |
+| `%x` | Locale's date |
+| `%X` | Locale's time |
+| `%y` | Year without century [00,99] |
+| `%Y` | Year with century |
+| `%Z` | Time zone name |
+| `%%` | Literal percent sign |
+
[ref-string-time-dims]: /product/data-modeling/recipes/string-time-dimensions
[ref-schema-ref-preaggs-rollup]:
/product/data-modeling/reference/pre-aggregations#rollup
[ref-calculated-measures]: /product/data-modeling/concepts/calculated-members#calculated-measures
[ref-drilldowns]: /product/apis-integrations/recipes/drilldowns
+[link-strftime]: https://pubs.opengroup.org/onlinepubs/009695399/functions/strptime.html
+[link-d3-time-format]: https://d3js.org/d3-time-format
+[ref-viz-tools]: /product/configuration/visualization-tools
+[ref-apis-support]: /product/apis-integrations/core-data-apis#data-modeling
\ No newline at end of file
diff --git a/lerna.json b/lerna.json
index 1238ac39fe49b..b34bcef2b5b8a 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "1.6.0",
+ "version": "1.6.1",
"npmClient": "yarn",
"command": {
"bootstrap": {
diff --git a/packages/cubejs-api-gateway/CHANGELOG.md b/packages/cubejs-api-gateway/CHANGELOG.md
index a827cc3590089..d58a74eb2e293 100644
--- a/packages/cubejs-api-gateway/CHANGELOG.md
+++ b/packages/cubejs-api-gateway/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/api-gateway
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
### Bug Fixes
diff --git a/packages/cubejs-api-gateway/package.json b/packages/cubejs-api-gateway/package.json
index c2ab716b1809b..24390e717a5eb 100644
--- a/packages/cubejs-api-gateway/package.json
+++ b/packages/cubejs-api-gateway/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/api-gateway",
"description": "Cube.js API Gateway",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -27,9 +27,9 @@
"dist/src/*"
],
"dependencies": {
- "@cubejs-backend/native": "1.6.0",
- "@cubejs-backend/query-orchestrator": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/native": "1.6.1",
+ "@cubejs-backend/query-orchestrator": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"@ungap/structured-clone": "^0.3.4",
"assert-never": "^1.4.0",
"body-parser": "^1.19.0",
@@ -53,7 +53,7 @@
"zod": "^4.1.13"
},
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
"@types/express": "^4.17.21",
"@types/jest": "^29",
"@types/jsonwebtoken": "^9.0.2",
diff --git a/packages/cubejs-athena-driver/CHANGELOG.md b/packages/cubejs-athena-driver/CHANGELOG.md
index 4633d794c2ad7..3a96b8836773b 100644
--- a/packages/cubejs-athena-driver/CHANGELOG.md
+++ b/packages/cubejs-athena-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/athena-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/athena-driver
diff --git a/packages/cubejs-athena-driver/package.json b/packages/cubejs-athena-driver/package.json
index 6dbed18f8fc9c..03a3c5ba34b6f 100644
--- a/packages/cubejs-athena-driver/package.json
+++ b/packages/cubejs-athena-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/athena-driver",
"description": "Cube.js Athena database driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -30,13 +30,13 @@
"dependencies": {
"@aws-sdk/client-athena": "^3.22.0",
"@aws-sdk/credential-providers": "^3.22.0",
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"sqlstring": "^2.3.1"
},
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
- "@cubejs-backend/testing-shared": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
+ "@cubejs-backend/testing-shared": "1.6.1",
"@types/ramda": "^0.27.40",
"typescript": "~5.2.2"
},
diff --git a/packages/cubejs-backend-cloud/CHANGELOG.md b/packages/cubejs-backend-cloud/CHANGELOG.md
index a3be55d9667f0..13a88c03e6c2f 100644
--- a/packages/cubejs-backend-cloud/CHANGELOG.md
+++ b/packages/cubejs-backend-cloud/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/cloud
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/cloud
diff --git a/packages/cubejs-backend-cloud/package.json b/packages/cubejs-backend-cloud/package.json
index 41857fa04fb98..2d97a4d58f72d 100644
--- a/packages/cubejs-backend-cloud/package.json
+++ b/packages/cubejs-backend-cloud/package.json
@@ -1,6 +1,6 @@
{
"name": "@cubejs-backend/cloud",
- "version": "1.6.0",
+ "version": "1.6.1",
"description": "Cube Cloud package",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
@@ -30,7 +30,7 @@
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
- "@cubejs-backend/linter": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
"@types/fs-extra": "^9.0.8",
"@types/jest": "^29",
"jest": "^29",
@@ -38,7 +38,7 @@
},
"dependencies": {
"@cubejs-backend/dotenv": "^9.0.2",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/shared": "1.6.1",
"chokidar": "^3.5.1",
"env-var": "^6.3.0",
"form-data": "^4.0.0",
diff --git a/packages/cubejs-backend-maven/CHANGELOG.md b/packages/cubejs-backend-maven/CHANGELOG.md
index f0340b4227f4a..53ea171d94122 100644
--- a/packages/cubejs-backend-maven/CHANGELOG.md
+++ b/packages/cubejs-backend-maven/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/maven
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/maven
diff --git a/packages/cubejs-backend-maven/package.json b/packages/cubejs-backend-maven/package.json
index 6c704fd4259b4..dd36efee2e084 100644
--- a/packages/cubejs-backend-maven/package.json
+++ b/packages/cubejs-backend-maven/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/maven",
"description": "Cube.js Maven Wrapper for java dependencies downloading",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"license": "Apache-2.0",
"repository": {
"type": "git",
@@ -31,12 +31,12 @@
"dist/src/*"
],
"dependencies": {
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/shared": "1.6.1",
"source-map-support": "^0.5.19",
"xmlbuilder2": "^2.4.0"
},
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
"@types/jest": "^29",
"@types/node": "^20",
"jest": "^29",
diff --git a/packages/cubejs-backend-native/CHANGELOG.md b/packages/cubejs-backend-native/CHANGELOG.md
index f9c8e2a2c74b2..bce3eddd20d77 100644
--- a/packages/cubejs-backend-native/CHANGELOG.md
+++ b/packages/cubejs-backend-native/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/native
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/native
diff --git a/packages/cubejs-backend-native/package.json b/packages/cubejs-backend-native/package.json
index 00b2fd78eb1b3..0090dbf2d87c6 100644
--- a/packages/cubejs-backend-native/package.json
+++ b/packages/cubejs-backend-native/package.json
@@ -1,6 +1,6 @@
{
"name": "@cubejs-backend/native",
- "version": "1.6.0",
+ "version": "1.6.1",
"author": "Cube Dev, Inc.",
"description": "Native module for Cube.js (binding to Rust codebase)",
"main": "dist/js/index.js",
@@ -36,7 +36,7 @@
"dist/js"
],
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
"@types/jest": "^29",
"@types/node": "^20",
"cargo-cp-artifact": "^0.1.9",
@@ -47,8 +47,8 @@
"uuid": "^8.3.2"
},
"dependencies": {
- "@cubejs-backend/cubesql": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/cubesql": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"@cubejs-infra/post-installer": "^0.0.7"
},
"resources": {
diff --git a/packages/cubejs-backend-shared/CHANGELOG.md b/packages/cubejs-backend-shared/CHANGELOG.md
index 61036a4517606..c687920e00de1 100644
--- a/packages/cubejs-backend-shared/CHANGELOG.md
+++ b/packages/cubejs-backend-shared/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/shared
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/shared
diff --git a/packages/cubejs-backend-shared/package.json b/packages/cubejs-backend-shared/package.json
index 5b18981972a43..dc465961672e3 100644
--- a/packages/cubejs-backend-shared/package.json
+++ b/packages/cubejs-backend-shared/package.json
@@ -1,6 +1,6 @@
{
"name": "@cubejs-backend/shared",
- "version": "1.6.0",
+ "version": "1.6.1",
"description": "Shared code for Cube.js backend packages",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
@@ -27,7 +27,7 @@
},
"license": "Apache-2.0",
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
"@types/bytes": "^3.1.5",
"@types/cli-progress": "^3.9.1",
"@types/decompress": "^4.2.7",
diff --git a/packages/cubejs-backend-shared/src/env.ts b/packages/cubejs-backend-shared/src/env.ts
index 7128ff1db12de..327a5b14d3b2b 100644
--- a/packages/cubejs-backend-shared/src/env.ts
+++ b/packages/cubejs-backend-shared/src/env.ts
@@ -2080,7 +2080,7 @@ const variables: Record any> = {
.default('30')
.asInt(),
cubeStoreRollingWindowJoin: () => get('CUBEJS_CUBESTORE_ROLLING_WINDOW_JOIN')
- .default('false')
+ .default('true')
.asBoolStrict(),
allowUngroupedWithoutPrimaryKey: () => get('CUBEJS_ALLOW_UNGROUPED_WITHOUT_PRIMARY_KEY')
.default(get('CUBESQL_SQL_PUSH_DOWN').default('true').asString())
diff --git a/packages/cubejs-base-driver/CHANGELOG.md b/packages/cubejs-base-driver/CHANGELOG.md
index 892a81e155fbc..16640ab6f571a 100644
--- a/packages/cubejs-base-driver/CHANGELOG.md
+++ b/packages/cubejs-base-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/base-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/base-driver
diff --git a/packages/cubejs-base-driver/package.json b/packages/cubejs-base-driver/package.json
index 92202b4e30644..051f64c32272a 100644
--- a/packages/cubejs-base-driver/package.json
+++ b/packages/cubejs-base-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/base-driver",
"description": "Cube.js Base Driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -33,11 +33,11 @@
"@aws-sdk/s3-request-presigner": "^3.49.0",
"@azure/identity": "^4.4.1",
"@azure/storage-blob": "^12.9.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/shared": "1.6.1",
"@google-cloud/storage": "^7.13.0"
},
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
"@types/jest": "^29",
"@types/node": "^20",
"jest": "^29",
diff --git a/packages/cubejs-bigquery-driver/CHANGELOG.md b/packages/cubejs-bigquery-driver/CHANGELOG.md
index 6dab8753a511d..fc3ebb6d560d0 100644
--- a/packages/cubejs-bigquery-driver/CHANGELOG.md
+++ b/packages/cubejs-bigquery-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/bigquery-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/bigquery-driver
diff --git a/packages/cubejs-bigquery-driver/package.json b/packages/cubejs-bigquery-driver/package.json
index b7557dd277a21..4bf8aed998bb9 100644
--- a/packages/cubejs-bigquery-driver/package.json
+++ b/packages/cubejs-bigquery-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/bigquery-driver",
"description": "Cube.js BigQuery database driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -29,15 +29,15 @@
"main": "index.js",
"types": "dist/src/index.d.ts",
"dependencies": {
- "@cubejs-backend/base-driver": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
"@cubejs-backend/dotenv": "^9.0.2",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/shared": "1.6.1",
"@google-cloud/bigquery": "^7.7.0",
"@google-cloud/storage": "^7.13.0",
"ramda": "^0.27.2"
},
"devDependencies": {
- "@cubejs-backend/testing-shared": "1.6.0",
+ "@cubejs-backend/testing-shared": "1.6.1",
"@types/big.js": "^6.2.2",
"@types/dedent": "^0.7.0",
"@types/jest": "^29",
diff --git a/packages/cubejs-cli/CHANGELOG.md b/packages/cubejs-cli/CHANGELOG.md
index befc75d2d91d9..703811c75096f 100644
--- a/packages/cubejs-cli/CHANGELOG.md
+++ b/packages/cubejs-cli/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package cubejs-cli
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package cubejs-cli
diff --git a/packages/cubejs-cli/package.json b/packages/cubejs-cli/package.json
index 4c52002bcf61b..6cc7cf383022f 100644
--- a/packages/cubejs-cli/package.json
+++ b/packages/cubejs-cli/package.json
@@ -2,7 +2,7 @@
"name": "cubejs-cli",
"description": "Cube.js Command Line Interface",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -30,10 +30,10 @@
"LICENSE"
],
"dependencies": {
- "@cubejs-backend/cloud": "1.6.0",
+ "@cubejs-backend/cloud": "1.6.1",
"@cubejs-backend/dotenv": "^9.0.2",
- "@cubejs-backend/schema-compiler": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/schema-compiler": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"chalk": "^2.4.2",
"cli-progress": "^3.10",
"commander": "^2.19.0",
@@ -50,8 +50,8 @@
"colors": "1.4.0"
},
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
- "@cubejs-backend/server": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
+ "@cubejs-backend/server": "1.6.1",
"@oclif/command": "^1.8.0",
"@types/cli-progress": "^3.8.0",
"@types/cross-spawn": "^6.0.2",
diff --git a/packages/cubejs-clickhouse-driver/CHANGELOG.md b/packages/cubejs-clickhouse-driver/CHANGELOG.md
index db25e66e5677c..8d65e7893a69b 100644
--- a/packages/cubejs-clickhouse-driver/CHANGELOG.md
+++ b/packages/cubejs-clickhouse-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/clickhouse-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/clickhouse-driver
diff --git a/packages/cubejs-clickhouse-driver/package.json b/packages/cubejs-clickhouse-driver/package.json
index d1030cf01cbc9..1b5fc6d457144 100644
--- a/packages/cubejs-clickhouse-driver/package.json
+++ b/packages/cubejs-clickhouse-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/clickhouse-driver",
"description": "Cube.js ClickHouse database driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -28,16 +28,16 @@
},
"dependencies": {
"@clickhouse/client": "^1.12.0",
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"moment": "^2.24.0",
"sqlstring": "^2.3.1",
"uuid": "^8.3.2"
},
"license": "Apache-2.0",
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
- "@cubejs-backend/testing-shared": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
+ "@cubejs-backend/testing-shared": "1.6.1",
"@types/jest": "^29",
"jest": "^29",
"typescript": "~5.2.2"
diff --git a/packages/cubejs-client-core/CHANGELOG.md b/packages/cubejs-client-core/CHANGELOG.md
index 3ca013c756b96..cbd04a9b18ea1 100644
--- a/packages/cubejs-client-core/CHANGELOG.md
+++ b/packages/cubejs-client-core/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-client/core
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-client/core
diff --git a/packages/cubejs-client-core/package.json b/packages/cubejs-client-core/package.json
index d59579b66ec13..9526e026e97c0 100644
--- a/packages/cubejs-client-core/package.json
+++ b/packages/cubejs-client-core/package.json
@@ -1,6 +1,6 @@
{
"name": "@cubejs-client/core",
- "version": "1.6.0",
+ "version": "1.6.1",
"engines": {},
"repository": {
"type": "git",
@@ -39,7 +39,7 @@
],
"license": "MIT",
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
"@types/jest": "^29",
"@types/moment-range": "^4.0.0",
"@types/ramda": "^0.27.34",
diff --git a/packages/cubejs-client-dx/CHANGELOG.md b/packages/cubejs-client-dx/CHANGELOG.md
index d73db0add6e6a..af83d668945b0 100644
--- a/packages/cubejs-client-dx/CHANGELOG.md
+++ b/packages/cubejs-client-dx/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-client/dx
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-client/dx
diff --git a/packages/cubejs-client-dx/package.json b/packages/cubejs-client-dx/package.json
index 514529687994e..29d2a509aa742 100644
--- a/packages/cubejs-client-dx/package.json
+++ b/packages/cubejs-client-dx/package.json
@@ -1,6 +1,6 @@
{
"name": "@cubejs-client/dx",
- "version": "1.6.0",
+ "version": "1.6.1",
"engines": {},
"repository": {
"type": "git",
diff --git a/packages/cubejs-client-ngx/CHANGELOG.md b/packages/cubejs-client-ngx/CHANGELOG.md
index bf7ac395d9a4d..dcf4a84100c67 100644
--- a/packages/cubejs-client-ngx/CHANGELOG.md
+++ b/packages/cubejs-client-ngx/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-client/ngx
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-client/ngx
diff --git a/packages/cubejs-client-ngx/package.json b/packages/cubejs-client-ngx/package.json
index 1627584add711..c51fa8b823b09 100644
--- a/packages/cubejs-client-ngx/package.json
+++ b/packages/cubejs-client-ngx/package.json
@@ -1,6 +1,6 @@
{
"name": "@cubejs-client/ngx",
- "version": "1.6.0",
+ "version": "1.6.1",
"author": "Cube Dev, Inc.",
"engines": {},
"repository": {
diff --git a/packages/cubejs-client-react/CHANGELOG.md b/packages/cubejs-client-react/CHANGELOG.md
index 494e3772f5595..97d506599188b 100644
--- a/packages/cubejs-client-react/CHANGELOG.md
+++ b/packages/cubejs-client-react/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-client/react
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-client/react
diff --git a/packages/cubejs-client-react/package.json b/packages/cubejs-client-react/package.json
index dda419fac34be..cd60c7525d844 100644
--- a/packages/cubejs-client-react/package.json
+++ b/packages/cubejs-client-react/package.json
@@ -1,6 +1,6 @@
{
"name": "@cubejs-client/react",
- "version": "1.6.0",
+ "version": "1.6.1",
"author": "Cube Dev, Inc.",
"license": "MIT",
"engines": {},
@@ -24,7 +24,7 @@
],
"dependencies": {
"@babel/runtime": "^7.1.2",
- "@cubejs-client/core": "1.6.0",
+ "@cubejs-client/core": "1.6.1",
"core-js": "^3.6.5",
"ramda": "^0.27.2"
},
diff --git a/packages/cubejs-client-vue3/CHANGELOG.md b/packages/cubejs-client-vue3/CHANGELOG.md
index dde311373d093..31ed3b72879c6 100644
--- a/packages/cubejs-client-vue3/CHANGELOG.md
+++ b/packages/cubejs-client-vue3/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-client/vue3
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-client/vue3
diff --git a/packages/cubejs-client-vue3/package.json b/packages/cubejs-client-vue3/package.json
index b8905a0631a96..32957cf44b808 100644
--- a/packages/cubejs-client-vue3/package.json
+++ b/packages/cubejs-client-vue3/package.json
@@ -1,6 +1,6 @@
{
"name": "@cubejs-client/vue3",
- "version": "1.6.0",
+ "version": "1.6.1",
"engines": {},
"repository": {
"type": "git",
@@ -28,7 +28,7 @@
"src"
],
"dependencies": {
- "@cubejs-client/core": "1.6.0",
+ "@cubejs-client/core": "1.6.1",
"ramda": "^0.27.0"
},
"devDependencies": {
diff --git a/packages/cubejs-client-ws-transport/CHANGELOG.md b/packages/cubejs-client-ws-transport/CHANGELOG.md
index 4c49b4716c0d7..878a1b8dd71cc 100644
--- a/packages/cubejs-client-ws-transport/CHANGELOG.md
+++ b/packages/cubejs-client-ws-transport/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-client/ws-transport
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-client/ws-transport
diff --git a/packages/cubejs-client-ws-transport/package.json b/packages/cubejs-client-ws-transport/package.json
index 40e40a7ef734e..9f89f508e86f0 100644
--- a/packages/cubejs-client-ws-transport/package.json
+++ b/packages/cubejs-client-ws-transport/package.json
@@ -1,6 +1,6 @@
{
"name": "@cubejs-client/ws-transport",
- "version": "1.6.0",
+ "version": "1.6.1",
"engines": {},
"repository": {
"type": "git",
@@ -20,7 +20,7 @@
},
"dependencies": {
"@babel/runtime": "^7.1.2",
- "@cubejs-client/core": "1.6.0",
+ "@cubejs-client/core": "1.6.1",
"core-js": "^3.6.5",
"isomorphic-ws": "^4.0.1",
"ws": "^7.3.1"
@@ -33,7 +33,7 @@
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"@babel/preset-typescript": "^7.12.1",
- "@cubejs-backend/linter": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
"@types/ws": "^7.2.9",
"typescript": "~5.2.2"
},
diff --git a/packages/cubejs-crate-driver/CHANGELOG.md b/packages/cubejs-crate-driver/CHANGELOG.md
index 4c9fc78f5a2f9..225b5c762c0c8 100644
--- a/packages/cubejs-crate-driver/CHANGELOG.md
+++ b/packages/cubejs-crate-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/crate-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/crate-driver
diff --git a/packages/cubejs-crate-driver/package.json b/packages/cubejs-crate-driver/package.json
index cbca1d4ca33e4..e119e85354c56 100644
--- a/packages/cubejs-crate-driver/package.json
+++ b/packages/cubejs-crate-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/crate-driver",
"description": "Cube.js Crate database driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -28,14 +28,14 @@
"lint:fix": "eslint --fix src/* --ext .ts"
},
"dependencies": {
- "@cubejs-backend/postgres-driver": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/postgres-driver": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"pg": "^8.7.1"
},
"license": "Apache-2.0",
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
- "@cubejs-backend/testing-shared": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
+ "@cubejs-backend/testing-shared": "1.6.1",
"testcontainers": "^10.28.0",
"typescript": "~5.2.2"
},
diff --git a/packages/cubejs-cubestore-driver/CHANGELOG.md b/packages/cubejs-cubestore-driver/CHANGELOG.md
index 04b81b353ed06..c8deacc1e41b4 100644
--- a/packages/cubejs-cubestore-driver/CHANGELOG.md
+++ b/packages/cubejs-cubestore-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/cubestore-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/cubestore-driver
diff --git a/packages/cubejs-cubestore-driver/package.json b/packages/cubejs-cubestore-driver/package.json
index 2052277426a2e..f4f89038df158 100644
--- a/packages/cubejs-cubestore-driver/package.json
+++ b/packages/cubejs-cubestore-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/cubestore-driver",
"description": "Cube Store driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -26,10 +26,10 @@
"lint:fix": "eslint --fix src/*.ts"
},
"dependencies": {
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/cubestore": "1.6.0",
- "@cubejs-backend/native": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/cubestore": "1.6.1",
+ "@cubejs-backend/native": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"csv-write-stream": "^2.0.0",
"flatbuffers": "23.3.3",
"fs-extra": "^9.1.0",
@@ -41,7 +41,7 @@
"ws": "^7.4.3"
},
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
"@types/csv-write-stream": "^2.0.0",
"@types/jest": "^29",
"@types/node": "^20",
diff --git a/packages/cubejs-databricks-jdbc-driver/CHANGELOG.md b/packages/cubejs-databricks-jdbc-driver/CHANGELOG.md
index 47faebbfa66c2..25f77deab7d9e 100644
--- a/packages/cubejs-databricks-jdbc-driver/CHANGELOG.md
+++ b/packages/cubejs-databricks-jdbc-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/databricks-jdbc-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/databricks-jdbc-driver
diff --git a/packages/cubejs-databricks-jdbc-driver/package.json b/packages/cubejs-databricks-jdbc-driver/package.json
index b7dfedd894f1a..35898a7785d7e 100644
--- a/packages/cubejs-databricks-jdbc-driver/package.json
+++ b/packages/cubejs-databricks-jdbc-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/databricks-jdbc-driver",
"description": "Cube.js Databricks database driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"license": "Apache-2.0",
"repository": {
"type": "git",
@@ -30,17 +30,17 @@
"bin"
],
"dependencies": {
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/jdbc-driver": "1.6.0",
- "@cubejs-backend/schema-compiler": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/jdbc-driver": "1.6.1",
+ "@cubejs-backend/schema-compiler": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"node-fetch": "^2.6.1",
"ramda": "^0.27.2",
"source-map-support": "^0.5.19",
"uuid": "^8.3.2"
},
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
"@types/jest": "^29",
"@types/node": "^20",
"@types/ramda": "^0.27.34",
diff --git a/packages/cubejs-dbt-schema-extension/CHANGELOG.md b/packages/cubejs-dbt-schema-extension/CHANGELOG.md
index 7ba1f0ef966ef..3f9a6de9122a8 100644
--- a/packages/cubejs-dbt-schema-extension/CHANGELOG.md
+++ b/packages/cubejs-dbt-schema-extension/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/dbt-schema-extension
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/dbt-schema-extension
diff --git a/packages/cubejs-dbt-schema-extension/package.json b/packages/cubejs-dbt-schema-extension/package.json
index 9f44f3bbd1aa1..b13194fb72b16 100644
--- a/packages/cubejs-dbt-schema-extension/package.json
+++ b/packages/cubejs-dbt-schema-extension/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/dbt-schema-extension",
"description": "Cube.js dbt Schema Extension",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -25,14 +25,14 @@
"lint:fix": "eslint --fix src/* --ext .ts,.js"
},
"dependencies": {
- "@cubejs-backend/schema-compiler": "1.6.0",
+ "@cubejs-backend/schema-compiler": "1.6.1",
"fs-extra": "^9.1.0",
"inflection": "^1.12.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
- "@cubejs-backend/testing": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
+ "@cubejs-backend/testing": "1.6.1",
"@types/jest": "^29",
"jest": "^29",
"stream-to-array": "^2.3.0",
diff --git a/packages/cubejs-docker/CHANGELOG.md b/packages/cubejs-docker/CHANGELOG.md
index ad6e435c48331..48ab9a7069195 100644
--- a/packages/cubejs-docker/CHANGELOG.md
+++ b/packages/cubejs-docker/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/docker
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/docker
diff --git a/packages/cubejs-docker/package.json b/packages/cubejs-docker/package.json
index cb53d7c985388..9b247edb78e76 100644
--- a/packages/cubejs-docker/package.json
+++ b/packages/cubejs-docker/package.json
@@ -1,6 +1,6 @@
{
"name": "@cubejs-backend/docker",
- "version": "1.6.0",
+ "version": "1.6.1",
"description": "Cube.js In Docker (virtual package)",
"author": "Cube Dev, Inc.",
"license": "Apache-2.0",
@@ -9,35 +9,35 @@
"node": ">=18.0.0"
},
"dependencies": {
- "@cubejs-backend/athena-driver": "1.6.0",
- "@cubejs-backend/bigquery-driver": "1.6.0",
- "@cubejs-backend/clickhouse-driver": "1.6.0",
- "@cubejs-backend/crate-driver": "1.6.0",
- "@cubejs-backend/databricks-jdbc-driver": "1.6.0",
- "@cubejs-backend/dbt-schema-extension": "1.6.0",
- "@cubejs-backend/dremio-driver": "1.6.0",
- "@cubejs-backend/druid-driver": "1.6.0",
- "@cubejs-backend/duckdb-driver": "1.6.0",
- "@cubejs-backend/elasticsearch-driver": "1.6.0",
- "@cubejs-backend/firebolt-driver": "1.6.0",
- "@cubejs-backend/hive-driver": "1.6.0",
- "@cubejs-backend/ksql-driver": "1.6.0",
- "@cubejs-backend/materialize-driver": "1.6.0",
- "@cubejs-backend/mongobi-driver": "1.6.0",
- "@cubejs-backend/mssql-driver": "1.6.0",
- "@cubejs-backend/mysql-driver": "1.6.0",
- "@cubejs-backend/oracle-driver": "1.6.0",
- "@cubejs-backend/pinot-driver": "1.6.0",
- "@cubejs-backend/postgres-driver": "1.6.0",
- "@cubejs-backend/prestodb-driver": "1.6.0",
- "@cubejs-backend/questdb-driver": "1.6.0",
- "@cubejs-backend/redshift-driver": "1.6.0",
- "@cubejs-backend/server": "1.6.0",
- "@cubejs-backend/snowflake-driver": "1.6.0",
- "@cubejs-backend/sqlite-driver": "1.6.0",
- "@cubejs-backend/trino-driver": "1.6.0",
- "@cubejs-backend/vertica-driver": "1.6.0",
- "cubejs-cli": "1.6.0",
+ "@cubejs-backend/athena-driver": "1.6.1",
+ "@cubejs-backend/bigquery-driver": "1.6.1",
+ "@cubejs-backend/clickhouse-driver": "1.6.1",
+ "@cubejs-backend/crate-driver": "1.6.1",
+ "@cubejs-backend/databricks-jdbc-driver": "1.6.1",
+ "@cubejs-backend/dbt-schema-extension": "1.6.1",
+ "@cubejs-backend/dremio-driver": "1.6.1",
+ "@cubejs-backend/druid-driver": "1.6.1",
+ "@cubejs-backend/duckdb-driver": "1.6.1",
+ "@cubejs-backend/elasticsearch-driver": "1.6.1",
+ "@cubejs-backend/firebolt-driver": "1.6.1",
+ "@cubejs-backend/hive-driver": "1.6.1",
+ "@cubejs-backend/ksql-driver": "1.6.1",
+ "@cubejs-backend/materialize-driver": "1.6.1",
+ "@cubejs-backend/mongobi-driver": "1.6.1",
+ "@cubejs-backend/mssql-driver": "1.6.1",
+ "@cubejs-backend/mysql-driver": "1.6.1",
+ "@cubejs-backend/oracle-driver": "1.6.1",
+ "@cubejs-backend/pinot-driver": "1.6.1",
+ "@cubejs-backend/postgres-driver": "1.6.1",
+ "@cubejs-backend/prestodb-driver": "1.6.1",
+ "@cubejs-backend/questdb-driver": "1.6.1",
+ "@cubejs-backend/redshift-driver": "1.6.1",
+ "@cubejs-backend/server": "1.6.1",
+ "@cubejs-backend/snowflake-driver": "1.6.1",
+ "@cubejs-backend/sqlite-driver": "1.6.1",
+ "@cubejs-backend/trino-driver": "1.6.1",
+ "@cubejs-backend/vertica-driver": "1.6.1",
+ "cubejs-cli": "1.6.1",
"typescript": "~5.2.2"
},
"resolutions": {
diff --git a/packages/cubejs-dremio-driver/CHANGELOG.md b/packages/cubejs-dremio-driver/CHANGELOG.md
index 89688a2fb1342..7a6cb377c8e8b 100644
--- a/packages/cubejs-dremio-driver/CHANGELOG.md
+++ b/packages/cubejs-dremio-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/dremio-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/dremio-driver
diff --git a/packages/cubejs-dremio-driver/package.json b/packages/cubejs-dremio-driver/package.json
index 2197d09615c6e..020919572975e 100644
--- a/packages/cubejs-dremio-driver/package.json
+++ b/packages/cubejs-dremio-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/dremio-driver",
"description": "Cube.js Dremio driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -22,15 +22,15 @@
"lint:fix": "eslint driver/*.js"
},
"dependencies": {
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/schema-compiler": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/schema-compiler": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"axios": "^1.8.3",
"sqlstring": "^2.3.1"
},
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
- "@cubejs-backend/testing-shared": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
+ "@cubejs-backend/testing-shared": "1.6.1",
"jest": "^29"
},
"license": "Apache-2.0",
diff --git a/packages/cubejs-druid-driver/CHANGELOG.md b/packages/cubejs-druid-driver/CHANGELOG.md
index e4ea3072e1637..03ac987f88c34 100644
--- a/packages/cubejs-druid-driver/CHANGELOG.md
+++ b/packages/cubejs-druid-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/druid-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/druid-driver
diff --git a/packages/cubejs-druid-driver/package.json b/packages/cubejs-druid-driver/package.json
index 6f336555b3139..2b191a3e19834 100644
--- a/packages/cubejs-druid-driver/package.json
+++ b/packages/cubejs-druid-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/druid-driver",
"description": "Cube.js Druid database driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"license": "Apache-2.0",
"repository": {
"type": "git",
@@ -28,13 +28,13 @@
"dist/src/*"
],
"dependencies": {
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/schema-compiler": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/schema-compiler": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"axios": "^1.8.3"
},
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
"@types/jest": "^29",
"@types/node": "^20",
"jest": "^29",
diff --git a/packages/cubejs-duckdb-driver/CHANGELOG.md b/packages/cubejs-duckdb-driver/CHANGELOG.md
index ef5c9f8544d65..c9209dbd07a5f 100644
--- a/packages/cubejs-duckdb-driver/CHANGELOG.md
+++ b/packages/cubejs-duckdb-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/duckdb-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/duckdb-driver
diff --git a/packages/cubejs-duckdb-driver/package.json b/packages/cubejs-duckdb-driver/package.json
index 788dd03632068..4696ed7839c0a 100644
--- a/packages/cubejs-duckdb-driver/package.json
+++ b/packages/cubejs-duckdb-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/duckdb-driver",
"description": "Cube DuckDB database driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -27,15 +27,15 @@
"lint:fix": "eslint --fix src/* --ext .ts"
},
"dependencies": {
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/schema-compiler": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/schema-compiler": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"duckdb": "^1.4.1"
},
"license": "Apache-2.0",
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
- "@cubejs-backend/testing-shared": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
+ "@cubejs-backend/testing-shared": "1.6.1",
"@types/jest": "^29",
"@types/node": "^20",
"jest": "^29",
diff --git a/packages/cubejs-elasticsearch-driver/CHANGELOG.md b/packages/cubejs-elasticsearch-driver/CHANGELOG.md
index 5c99ef722c7b8..f19b9a4c7c5ea 100644
--- a/packages/cubejs-elasticsearch-driver/CHANGELOG.md
+++ b/packages/cubejs-elasticsearch-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/elasticsearch-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/elasticsearch-driver
diff --git a/packages/cubejs-elasticsearch-driver/package.json b/packages/cubejs-elasticsearch-driver/package.json
index ff98f10893114..ebcb85142996d 100644
--- a/packages/cubejs-elasticsearch-driver/package.json
+++ b/packages/cubejs-elasticsearch-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/elasticsearch-driver",
"description": "Cube.js elasticsearch database driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -23,14 +23,14 @@
"driver"
],
"dependencies": {
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"@elastic/elasticsearch": "7.12.0",
"sqlstring": "^2.3.1"
},
"license": "Apache-2.0",
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
"@types/jest": "^29",
"jest": "^29",
"testcontainers": "^10.28.0"
diff --git a/packages/cubejs-firebolt-driver/CHANGELOG.md b/packages/cubejs-firebolt-driver/CHANGELOG.md
index 1c8e8e2078610..57b33cf3da816 100644
--- a/packages/cubejs-firebolt-driver/CHANGELOG.md
+++ b/packages/cubejs-firebolt-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/firebolt-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/firebolt-driver
diff --git a/packages/cubejs-firebolt-driver/package.json b/packages/cubejs-firebolt-driver/package.json
index 13d9d1b0f28e5..ca4deec0caa70 100644
--- a/packages/cubejs-firebolt-driver/package.json
+++ b/packages/cubejs-firebolt-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/firebolt-driver",
"description": "Cube.js Firebolt database driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -28,15 +28,15 @@
"lint:fix": "eslint --fix src/* --ext .ts"
},
"dependencies": {
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/schema-compiler": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/schema-compiler": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"firebolt-sdk": "1.10.0"
},
"license": "Apache-2.0",
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
- "@cubejs-backend/testing-shared": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
+ "@cubejs-backend/testing-shared": "1.6.1",
"typescript": "~5.2.2"
},
"publishConfig": {
diff --git a/packages/cubejs-hive-driver/CHANGELOG.md b/packages/cubejs-hive-driver/CHANGELOG.md
index b4800fe8e109b..8df571793fb70 100644
--- a/packages/cubejs-hive-driver/CHANGELOG.md
+++ b/packages/cubejs-hive-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/hive-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/hive-driver
diff --git a/packages/cubejs-hive-driver/package.json b/packages/cubejs-hive-driver/package.json
index d2cc4c1e0d9d0..72ed088904dc9 100644
--- a/packages/cubejs-hive-driver/package.json
+++ b/packages/cubejs-hive-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/hive-driver",
"description": "Cube.js Hive database driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -17,8 +17,8 @@
"lint:fix": "eslint --fix src/* --ext .ts"
},
"dependencies": {
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"generic-pool": "^3.8.2",
"jshs2": "^0.4.4",
"sasl-plain": "^0.1.0",
@@ -28,7 +28,7 @@
},
"license": "Apache-2.0",
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0"
+ "@cubejs-backend/linter": "1.6.1"
},
"publishConfig": {
"access": "public"
diff --git a/packages/cubejs-jdbc-driver/CHANGELOG.md b/packages/cubejs-jdbc-driver/CHANGELOG.md
index 51b2b6d31d8a0..6a07886a9e473 100644
--- a/packages/cubejs-jdbc-driver/CHANGELOG.md
+++ b/packages/cubejs-jdbc-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/jdbc-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/jdbc-driver
diff --git a/packages/cubejs-jdbc-driver/package.json b/packages/cubejs-jdbc-driver/package.json
index 6dcb85bc3817e..56eb738354965 100644
--- a/packages/cubejs-jdbc-driver/package.json
+++ b/packages/cubejs-jdbc-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/jdbc-driver",
"description": "Cube.js JDBC database driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -25,9 +25,9 @@
"index.js"
],
"dependencies": {
- "@cubejs-backend/base-driver": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
"@cubejs-backend/node-java-maven": "^0.1.3",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/shared": "1.6.1",
"generic-pool": "^3.9.0",
"sqlstring": "^2.3.0"
},
@@ -43,7 +43,7 @@
"testEnvironment": "node"
},
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
"@types/node": "^20",
"@types/sqlstring": "^2.3.0",
"typescript": "~5.2.2"
diff --git a/packages/cubejs-ksql-driver/CHANGELOG.md b/packages/cubejs-ksql-driver/CHANGELOG.md
index 603c0c401a542..51de3f7f44ba8 100644
--- a/packages/cubejs-ksql-driver/CHANGELOG.md
+++ b/packages/cubejs-ksql-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/ksql-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/ksql-driver
diff --git a/packages/cubejs-ksql-driver/package.json b/packages/cubejs-ksql-driver/package.json
index fa5c631cbd429..fc7ab48f1d1ab 100644
--- a/packages/cubejs-ksql-driver/package.json
+++ b/packages/cubejs-ksql-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/ksql-driver",
"description": "Cube.js ksql database driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -25,9 +25,9 @@
"lint:fix": "eslint --fix src/* --ext .ts"
},
"dependencies": {
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/schema-compiler": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/schema-compiler": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"async-mutex": "0.3.2",
"axios": "^1.8.3",
"kafkajs": "^2.2.3",
@@ -41,7 +41,7 @@
"extends": "../cubejs-linter"
},
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
"typescript": "~5.2.2"
}
}
diff --git a/packages/cubejs-linter/CHANGELOG.md b/packages/cubejs-linter/CHANGELOG.md
index 81fb0f3b75d2f..ced454b485f1d 100644
--- a/packages/cubejs-linter/CHANGELOG.md
+++ b/packages/cubejs-linter/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/linter
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/linter
diff --git a/packages/cubejs-linter/package.json b/packages/cubejs-linter/package.json
index 70c63faa3ec33..2f1398b2dc93c 100644
--- a/packages/cubejs-linter/package.json
+++ b/packages/cubejs-linter/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/linter",
"description": "Cube.js ESLint (virtual package) for linting code",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
diff --git a/packages/cubejs-materialize-driver/CHANGELOG.md b/packages/cubejs-materialize-driver/CHANGELOG.md
index cdfd0d22a1c46..221408c5aa974 100644
--- a/packages/cubejs-materialize-driver/CHANGELOG.md
+++ b/packages/cubejs-materialize-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/materialize-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/materialize-driver
diff --git a/packages/cubejs-materialize-driver/package.json b/packages/cubejs-materialize-driver/package.json
index fa589cc54907a..a53684e1a790e 100644
--- a/packages/cubejs-materialize-driver/package.json
+++ b/packages/cubejs-materialize-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/materialize-driver",
"description": "Cube.js Materialize database driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -27,17 +27,17 @@
"lint:fix": "eslint --fix src/* --ext .ts"
},
"dependencies": {
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/postgres-driver": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/postgres-driver": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"@types/pg": "^8.6.0",
"pg": "^8.6.0",
"semver": "^7.6.3"
},
"license": "Apache-2.0",
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
- "@cubejs-backend/testing": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
+ "@cubejs-backend/testing": "1.6.1",
"typescript": "~5.2.2"
},
"publishConfig": {
diff --git a/packages/cubejs-mongobi-driver/CHANGELOG.md b/packages/cubejs-mongobi-driver/CHANGELOG.md
index 8be82ab8daefb..57361abb0dcd7 100644
--- a/packages/cubejs-mongobi-driver/CHANGELOG.md
+++ b/packages/cubejs-mongobi-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/mongobi-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/mongobi-driver
diff --git a/packages/cubejs-mongobi-driver/package.json b/packages/cubejs-mongobi-driver/package.json
index 5ada4774af878..39df8d3c0987d 100644
--- a/packages/cubejs-mongobi-driver/package.json
+++ b/packages/cubejs-mongobi-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/mongobi-driver",
"description": "Cube.js MongoBI driver",
"author": "krunalsabnis@gmail.com",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -27,8 +27,8 @@
"integration:mongobi": "jest dist/test"
},
"dependencies": {
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"@types/node": "^20",
"generic-pool": "^3.9.0",
"moment": "^2.29.1",
@@ -39,7 +39,7 @@
"access": "public"
},
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
"testcontainers": "^10.28.0",
"typescript": "~5.2.2"
},
diff --git a/packages/cubejs-mssql-driver/CHANGELOG.md b/packages/cubejs-mssql-driver/CHANGELOG.md
index 0abb13273843a..85e1ee126c017 100644
--- a/packages/cubejs-mssql-driver/CHANGELOG.md
+++ b/packages/cubejs-mssql-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/mssql-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/mssql-driver
diff --git a/packages/cubejs-mssql-driver/package.json b/packages/cubejs-mssql-driver/package.json
index 9e1d4924e02e1..a4506159248c0 100644
--- a/packages/cubejs-mssql-driver/package.json
+++ b/packages/cubejs-mssql-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/mssql-driver",
"description": "Cube.js MS SQL database driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -25,8 +25,8 @@
"lint:fix": "eslint --fix src/* --ext .ts,.js"
},
"dependencies": {
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"mssql": "^11.0.1"
},
"devDependencies": {
diff --git a/packages/cubejs-mysql-aurora-serverless-driver/CHANGELOG.md b/packages/cubejs-mysql-aurora-serverless-driver/CHANGELOG.md
index 5b7e5eb30cfea..f696b81eca547 100644
--- a/packages/cubejs-mysql-aurora-serverless-driver/CHANGELOG.md
+++ b/packages/cubejs-mysql-aurora-serverless-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/mysql-aurora-serverless-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/mysql-aurora-serverless-driver
diff --git a/packages/cubejs-mysql-aurora-serverless-driver/package.json b/packages/cubejs-mysql-aurora-serverless-driver/package.json
index 001f5a51958c4..05327adf0fef2 100644
--- a/packages/cubejs-mysql-aurora-serverless-driver/package.json
+++ b/packages/cubejs-mysql-aurora-serverless-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/mysql-aurora-serverless-driver",
"description": "Cube.js Aurora Serverless Mysql database driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -21,14 +21,14 @@
"lint": "eslint driver/*.js test/*.js"
},
"dependencies": {
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"@types/mysql": "^2.15.15",
"aws-sdk": "^2.787.0",
"data-api-client": "^1.1.0"
},
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
"@types/data-api-client": "^1.2.1",
"@types/jest": "^29",
"jest": "^29",
diff --git a/packages/cubejs-mysql-driver/CHANGELOG.md b/packages/cubejs-mysql-driver/CHANGELOG.md
index a4c6b6128dc56..8dd1d52552f14 100644
--- a/packages/cubejs-mysql-driver/CHANGELOG.md
+++ b/packages/cubejs-mysql-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/mysql-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/mysql-driver
diff --git a/packages/cubejs-mysql-driver/package.json b/packages/cubejs-mysql-driver/package.json
index b6ddb07eefe39..0d9fb39388051 100644
--- a/packages/cubejs-mysql-driver/package.json
+++ b/packages/cubejs-mysql-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/mysql-driver",
"description": "Cube.js Mysql database driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -27,14 +27,14 @@
"lint:fix": "eslint --fix src/* test/* --ext .ts,.js"
},
"dependencies": {
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"generic-pool": "^3.9.0",
"mysql": "^2.18.1"
},
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
- "@cubejs-backend/testing-shared": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
+ "@cubejs-backend/testing-shared": "1.6.1",
"@types/jest": "^29",
"@types/mysql": "^2.15.21",
"jest": "^29",
diff --git a/packages/cubejs-oracle-driver/CHANGELOG.md b/packages/cubejs-oracle-driver/CHANGELOG.md
index 0af44f2fbd472..188bc235d268b 100644
--- a/packages/cubejs-oracle-driver/CHANGELOG.md
+++ b/packages/cubejs-oracle-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/oracle-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/oracle-driver
diff --git a/packages/cubejs-oracle-driver/package.json b/packages/cubejs-oracle-driver/package.json
index e1311e763f5f3..2f450ba3f8190 100644
--- a/packages/cubejs-oracle-driver/package.json
+++ b/packages/cubejs-oracle-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/oracle-driver",
"description": "Cube.js oracle database driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -13,7 +13,7 @@
},
"main": "driver/OracleDriver.js",
"dependencies": {
- "@cubejs-backend/base-driver": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
"ramda": "^0.27.0"
},
"optionalDependencies": {
diff --git a/packages/cubejs-pinot-driver/CHANGELOG.md b/packages/cubejs-pinot-driver/CHANGELOG.md
index ca15b4777b7b1..076ab43d2d760 100644
--- a/packages/cubejs-pinot-driver/CHANGELOG.md
+++ b/packages/cubejs-pinot-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/pinot-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/pinot-driver
diff --git a/packages/cubejs-pinot-driver/package.json b/packages/cubejs-pinot-driver/package.json
index cb09538ea3bc4..d10060d03d5ff 100644
--- a/packages/cubejs-pinot-driver/package.json
+++ b/packages/cubejs-pinot-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/pinot-driver",
"description": "Cube.js Pinot database driver",
"author": "Julian Ronsse, InTheMemory, Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -27,9 +27,9 @@
"lint:fix": "eslint --fix src/* --ext .ts"
},
"dependencies": {
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/schema-compiler": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/schema-compiler": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"node-fetch": "^2.6.1",
"ramda": "^0.27.2",
"sqlstring": "^2.3.3"
@@ -39,7 +39,7 @@
"access": "public"
},
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
"@types/jest": "^29",
"jest": "^29",
"should": "^13.2.3",
diff --git a/packages/cubejs-playground/CHANGELOG.md b/packages/cubejs-playground/CHANGELOG.md
index c93db80e423d9..f251506d1a913 100644
--- a/packages/cubejs-playground/CHANGELOG.md
+++ b/packages/cubejs-playground/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-client/playground
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-client/playground
diff --git a/packages/cubejs-playground/package.json b/packages/cubejs-playground/package.json
index 39d4ab170e7fa..a2652019f8840 100644
--- a/packages/cubejs-playground/package.json
+++ b/packages/cubejs-playground/package.json
@@ -1,7 +1,7 @@
{
"name": "@cubejs-client/playground",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"engines": {},
"repository": {
"type": "git",
@@ -69,8 +69,8 @@
"@ant-design/compatible": "^1.0.1",
"@ant-design/icons": "^5.3.5",
"@cube-dev/ui-kit": "0.52.3",
- "@cubejs-client/core": "1.6.0",
- "@cubejs-client/react": "1.6.0",
+ "@cubejs-client/core": "1.6.1",
+ "@cubejs-client/react": "1.6.1",
"@types/flexsearch": "^0.7.3",
"@types/node": "^20",
"@types/react": "^18.3.4",
diff --git a/packages/cubejs-postgres-driver/CHANGELOG.md b/packages/cubejs-postgres-driver/CHANGELOG.md
index 8d86a5b378ba4..37e35d922a5f4 100644
--- a/packages/cubejs-postgres-driver/CHANGELOG.md
+++ b/packages/cubejs-postgres-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/postgres-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/postgres-driver
diff --git a/packages/cubejs-postgres-driver/package.json b/packages/cubejs-postgres-driver/package.json
index 82e13aaa429fd..8cff7d7f834f7 100644
--- a/packages/cubejs-postgres-driver/package.json
+++ b/packages/cubejs-postgres-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/postgres-driver",
"description": "Cube.js Postgres database driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -27,8 +27,8 @@
"lint:fix": "eslint --fix src/* --ext .ts"
},
"dependencies": {
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"@types/pg": "^8.6.0",
"@types/pg-query-stream": "^1.0.3",
"moment": "^2.24.0",
@@ -37,8 +37,8 @@
},
"license": "Apache-2.0",
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
- "@cubejs-backend/testing-shared": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
+ "@cubejs-backend/testing-shared": "1.6.1",
"testcontainers": "^10.28.0",
"typescript": "~5.2.2"
},
diff --git a/packages/cubejs-prestodb-driver/CHANGELOG.md b/packages/cubejs-prestodb-driver/CHANGELOG.md
index 54351baffed0c..1c9b019a10d10 100644
--- a/packages/cubejs-prestodb-driver/CHANGELOG.md
+++ b/packages/cubejs-prestodb-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/prestodb-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/prestodb-driver
diff --git a/packages/cubejs-prestodb-driver/package.json b/packages/cubejs-prestodb-driver/package.json
index f1dd9d854c055..1e1d8d787185f 100644
--- a/packages/cubejs-prestodb-driver/package.json
+++ b/packages/cubejs-prestodb-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/prestodb-driver",
"description": "Cube.js Presto database driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -27,8 +27,8 @@
"lint:fix": "eslint --fix src/* --ext .ts"
},
"dependencies": {
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"presto-client": "^1.1.0",
"ramda": "^0.27.0",
"sqlstring": "^2.3.1"
@@ -38,7 +38,7 @@
"access": "public"
},
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
"@types/jest": "^29",
"jest": "^29",
"should": "^13.2.3",
diff --git a/packages/cubejs-query-orchestrator/CHANGELOG.md b/packages/cubejs-query-orchestrator/CHANGELOG.md
index 27f4435acf434..2e67c6360e012 100644
--- a/packages/cubejs-query-orchestrator/CHANGELOG.md
+++ b/packages/cubejs-query-orchestrator/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/query-orchestrator
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/query-orchestrator
diff --git a/packages/cubejs-query-orchestrator/package.json b/packages/cubejs-query-orchestrator/package.json
index e14e3ceecc46b..43581aae4a94f 100644
--- a/packages/cubejs-query-orchestrator/package.json
+++ b/packages/cubejs-query-orchestrator/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/query-orchestrator",
"description": "Cube.js Query Orchestrator and Cache",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -29,15 +29,15 @@
"dist/src/*"
],
"dependencies": {
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/cubestore-driver": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/cubestore-driver": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"csv-write-stream": "^2.0.0",
"lru-cache": "^11.1.0",
"ramda": "^0.27.2"
},
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
"@types/jest": "^29",
"@types/node": "^20",
"@types/ramda": "^0.27.32",
diff --git a/packages/cubejs-questdb-driver/CHANGELOG.md b/packages/cubejs-questdb-driver/CHANGELOG.md
index 9f7404547f1e3..0af4f358da407 100644
--- a/packages/cubejs-questdb-driver/CHANGELOG.md
+++ b/packages/cubejs-questdb-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/questdb-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/questdb-driver
diff --git a/packages/cubejs-questdb-driver/package.json b/packages/cubejs-questdb-driver/package.json
index 90e5f7c059d5a..a227f2a4cfe7d 100644
--- a/packages/cubejs-questdb-driver/package.json
+++ b/packages/cubejs-questdb-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/questdb-driver",
"description": "Cube.js QuestDB database driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -27,9 +27,9 @@
"lint:fix": "eslint --fix src/* --ext .ts"
},
"dependencies": {
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/schema-compiler": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/schema-compiler": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"@types/pg": "^8.6.0",
"moment": "^2.24.0",
"pg": "^8.7.0",
@@ -37,8 +37,8 @@
},
"license": "Apache-2.0",
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
- "@cubejs-backend/testing-shared": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
+ "@cubejs-backend/testing-shared": "1.6.1",
"testcontainers": "^10.28.0",
"typescript": "~5.2.2"
},
diff --git a/packages/cubejs-redshift-driver/CHANGELOG.md b/packages/cubejs-redshift-driver/CHANGELOG.md
index ab2d459d84aa5..5afdd644fcb1d 100644
--- a/packages/cubejs-redshift-driver/CHANGELOG.md
+++ b/packages/cubejs-redshift-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/redshift-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/redshift-driver
diff --git a/packages/cubejs-redshift-driver/package.json b/packages/cubejs-redshift-driver/package.json
index e08f12c57b8ab..4415d4ac1c82e 100644
--- a/packages/cubejs-redshift-driver/package.json
+++ b/packages/cubejs-redshift-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/redshift-driver",
"description": "Cube.js Redshift database driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -25,13 +25,13 @@
"lint:fix": "eslint --fix src/* --ext .ts"
},
"dependencies": {
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/postgres-driver": "1.6.0",
- "@cubejs-backend/shared": "1.6.0"
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/postgres-driver": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1"
},
"license": "Apache-2.0",
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
"typescript": "~5.2.2"
},
"publishConfig": {
diff --git a/packages/cubejs-schema-compiler/CHANGELOG.md b/packages/cubejs-schema-compiler/CHANGELOG.md
index 5e6bd190ca215..f845b30501d87 100644
--- a/packages/cubejs-schema-compiler/CHANGELOG.md
+++ b/packages/cubejs-schema-compiler/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/schema-compiler
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
### Features
diff --git a/packages/cubejs-schema-compiler/package.json b/packages/cubejs-schema-compiler/package.json
index 130d8f532bbc9..3e4f27d87670d 100644
--- a/packages/cubejs-schema-compiler/package.json
+++ b/packages/cubejs-schema-compiler/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/schema-compiler",
"description": "Cube schema compiler",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -40,8 +40,8 @@
"@babel/standalone": "^7.24",
"@babel/traverse": "^7.24",
"@babel/types": "^7.24",
- "@cubejs-backend/native": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/native": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"antlr4": "^4.13.2",
"camelcase": "^6.2.0",
"cron-parser": "^4.9.0",
@@ -60,8 +60,8 @@
},
"devDependencies": {
"@clickhouse/client": "^1.12.0",
- "@cubejs-backend/linter": "1.6.0",
- "@cubejs-backend/query-orchestrator": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
+ "@cubejs-backend/query-orchestrator": "1.6.1",
"@types/babel__code-frame": "^7.0.6",
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.5",
diff --git a/packages/cubejs-schema-compiler/src/adapter/CubeStoreQuery.ts b/packages/cubejs-schema-compiler/src/adapter/CubeStoreQuery.ts
index fd6f23a44a666..c5f7d7f81a33a 100644
--- a/packages/cubejs-schema-compiler/src/adapter/CubeStoreQuery.ts
+++ b/packages/cubejs-schema-compiler/src/adapter/CubeStoreQuery.ts
@@ -198,7 +198,8 @@ export class CubeStoreQuery extends BaseQuery {
cumulativeMeasures: Array<[boolean, BaseMeasure]>,
preAggregationForQuery: any
) {
- if (this.cubeStoreRollingWindowJoin || !cumulativeMeasures.length) {
+ const hasDateRange = this.timeDimensions.filter(d => !d.dateRange && d.granularity).length === 0;
+ if ((this.cubeStoreRollingWindowJoin && hasDateRange) || !cumulativeMeasures.length) {
return super.regularAndTimeSeriesRollupQuery(regularMeasures, multipliedMeasures, cumulativeMeasures, preAggregationForQuery);
}
const cumulativeMeasuresWithoutMultiplied = cumulativeMeasures.map(([_, measure]) => measure);
diff --git a/packages/cubejs-server-core/CHANGELOG.md b/packages/cubejs-server-core/CHANGELOG.md
index aec79b780f1ae..1edf4b9e3a23b 100644
--- a/packages/cubejs-server-core/CHANGELOG.md
+++ b/packages/cubejs-server-core/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/server-core
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
### Bug Fixes
diff --git a/packages/cubejs-server-core/package.json b/packages/cubejs-server-core/package.json
index d8976e27bac53..8a4007f9dde02 100644
--- a/packages/cubejs-server-core/package.json
+++ b/packages/cubejs-server-core/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/server-core",
"description": "Cube.js base component to wire all backend components together",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -29,16 +29,16 @@
"unit": "jest --runInBand --forceExit --coverage dist/test"
},
"dependencies": {
- "@cubejs-backend/api-gateway": "1.6.0",
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/cloud": "1.6.0",
- "@cubejs-backend/cubestore-driver": "1.6.0",
+ "@cubejs-backend/api-gateway": "1.6.1",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/cloud": "1.6.1",
+ "@cubejs-backend/cubestore-driver": "1.6.1",
"@cubejs-backend/dotenv": "^9.0.2",
- "@cubejs-backend/native": "1.6.0",
- "@cubejs-backend/query-orchestrator": "1.6.0",
- "@cubejs-backend/schema-compiler": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
- "@cubejs-backend/templates": "1.6.0",
+ "@cubejs-backend/native": "1.6.1",
+ "@cubejs-backend/query-orchestrator": "1.6.1",
+ "@cubejs-backend/schema-compiler": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
+ "@cubejs-backend/templates": "1.6.1",
"codesandbox-import-utils": "^2.1.12",
"cross-spawn": "^7.0.1",
"fs-extra": "^8.1.0",
@@ -62,8 +62,8 @@
"ws": "^7.5.3"
},
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
- "@cubejs-client/playground": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
+ "@cubejs-client/playground": "1.6.1",
"@types/cross-spawn": "^6.0.2",
"@types/express": "^4.17.21",
"@types/fs-extra": "^9.0.8",
diff --git a/packages/cubejs-server/CHANGELOG.md b/packages/cubejs-server/CHANGELOG.md
index 90c3e963fd722..acf64de741db2 100644
--- a/packages/cubejs-server/CHANGELOG.md
+++ b/packages/cubejs-server/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/server
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/server
diff --git a/packages/cubejs-server/package.json b/packages/cubejs-server/package.json
index db8a7cb28fd09..8165552b5e3bb 100644
--- a/packages/cubejs-server/package.json
+++ b/packages/cubejs-server/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/server",
"description": "Cube.js all-in-one server",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"types": "index.d.ts",
"repository": {
"type": "git",
@@ -40,11 +40,11 @@
"jest:shapshot": "jest --updateSnapshot test"
},
"dependencies": {
- "@cubejs-backend/cubestore-driver": "1.6.0",
+ "@cubejs-backend/cubestore-driver": "1.6.1",
"@cubejs-backend/dotenv": "^9.0.2",
- "@cubejs-backend/native": "1.6.0",
- "@cubejs-backend/server-core": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/native": "1.6.1",
+ "@cubejs-backend/server-core": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"@oclif/color": "^1.0.0",
"@oclif/command": "^1.8.13",
"@oclif/config": "^1.18.2",
@@ -61,8 +61,8 @@
"ws": "^7.1.2"
},
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
- "@cubejs-backend/query-orchestrator": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
+ "@cubejs-backend/query-orchestrator": "1.6.1",
"@oclif/dev-cli": "^1.23.1",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.8",
diff --git a/packages/cubejs-snowflake-driver/CHANGELOG.md b/packages/cubejs-snowflake-driver/CHANGELOG.md
index fa364db091cf8..4cb05a8509e4d 100644
--- a/packages/cubejs-snowflake-driver/CHANGELOG.md
+++ b/packages/cubejs-snowflake-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/snowflake-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/snowflake-driver
diff --git a/packages/cubejs-snowflake-driver/package.json b/packages/cubejs-snowflake-driver/package.json
index 45a5b5a184f71..bad86beaff757 100644
--- a/packages/cubejs-snowflake-driver/package.json
+++ b/packages/cubejs-snowflake-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/snowflake-driver",
"description": "Cube.js Snowflake database driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -26,8 +26,8 @@
},
"dependencies": {
"@aws-sdk/client-s3": "^3.726.0",
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"date-fns-timezone": "^0.1.4",
"snowflake-sdk": "^2.2.0"
},
@@ -39,7 +39,7 @@
"extends": "../cubejs-linter"
},
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
"typescript": "~5.2.2"
}
}
diff --git a/packages/cubejs-sqlite-driver/CHANGELOG.md b/packages/cubejs-sqlite-driver/CHANGELOG.md
index 4af81b5c69fe6..02d20232fc395 100644
--- a/packages/cubejs-sqlite-driver/CHANGELOG.md
+++ b/packages/cubejs-sqlite-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/sqlite-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/sqlite-driver
diff --git a/packages/cubejs-sqlite-driver/package.json b/packages/cubejs-sqlite-driver/package.json
index 9970e35488909..87aba22182b36 100644
--- a/packages/cubejs-sqlite-driver/package.json
+++ b/packages/cubejs-sqlite-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/sqlite-driver",
"description": "Cube.js Sqlite database driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -18,13 +18,13 @@
"unit": "jest"
},
"dependencies": {
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"sqlite3": "^5.1.7"
},
"license": "Apache-2.0",
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
"jest": "^29"
},
"publishConfig": {
diff --git a/packages/cubejs-templates/CHANGELOG.md b/packages/cubejs-templates/CHANGELOG.md
index 376183216c4f1..ce36d0b808632 100644
--- a/packages/cubejs-templates/CHANGELOG.md
+++ b/packages/cubejs-templates/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/templates
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/templates
diff --git a/packages/cubejs-templates/package.json b/packages/cubejs-templates/package.json
index d821a0a24df9f..341040459f205 100644
--- a/packages/cubejs-templates/package.json
+++ b/packages/cubejs-templates/package.json
@@ -1,6 +1,6 @@
{
"name": "@cubejs-backend/templates",
- "version": "1.6.0",
+ "version": "1.6.1",
"description": "Cube.js Templates helpers",
"author": "Cube Dev, Inc.",
"repository": {
@@ -31,7 +31,7 @@
"extends": "../cubejs-linter"
},
"dependencies": {
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/shared": "1.6.1",
"cross-spawn": "^7.0.3",
"decompress": "^4.2.1",
"decompress-targz": "^4.1.1",
@@ -41,7 +41,7 @@
"source-map-support": "^0.5.19"
},
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
"typescript": "~5.2.2"
}
}
diff --git a/packages/cubejs-testing-drivers/CHANGELOG.md b/packages/cubejs-testing-drivers/CHANGELOG.md
index b728023b5840b..46fdf4e48ba3a 100644
--- a/packages/cubejs-testing-drivers/CHANGELOG.md
+++ b/packages/cubejs-testing-drivers/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/testing-drivers
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/testing-drivers
diff --git a/packages/cubejs-testing-drivers/package.json b/packages/cubejs-testing-drivers/package.json
index f429cb1c3b288..93c9c6ffb4fe3 100644
--- a/packages/cubejs-testing-drivers/package.json
+++ b/packages/cubejs-testing-drivers/package.json
@@ -1,6 +1,6 @@
{
"name": "@cubejs-backend/testing-drivers",
- "version": "1.6.0",
+ "version": "1.6.1",
"description": "Cube.js drivers test suite",
"author": "Cube Dev, Inc.",
"repository": {
@@ -72,24 +72,24 @@
"dist/src"
],
"dependencies": {
- "@cubejs-backend/athena-driver": "1.6.0",
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/bigquery-driver": "1.6.0",
- "@cubejs-backend/clickhouse-driver": "1.6.0",
- "@cubejs-backend/cubestore-driver": "1.6.0",
- "@cubejs-backend/databricks-jdbc-driver": "1.6.0",
+ "@cubejs-backend/athena-driver": "1.6.1",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/bigquery-driver": "1.6.1",
+ "@cubejs-backend/clickhouse-driver": "1.6.1",
+ "@cubejs-backend/cubestore-driver": "1.6.1",
+ "@cubejs-backend/databricks-jdbc-driver": "1.6.1",
"@cubejs-backend/dotenv": "^9.0.2",
- "@cubejs-backend/linter": "1.6.0",
- "@cubejs-backend/mssql-driver": "1.6.0",
- "@cubejs-backend/mysql-driver": "1.6.0",
- "@cubejs-backend/postgres-driver": "1.6.0",
- "@cubejs-backend/query-orchestrator": "1.6.0",
- "@cubejs-backend/server-core": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
- "@cubejs-backend/snowflake-driver": "1.6.0",
- "@cubejs-backend/testing-shared": "1.6.0",
- "@cubejs-client/core": "1.6.0",
- "@cubejs-client/ws-transport": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
+ "@cubejs-backend/mssql-driver": "1.6.1",
+ "@cubejs-backend/mysql-driver": "1.6.1",
+ "@cubejs-backend/postgres-driver": "1.6.1",
+ "@cubejs-backend/query-orchestrator": "1.6.1",
+ "@cubejs-backend/server-core": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
+ "@cubejs-backend/snowflake-driver": "1.6.1",
+ "@cubejs-backend/testing-shared": "1.6.1",
+ "@cubejs-client/core": "1.6.1",
+ "@cubejs-client/ws-transport": "1.6.1",
"@jest/globals": "^29",
"@types/jest": "^29",
"@types/node": "^20",
diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/athena-export-bucket-s3-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/athena-export-bucket-s3-full.test.ts.snap
index fcba9b49abdb3..08a447e06ce97 100644
--- a/packages/cubejs-testing-drivers/test/__snapshots__/athena-export-bucket-s3-full.test.ts.snap
+++ b/packages/cubejs-testing-drivers/test/__snapshots__/athena-export-bucket-s3-full.test.ts.snap
@@ -4531,6 +4531,10 @@ Array [
exports[`Queries with the @cubejs-backend/athena-driver SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -4703,10 +4707,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
@@ -7391,71 +7391,71 @@ Array [
"BigECommerce.orderDate": "2020-01-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-01-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-01-01T00:00:00.000",
- "BigECommerce.totalProfit": "29.65480",
- "BigECommerce.totalProfitForQuarter": "619.44850",
+ "BigECommerce.totalProfit": "29.6548",
+ "BigECommerce.totalProfitForQuarter": "619.4485",
},
Object {
"BigECommerce.orderDate": "2020-02-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-02-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-01-01T00:00:00.000",
- "BigECommerce.totalProfit": "6.19920",
- "BigECommerce.totalProfitForQuarter": "619.44850",
+ "BigECommerce.totalProfit": "6.1992",
+ "BigECommerce.totalProfitForQuarter": "619.4485",
},
Object {
"BigECommerce.orderDate": "2020-03-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-03-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-01-01T00:00:00.000",
- "BigECommerce.totalProfit": "583.59450",
- "BigECommerce.totalProfitForQuarter": "619.44850",
+ "BigECommerce.totalProfit": "583.5945",
+ "BigECommerce.totalProfitForQuarter": "619.4485",
},
Object {
"BigECommerce.orderDate": "2020-04-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-04-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-04-01T00:00:00.000",
- "BigECommerce.totalProfit": "6.41760",
- "BigECommerce.totalProfitForQuarter": "394.33860",
+ "BigECommerce.totalProfit": "6.4176",
+ "BigECommerce.totalProfitForQuarter": "394.3386",
},
Object {
"BigECommerce.orderDate": "2020-05-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-05-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-04-01T00:00:00.000",
- "BigECommerce.totalProfit": "353.68490",
- "BigECommerce.totalProfitForQuarter": "394.33860",
+ "BigECommerce.totalProfit": "353.6849",
+ "BigECommerce.totalProfitForQuarter": "394.3386",
},
Object {
"BigECommerce.orderDate": "2020-06-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-06-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-04-01T00:00:00.000",
- "BigECommerce.totalProfit": "34.23610",
- "BigECommerce.totalProfitForQuarter": "394.33860",
+ "BigECommerce.totalProfit": "34.2361",
+ "BigECommerce.totalProfitForQuarter": "394.3386",
},
Object {
"BigECommerce.orderDate": "2020-09-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-09-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-07-01T00:00:00.000",
- "BigECommerce.totalProfit": "461.13320",
- "BigECommerce.totalProfitForQuarter": "461.13320",
+ "BigECommerce.totalProfit": "461.1332",
+ "BigECommerce.totalProfitForQuarter": "461.1332",
},
Object {
"BigECommerce.orderDate": "2020-10-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-10-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-10-01T00:00:00.000",
- "BigECommerce.totalProfit": "139.99700",
- "BigECommerce.totalProfitForQuarter": "1576.63240",
+ "BigECommerce.totalProfit": "139.997",
+ "BigECommerce.totalProfitForQuarter": "1576.6324",
},
Object {
"BigECommerce.orderDate": "2020-11-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-11-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-10-01T00:00:00.000",
- "BigECommerce.totalProfit": "1132.66170",
- "BigECommerce.totalProfitForQuarter": "1576.63240",
+ "BigECommerce.totalProfit": "1132.6617",
+ "BigECommerce.totalProfitForQuarter": "1576.6324",
},
Object {
"BigECommerce.orderDate": "2020-12-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-12-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-10-01T00:00:00.000",
- "BigECommerce.totalProfit": "303.97370",
- "BigECommerce.totalProfitForQuarter": "1576.63240",
+ "BigECommerce.totalProfit": "303.9737",
+ "BigECommerce.totalProfitForQuarter": "1576.6324",
},
]
`;
diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/bigquery-export-bucket-gcs-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/bigquery-export-bucket-gcs-full.test.ts.snap
index eb89929e9634c..1c89b687826d2 100644
--- a/packages/cubejs-testing-drivers/test/__snapshots__/bigquery-export-bucket-gcs-full.test.ts.snap
+++ b/packages/cubejs-testing-drivers/test/__snapshots__/bigquery-export-bucket-gcs-full.test.ts.snap
@@ -7734,6 +7734,10 @@ Array [
exports[`Queries with the @cubejs-backend/bigquery-driver SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -7906,10 +7910,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
@@ -10710,71 +10710,71 @@ Array [
"BigECommerce.orderDate": "2020-01-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-01-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-01-01T00:00:00.000",
- "BigECommerce.totalProfit": "29.65480",
- "BigECommerce.totalProfitForQuarter": "619.44850",
+ "BigECommerce.totalProfit": "29.6548",
+ "BigECommerce.totalProfitForQuarter": "619.4485",
},
Object {
"BigECommerce.orderDate": "2020-02-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-02-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-01-01T00:00:00.000",
- "BigECommerce.totalProfit": "6.19920",
- "BigECommerce.totalProfitForQuarter": "619.44850",
+ "BigECommerce.totalProfit": "6.1992",
+ "BigECommerce.totalProfitForQuarter": "619.4485",
},
Object {
"BigECommerce.orderDate": "2020-03-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-03-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-01-01T00:00:00.000",
- "BigECommerce.totalProfit": "583.59450",
- "BigECommerce.totalProfitForQuarter": "619.44850",
+ "BigECommerce.totalProfit": "583.5945",
+ "BigECommerce.totalProfitForQuarter": "619.4485",
},
Object {
"BigECommerce.orderDate": "2020-04-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-04-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-04-01T00:00:00.000",
- "BigECommerce.totalProfit": "6.41760",
- "BigECommerce.totalProfitForQuarter": "394.33860",
+ "BigECommerce.totalProfit": "6.4176",
+ "BigECommerce.totalProfitForQuarter": "394.3386",
},
Object {
"BigECommerce.orderDate": "2020-05-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-05-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-04-01T00:00:00.000",
- "BigECommerce.totalProfit": "353.68490",
- "BigECommerce.totalProfitForQuarter": "394.33860",
+ "BigECommerce.totalProfit": "353.6849",
+ "BigECommerce.totalProfitForQuarter": "394.3386",
},
Object {
"BigECommerce.orderDate": "2020-06-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-06-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-04-01T00:00:00.000",
- "BigECommerce.totalProfit": "34.23610",
- "BigECommerce.totalProfitForQuarter": "394.33860",
+ "BigECommerce.totalProfit": "34.2361",
+ "BigECommerce.totalProfitForQuarter": "394.3386",
},
Object {
"BigECommerce.orderDate": "2020-09-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-09-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-07-01T00:00:00.000",
- "BigECommerce.totalProfit": "461.13320",
- "BigECommerce.totalProfitForQuarter": "461.13320",
+ "BigECommerce.totalProfit": "461.1332",
+ "BigECommerce.totalProfitForQuarter": "461.1332",
},
Object {
"BigECommerce.orderDate": "2020-10-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-10-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-10-01T00:00:00.000",
- "BigECommerce.totalProfit": "139.99700",
- "BigECommerce.totalProfitForQuarter": "1576.63240",
+ "BigECommerce.totalProfit": "139.997",
+ "BigECommerce.totalProfitForQuarter": "1576.6324",
},
Object {
"BigECommerce.orderDate": "2020-11-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-11-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-10-01T00:00:00.000",
- "BigECommerce.totalProfit": "1132.66170",
- "BigECommerce.totalProfitForQuarter": "1576.63240",
+ "BigECommerce.totalProfit": "1132.6617",
+ "BigECommerce.totalProfitForQuarter": "1576.6324",
},
Object {
"BigECommerce.orderDate": "2020-12-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-12-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-10-01T00:00:00.000",
- "BigECommerce.totalProfit": "303.97370",
- "BigECommerce.totalProfitForQuarter": "1576.63240",
+ "BigECommerce.totalProfit": "303.9737",
+ "BigECommerce.totalProfitForQuarter": "1576.6324",
},
]
`;
diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/clickhouse-export-bucket-s3-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/clickhouse-export-bucket-s3-full.test.ts.snap
index fe1568c9aacb4..1054800429609 100644
--- a/packages/cubejs-testing-drivers/test/__snapshots__/clickhouse-export-bucket-s3-full.test.ts.snap
+++ b/packages/cubejs-testing-drivers/test/__snapshots__/clickhouse-export-bucket-s3-full.test.ts.snap
@@ -1944,6 +1944,10 @@ Array [
exports[`Queries with the @cubejs-backend/clickhouse-driver export-bucket-s3 SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -2116,10 +2120,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/clickhouse-export-bucket-s3-prefix-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/clickhouse-export-bucket-s3-prefix-full.test.ts.snap
index aea90fc34c1a5..c335df41d8883 100644
--- a/packages/cubejs-testing-drivers/test/__snapshots__/clickhouse-export-bucket-s3-prefix-full.test.ts.snap
+++ b/packages/cubejs-testing-drivers/test/__snapshots__/clickhouse-export-bucket-s3-prefix-full.test.ts.snap
@@ -1944,6 +1944,10 @@ Array [
exports[`Queries with the @cubejs-backend/clickhouse-driver export-bucket-s3-prefix SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -2116,10 +2120,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/clickhouse-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/clickhouse-full.test.ts.snap
index 42f25946b7529..8ca7eeb9bb7f1 100644
--- a/packages/cubejs-testing-drivers/test/__snapshots__/clickhouse-full.test.ts.snap
+++ b/packages/cubejs-testing-drivers/test/__snapshots__/clickhouse-full.test.ts.snap
@@ -1944,6 +1944,10 @@ Array [
exports[`Queries with the @cubejs-backend/clickhouse-driver SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -2116,10 +2120,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-export-bucket-azure-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-export-bucket-azure-full.test.ts.snap
index c224e3a607d96..d266e280823df 100644
--- a/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-export-bucket-azure-full.test.ts.snap
+++ b/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-export-bucket-azure-full.test.ts.snap
@@ -10534,6 +10534,10 @@ Array [
exports[`Queries with the @cubejs-backend/databricks-jdbc-driver export-bucket-azure SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -10706,10 +10710,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-export-bucket-azure-prefix-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-export-bucket-azure-prefix-full.test.ts.snap
index 644230f20fe44..3a8381c2a497e 100644
--- a/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-export-bucket-azure-prefix-full.test.ts.snap
+++ b/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-export-bucket-azure-prefix-full.test.ts.snap
@@ -10534,6 +10534,10 @@ Array [
exports[`Queries with the @cubejs-backend/databricks-jdbc-driver export-bucket-azure-prefix SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -10706,10 +10710,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-export-bucket-gcs-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-export-bucket-gcs-full.test.ts.snap
index 7010356d59052..075dc71ba6b6f 100644
--- a/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-export-bucket-gcs-full.test.ts.snap
+++ b/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-export-bucket-gcs-full.test.ts.snap
@@ -10534,6 +10534,10 @@ Array [
exports[`Queries with the @cubejs-backend/databricks-jdbc-driver export-bucket-gcs SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -10706,10 +10710,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-export-bucket-gcs-prefix-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-export-bucket-gcs-prefix-full.test.ts.snap
index 4dbb5b65d7389..5ad02aeb7de1e 100644
--- a/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-export-bucket-gcs-prefix-full.test.ts.snap
+++ b/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-export-bucket-gcs-prefix-full.test.ts.snap
@@ -10534,6 +10534,10 @@ Array [
exports[`Queries with the @cubejs-backend/databricks-jdbc-driver export-bucket-gcs-prefix SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -10706,10 +10710,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-export-bucket-s3-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-export-bucket-s3-full.test.ts.snap
index a470907c5c014..8efb6b3039ff5 100644
--- a/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-export-bucket-s3-full.test.ts.snap
+++ b/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-export-bucket-s3-full.test.ts.snap
@@ -10534,6 +10534,10 @@ Array [
exports[`Queries with the @cubejs-backend/databricks-jdbc-driver export-bucket-s3 SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -10706,10 +10710,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-export-bucket-s3-prefix-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-export-bucket-s3-prefix-full.test.ts.snap
index 9494d40892ec9..4d4810b30dd00 100644
--- a/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-export-bucket-s3-prefix-full.test.ts.snap
+++ b/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-export-bucket-s3-prefix-full.test.ts.snap
@@ -10534,6 +10534,10 @@ Array [
exports[`Queries with the @cubejs-backend/databricks-jdbc-driver export-bucket-s3-prefix SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -10706,10 +10710,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-full.test.ts.snap
index 1151c05f850ca..56950a4a1feb9 100644
--- a/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-full.test.ts.snap
+++ b/packages/cubejs-testing-drivers/test/__snapshots__/databricks-jdbc-full.test.ts.snap
@@ -10759,6 +10759,10 @@ Array [
exports[`Queries with the @cubejs-backend/databricks-jdbc-driver SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -10931,10 +10935,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
@@ -13407,71 +13407,71 @@ Array [
"BigECommerce.orderDate": "2020-01-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-01-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-01-01T00:00:00.000",
- "BigECommerce.totalProfit": 29.6548,
- "BigECommerce.totalProfitForQuarter": 619.4485,
+ "BigECommerce.totalProfit": "29.6548",
+ "BigECommerce.totalProfitForQuarter": "619.4485",
},
Object {
"BigECommerce.orderDate": "2020-02-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-02-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-01-01T00:00:00.000",
- "BigECommerce.totalProfit": 6.1992,
- "BigECommerce.totalProfitForQuarter": 619.4485,
+ "BigECommerce.totalProfit": "6.1992",
+ "BigECommerce.totalProfitForQuarter": "619.4485",
},
Object {
"BigECommerce.orderDate": "2020-03-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-03-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-01-01T00:00:00.000",
- "BigECommerce.totalProfit": 583.5945,
- "BigECommerce.totalProfitForQuarter": 619.4485,
+ "BigECommerce.totalProfit": "583.5945",
+ "BigECommerce.totalProfitForQuarter": "619.4485",
},
Object {
"BigECommerce.orderDate": "2020-04-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-04-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-04-01T00:00:00.000",
- "BigECommerce.totalProfit": 6.4176,
- "BigECommerce.totalProfitForQuarter": 394.3386,
+ "BigECommerce.totalProfit": "6.4176",
+ "BigECommerce.totalProfitForQuarter": "394.3386",
},
Object {
"BigECommerce.orderDate": "2020-05-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-05-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-04-01T00:00:00.000",
- "BigECommerce.totalProfit": 353.6849,
- "BigECommerce.totalProfitForQuarter": 394.3386,
+ "BigECommerce.totalProfit": "353.6849",
+ "BigECommerce.totalProfitForQuarter": "394.3386",
},
Object {
"BigECommerce.orderDate": "2020-06-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-06-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-04-01T00:00:00.000",
- "BigECommerce.totalProfit": 34.2361,
- "BigECommerce.totalProfitForQuarter": 394.3386,
+ "BigECommerce.totalProfit": "34.2361",
+ "BigECommerce.totalProfitForQuarter": "394.3386",
},
Object {
"BigECommerce.orderDate": "2020-09-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-09-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-07-01T00:00:00.000",
- "BigECommerce.totalProfit": 461.1332,
- "BigECommerce.totalProfitForQuarter": 461.1332,
+ "BigECommerce.totalProfit": "461.1332",
+ "BigECommerce.totalProfitForQuarter": "461.1332",
},
Object {
"BigECommerce.orderDate": "2020-10-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-10-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-10-01T00:00:00.000",
- "BigECommerce.totalProfit": 139.997,
- "BigECommerce.totalProfitForQuarter": 1576.6324,
+ "BigECommerce.totalProfit": "139.997",
+ "BigECommerce.totalProfitForQuarter": "1576.6324",
},
Object {
"BigECommerce.orderDate": "2020-11-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-11-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-10-01T00:00:00.000",
- "BigECommerce.totalProfit": 1132.6617,
- "BigECommerce.totalProfitForQuarter": 1576.6324,
+ "BigECommerce.totalProfit": "1132.6617",
+ "BigECommerce.totalProfitForQuarter": "1576.6324",
},
Object {
"BigECommerce.orderDate": "2020-12-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-12-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-10-01T00:00:00.000",
- "BigECommerce.totalProfit": 303.9737,
- "BigECommerce.totalProfitForQuarter": 1576.6324,
+ "BigECommerce.totalProfit": "303.9737",
+ "BigECommerce.totalProfitForQuarter": "1576.6324",
},
]
`;
diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/mysql-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/mysql-full.test.ts.snap
index 007c888373462..83fb966c1071e 100644
--- a/packages/cubejs-testing-drivers/test/__snapshots__/mysql-full.test.ts.snap
+++ b/packages/cubejs-testing-drivers/test/__snapshots__/mysql-full.test.ts.snap
@@ -6164,6 +6164,10 @@ Array [
exports[`Queries with the @cubejs-backend/mysql-driver SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -6336,10 +6340,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
@@ -9387,71 +9387,71 @@ Array [
"BigECommerce.orderDate": "2020-01-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-01-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-01-01T00:00:00.000",
- "BigECommerce.totalProfit": 29.6548,
- "BigECommerce.totalProfitForQuarter": 619.4485,
+ "BigECommerce.totalProfit": "29.6548",
+ "BigECommerce.totalProfitForQuarter": "619.4485",
},
Object {
"BigECommerce.orderDate": "2020-02-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-02-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-01-01T00:00:00.000",
- "BigECommerce.totalProfit": 6.1992,
- "BigECommerce.totalProfitForQuarter": 619.4485,
+ "BigECommerce.totalProfit": "6.1992",
+ "BigECommerce.totalProfitForQuarter": "619.4485",
},
Object {
"BigECommerce.orderDate": "2020-03-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-03-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-01-01T00:00:00.000",
- "BigECommerce.totalProfit": 583.5945,
- "BigECommerce.totalProfitForQuarter": 619.4485,
+ "BigECommerce.totalProfit": "583.5945",
+ "BigECommerce.totalProfitForQuarter": "619.4485",
},
Object {
"BigECommerce.orderDate": "2020-04-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-04-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-04-01T00:00:00.000",
- "BigECommerce.totalProfit": 6.4176,
- "BigECommerce.totalProfitForQuarter": 394.3386,
+ "BigECommerce.totalProfit": "6.4176",
+ "BigECommerce.totalProfitForQuarter": "394.3386",
},
Object {
"BigECommerce.orderDate": "2020-05-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-05-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-04-01T00:00:00.000",
- "BigECommerce.totalProfit": 353.6849,
- "BigECommerce.totalProfitForQuarter": 394.3386,
+ "BigECommerce.totalProfit": "353.6849",
+ "BigECommerce.totalProfitForQuarter": "394.3386",
},
Object {
"BigECommerce.orderDate": "2020-06-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-06-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-04-01T00:00:00.000",
- "BigECommerce.totalProfit": 34.2361,
- "BigECommerce.totalProfitForQuarter": 394.3386,
+ "BigECommerce.totalProfit": "34.2361",
+ "BigECommerce.totalProfitForQuarter": "394.3386",
},
Object {
"BigECommerce.orderDate": "2020-09-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-09-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-07-01T00:00:00.000",
- "BigECommerce.totalProfit": 461.1332,
- "BigECommerce.totalProfitForQuarter": 461.1332,
+ "BigECommerce.totalProfit": "461.1332",
+ "BigECommerce.totalProfitForQuarter": "461.1332",
},
Object {
"BigECommerce.orderDate": "2020-10-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-10-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-10-01T00:00:00.000",
- "BigECommerce.totalProfit": 139.997,
- "BigECommerce.totalProfitForQuarter": 1576.6324,
+ "BigECommerce.totalProfit": "139.997",
+ "BigECommerce.totalProfitForQuarter": "1576.6324",
},
Object {
"BigECommerce.orderDate": "2020-11-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-11-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-10-01T00:00:00.000",
- "BigECommerce.totalProfit": 1132.6617,
- "BigECommerce.totalProfitForQuarter": 1576.6324,
+ "BigECommerce.totalProfit": "1132.6617",
+ "BigECommerce.totalProfitForQuarter": "1576.6324",
},
Object {
"BigECommerce.orderDate": "2020-12-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-12-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-10-01T00:00:00.000",
- "BigECommerce.totalProfit": 303.9737,
- "BigECommerce.totalProfitForQuarter": 1576.6324,
+ "BigECommerce.totalProfit": "303.9737",
+ "BigECommerce.totalProfitForQuarter": "1576.6324",
},
]
`;
diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/postgres-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/postgres-full.test.ts.snap
index 7adfa7770f980..9c5c0167bda03 100644
--- a/packages/cubejs-testing-drivers/test/__snapshots__/postgres-full.test.ts.snap
+++ b/packages/cubejs-testing-drivers/test/__snapshots__/postgres-full.test.ts.snap
@@ -12590,6 +12590,10 @@ Array [
exports[`Queries with the @cubejs-backend/postgres-driver SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -12762,10 +12766,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
@@ -15659,71 +15659,71 @@ Array [
"BigECommerce.orderDate": "2020-01-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-01-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-01-01T00:00:00.000",
- "BigECommerce.totalProfit": "29.65480",
- "BigECommerce.totalProfitForQuarter": "619.44850",
+ "BigECommerce.totalProfit": "29.6548",
+ "BigECommerce.totalProfitForQuarter": "619.4485",
},
Object {
"BigECommerce.orderDate": "2020-02-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-02-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-01-01T00:00:00.000",
- "BigECommerce.totalProfit": "6.19920",
- "BigECommerce.totalProfitForQuarter": "619.44850",
+ "BigECommerce.totalProfit": "6.1992",
+ "BigECommerce.totalProfitForQuarter": "619.4485",
},
Object {
"BigECommerce.orderDate": "2020-03-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-03-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-01-01T00:00:00.000",
- "BigECommerce.totalProfit": "583.59450",
- "BigECommerce.totalProfitForQuarter": "619.44850",
+ "BigECommerce.totalProfit": "583.5945",
+ "BigECommerce.totalProfitForQuarter": "619.4485",
},
Object {
"BigECommerce.orderDate": "2020-04-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-04-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-04-01T00:00:00.000",
- "BigECommerce.totalProfit": "6.41760",
- "BigECommerce.totalProfitForQuarter": "394.33860",
+ "BigECommerce.totalProfit": "6.4176",
+ "BigECommerce.totalProfitForQuarter": "394.3386",
},
Object {
"BigECommerce.orderDate": "2020-05-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-05-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-04-01T00:00:00.000",
- "BigECommerce.totalProfit": "353.68490",
- "BigECommerce.totalProfitForQuarter": "394.33860",
+ "BigECommerce.totalProfit": "353.6849",
+ "BigECommerce.totalProfitForQuarter": "394.3386",
},
Object {
"BigECommerce.orderDate": "2020-06-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-06-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-04-01T00:00:00.000",
- "BigECommerce.totalProfit": "34.23610",
- "BigECommerce.totalProfitForQuarter": "394.33860",
+ "BigECommerce.totalProfit": "34.2361",
+ "BigECommerce.totalProfitForQuarter": "394.3386",
},
Object {
"BigECommerce.orderDate": "2020-09-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-09-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-07-01T00:00:00.000",
- "BigECommerce.totalProfit": "461.13320",
- "BigECommerce.totalProfitForQuarter": "461.13320",
+ "BigECommerce.totalProfit": "461.1332",
+ "BigECommerce.totalProfitForQuarter": "461.1332",
},
Object {
"BigECommerce.orderDate": "2020-10-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-10-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-10-01T00:00:00.000",
- "BigECommerce.totalProfit": "139.99700",
- "BigECommerce.totalProfitForQuarter": "1576.63240",
+ "BigECommerce.totalProfit": "139.997",
+ "BigECommerce.totalProfitForQuarter": "1576.6324",
},
Object {
"BigECommerce.orderDate": "2020-11-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-11-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-10-01T00:00:00.000",
- "BigECommerce.totalProfit": "1132.66170",
- "BigECommerce.totalProfitForQuarter": "1576.63240",
+ "BigECommerce.totalProfit": "1132.6617",
+ "BigECommerce.totalProfitForQuarter": "1576.6324",
},
Object {
"BigECommerce.orderDate": "2020-12-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-12-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-10-01T00:00:00.000",
- "BigECommerce.totalProfit": "303.97370",
- "BigECommerce.totalProfitForQuarter": "1576.63240",
+ "BigECommerce.totalProfit": "303.9737",
+ "BigECommerce.totalProfitForQuarter": "1576.6324",
},
]
`;
diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/redshift-export-bucket-s3-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/redshift-export-bucket-s3-full.test.ts.snap
index b0704ca048e34..437da9c77b1a5 100644
--- a/packages/cubejs-testing-drivers/test/__snapshots__/redshift-export-bucket-s3-full.test.ts.snap
+++ b/packages/cubejs-testing-drivers/test/__snapshots__/redshift-export-bucket-s3-full.test.ts.snap
@@ -12582,6 +12582,10 @@ Array [
exports[`Queries with the @cubejs-backend/redshift-driver export-bucket-s3 SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -12754,10 +12758,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/redshift-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/redshift-full.test.ts.snap
index 8d8de6cc417a4..b07f3133c1a61 100644
--- a/packages/cubejs-testing-drivers/test/__snapshots__/redshift-full.test.ts.snap
+++ b/packages/cubejs-testing-drivers/test/__snapshots__/redshift-full.test.ts.snap
@@ -12582,6 +12582,10 @@ Array [
exports[`Queries with the @cubejs-backend/redshift-driver SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -12754,10 +12758,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
@@ -15404,71 +15404,71 @@ Array [
"BigECommerce.orderDate": "2020-01-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-01-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-01-01T00:00:00.000",
- "BigECommerce.totalProfit": "29.65480",
- "BigECommerce.totalProfitForQuarter": "619.44850",
+ "BigECommerce.totalProfit": "29.6548",
+ "BigECommerce.totalProfitForQuarter": "619.4485",
},
Object {
"BigECommerce.orderDate": "2020-02-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-02-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-01-01T00:00:00.000",
- "BigECommerce.totalProfit": "6.19920",
- "BigECommerce.totalProfitForQuarter": "619.44850",
+ "BigECommerce.totalProfit": "6.1992",
+ "BigECommerce.totalProfitForQuarter": "619.4485",
},
Object {
"BigECommerce.orderDate": "2020-03-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-03-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-01-01T00:00:00.000",
- "BigECommerce.totalProfit": "583.59450",
- "BigECommerce.totalProfitForQuarter": "619.44850",
+ "BigECommerce.totalProfit": "583.5945",
+ "BigECommerce.totalProfitForQuarter": "619.4485",
},
Object {
"BigECommerce.orderDate": "2020-04-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-04-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-04-01T00:00:00.000",
- "BigECommerce.totalProfit": "6.41760",
- "BigECommerce.totalProfitForQuarter": "394.33860",
+ "BigECommerce.totalProfit": "6.4176",
+ "BigECommerce.totalProfitForQuarter": "394.3386",
},
Object {
"BigECommerce.orderDate": "2020-05-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-05-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-04-01T00:00:00.000",
- "BigECommerce.totalProfit": "353.68490",
- "BigECommerce.totalProfitForQuarter": "394.33860",
+ "BigECommerce.totalProfit": "353.6849",
+ "BigECommerce.totalProfitForQuarter": "394.3386",
},
Object {
"BigECommerce.orderDate": "2020-06-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-06-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-04-01T00:00:00.000",
- "BigECommerce.totalProfit": "34.23610",
- "BigECommerce.totalProfitForQuarter": "394.33860",
+ "BigECommerce.totalProfit": "34.2361",
+ "BigECommerce.totalProfitForQuarter": "394.3386",
},
Object {
"BigECommerce.orderDate": "2020-09-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-09-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-07-01T00:00:00.000",
- "BigECommerce.totalProfit": "461.13320",
- "BigECommerce.totalProfitForQuarter": "461.13320",
+ "BigECommerce.totalProfit": "461.1332",
+ "BigECommerce.totalProfitForQuarter": "461.1332",
},
Object {
"BigECommerce.orderDate": "2020-10-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-10-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-10-01T00:00:00.000",
- "BigECommerce.totalProfit": "139.99700",
- "BigECommerce.totalProfitForQuarter": "1576.63240",
+ "BigECommerce.totalProfit": "139.997",
+ "BigECommerce.totalProfitForQuarter": "1576.6324",
},
Object {
"BigECommerce.orderDate": "2020-11-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-11-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-10-01T00:00:00.000",
- "BigECommerce.totalProfit": "1132.66170",
- "BigECommerce.totalProfitForQuarter": "1576.63240",
+ "BigECommerce.totalProfit": "1132.6617",
+ "BigECommerce.totalProfitForQuarter": "1576.6324",
},
Object {
"BigECommerce.orderDate": "2020-12-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-12-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-10-01T00:00:00.000",
- "BigECommerce.totalProfit": "303.97370",
- "BigECommerce.totalProfitForQuarter": "1576.63240",
+ "BigECommerce.totalProfit": "303.9737",
+ "BigECommerce.totalProfitForQuarter": "1576.6324",
},
]
`;
diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-encrypted-pk-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-encrypted-pk-full.test.ts.snap
index 76eb9ff10abd1..4c99e9de33a4c 100644
--- a/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-encrypted-pk-full.test.ts.snap
+++ b/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-encrypted-pk-full.test.ts.snap
@@ -8172,6 +8172,10 @@ Array [
exports[`Queries with the @cubejs-backend/snowflake-driver encrypted-pk SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -8344,10 +8348,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
@@ -21936,6 +21936,10 @@ Array [
exports[`Queries with the @cubejs-backend/snowflake-driver encrypted-pk SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -22108,10 +22112,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-azure-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-azure-full.test.ts.snap
index 63b61ad9516fa..9d726fce917c8 100644
--- a/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-azure-full.test.ts.snap
+++ b/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-azure-full.test.ts.snap
@@ -21924,6 +21924,10 @@ Array [
exports[`Queries with the @cubejs-backend/snowflake-driver export-bucket-azure SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -22096,10 +22100,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-azure-prefix-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-azure-prefix-full.test.ts.snap
index 58147265f2fa5..6dbb2b35e4d81 100644
--- a/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-azure-prefix-full.test.ts.snap
+++ b/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-azure-prefix-full.test.ts.snap
@@ -21729,6 +21729,10 @@ Array [
exports[`Queries with the @cubejs-backend/snowflake-driver export-bucket-azure-prefix SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -21901,10 +21905,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-azure-via-storage-integration-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-azure-via-storage-integration-full.test.ts.snap
index 5bfbe7e4a4244..14d78b10ff4fd 100644
--- a/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-azure-via-storage-integration-full.test.ts.snap
+++ b/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-azure-via-storage-integration-full.test.ts.snap
@@ -12590,6 +12590,10 @@ Array [
exports[`Queries with the @cubejs-backend/snowflake-driver export-bucket-azure-via-storage-integration SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -12762,10 +12766,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-gcs-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-gcs-full.test.ts.snap
index 08ed71bc8c075..5aba264f7a313 100644
--- a/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-gcs-full.test.ts.snap
+++ b/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-gcs-full.test.ts.snap
@@ -12590,6 +12590,10 @@ Array [
exports[`Queries with the @cubejs-backend/snowflake-driver export-bucket-gcs SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -12762,10 +12766,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-gcs-prefix-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-gcs-prefix-full.test.ts.snap
index 597fe2381def2..b50ebba73d172 100644
--- a/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-gcs-prefix-full.test.ts.snap
+++ b/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-gcs-prefix-full.test.ts.snap
@@ -12590,6 +12590,10 @@ Array [
exports[`Queries with the @cubejs-backend/snowflake-driver export-bucket-gcs-prefix SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -12762,10 +12766,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-s3-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-s3-full.test.ts.snap
index 0921246e14fc7..b2586e4fddc1a 100644
--- a/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-s3-full.test.ts.snap
+++ b/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-s3-full.test.ts.snap
@@ -12590,6 +12590,10 @@ Array [
exports[`Queries with the @cubejs-backend/snowflake-driver export-bucket-s3 SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -12762,10 +12766,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-s3-prefix-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-s3-prefix-full.test.ts.snap
index d7cc0b6b4be54..70af953e55475 100644
--- a/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-s3-prefix-full.test.ts.snap
+++ b/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-s3-prefix-full.test.ts.snap
@@ -12590,6 +12590,10 @@ Array [
exports[`Queries with the @cubejs-backend/snowflake-driver export-bucket-s3-prefix SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -12762,10 +12766,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-s3-via-storage-integration-iam-roles-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-s3-via-storage-integration-iam-roles-full.test.ts.snap
index 36deac1b8446c..4685bf6504c92 100644
--- a/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-s3-via-storage-integration-iam-roles-full.test.ts.snap
+++ b/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-export-bucket-s3-via-storage-integration-iam-roles-full.test.ts.snap
@@ -12590,6 +12590,10 @@ Array [
exports[`Queries with the @cubejs-backend/snowflake-driver export-bucket-s3-via-storage-integration-iam-roles SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -12762,10 +12766,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
diff --git a/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-full.test.ts.snap b/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-full.test.ts.snap
index f970e917cab33..c5ac482037b2c 100644
--- a/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-full.test.ts.snap
+++ b/packages/cubejs-testing-drivers/test/__snapshots__/snowflake-full.test.ts.snap
@@ -12590,6 +12590,10 @@ Array [
exports[`Queries with the @cubejs-backend/snowflake-driver SQL API: ungrouped pre-agg: ungrouped_pre_agg 1`] = `
Array [
+ Object {
+ "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
+ "totalSales": null,
+ },
Object {
"productName": "Canon PC1080F Personal Copier",
"totalSales": 2399.96,
@@ -12762,10 +12766,6 @@ Array [
"productName": "OIC #2 Pencils, Medium Soft",
"totalSales": 3.76,
},
- Object {
- "productName": "Lexmark 20R1285 X6650 Wireless All-in-One Printer",
- "totalSales": null,
- },
]
`;
@@ -15822,7 +15822,7 @@ Array [
"BigECommerce.orderDate": "2020-10-01T00:00:00.000",
"BigECommerce.orderDate.month": "2020-10-01T00:00:00.000",
"BigECommerce.orderDate.quarter": "2020-10-01T00:00:00.000",
- "BigECommerce.totalProfit": "139.9970",
+ "BigECommerce.totalProfit": "139.997",
"BigECommerce.totalProfitForQuarter": "1576.6324",
},
Object {
diff --git a/packages/cubejs-testing-shared/CHANGELOG.md b/packages/cubejs-testing-shared/CHANGELOG.md
index a09103c94f75b..ac3fd7f2d203f 100644
--- a/packages/cubejs-testing-shared/CHANGELOG.md
+++ b/packages/cubejs-testing-shared/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/testing-shared
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/testing-shared
diff --git a/packages/cubejs-testing-shared/package.json b/packages/cubejs-testing-shared/package.json
index f128ebf6aafaf..644e6e7cc2fe8 100644
--- a/packages/cubejs-testing-shared/package.json
+++ b/packages/cubejs-testing-shared/package.json
@@ -1,6 +1,6 @@
{
"name": "@cubejs-backend/testing-shared",
- "version": "1.6.0",
+ "version": "1.6.1",
"description": "Cube.js Testing Helpers",
"author": "Cube Dev, Inc.",
"repository": {
@@ -26,16 +26,16 @@
],
"dependencies": {
"@cubejs-backend/dotenv": "^9.0.2",
- "@cubejs-backend/query-orchestrator": "1.6.0",
- "@cubejs-backend/schema-compiler": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/query-orchestrator": "1.6.1",
+ "@cubejs-backend/schema-compiler": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"@testcontainers/kafka": "~10.28.0",
"dedent": "^0.7.0",
"node-fetch": "^2.6.7",
"testcontainers": "^10.28.0"
},
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
"@jest/globals": "^29",
"@types/dedent": "^0.7.0",
"@types/jest": "^29",
diff --git a/packages/cubejs-testing/CHANGELOG.md b/packages/cubejs-testing/CHANGELOG.md
index 0f649db3f3a57..71206e0f6bd88 100644
--- a/packages/cubejs-testing/CHANGELOG.md
+++ b/packages/cubejs-testing/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/testing
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
### Bug Fixes
diff --git a/packages/cubejs-testing/package.json b/packages/cubejs-testing/package.json
index ac6f3d53b2534..38d1c9d9d0a49 100644
--- a/packages/cubejs-testing/package.json
+++ b/packages/cubejs-testing/package.json
@@ -1,6 +1,6 @@
{
"name": "@cubejs-backend/testing",
- "version": "1.6.0",
+ "version": "1.6.1",
"description": "Cube.js e2e tests",
"author": "Cube Dev, Inc.",
"repository": {
@@ -99,15 +99,15 @@
"birdbox-fixtures"
],
"dependencies": {
- "@cubejs-backend/cubestore-driver": "1.6.0",
+ "@cubejs-backend/cubestore-driver": "1.6.1",
"@cubejs-backend/dotenv": "^9.0.2",
- "@cubejs-backend/ksql-driver": "1.6.0",
- "@cubejs-backend/postgres-driver": "1.6.0",
- "@cubejs-backend/query-orchestrator": "1.6.0",
- "@cubejs-backend/schema-compiler": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
- "@cubejs-backend/testing-shared": "1.6.0",
- "@cubejs-client/ws-transport": "1.6.0",
+ "@cubejs-backend/ksql-driver": "1.6.1",
+ "@cubejs-backend/postgres-driver": "1.6.1",
+ "@cubejs-backend/query-orchestrator": "1.6.1",
+ "@cubejs-backend/schema-compiler": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
+ "@cubejs-backend/testing-shared": "1.6.1",
+ "@cubejs-client/ws-transport": "1.6.1",
"dedent": "^0.7.0",
"fs-extra": "^8.1.0",
"http-proxy": "^1.18.1",
@@ -118,8 +118,8 @@
},
"devDependencies": {
"@4tw/cypress-drag-drop": "^1.6.0",
- "@cubejs-backend/linter": "1.6.0",
- "@cubejs-client/core": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
+ "@cubejs-client/core": "1.6.1",
"@jest/globals": "^29",
"@types/dedent": "^0.7.0",
"@types/http-proxy": "^1.17.5",
diff --git a/packages/cubejs-testing/test/__snapshots__/birdbox-postgresql-pre-aggregations.test.ts.snap b/packages/cubejs-testing/test/__snapshots__/birdbox-postgresql-pre-aggregations.test.ts.snap
index aa6dbc4729a9c..8db31326c381e 100644
--- a/packages/cubejs-testing/test/__snapshots__/birdbox-postgresql-pre-aggregations.test.ts.snap
+++ b/packages/cubejs-testing/test/__snapshots__/birdbox-postgresql-pre-aggregations.test.ts.snap
@@ -5,7 +5,7 @@ exports[`postgresql-cubestore HTTP Transport Empty partitions: Empty partitions
exports[`postgresql-cubestore HTTP Transport Rolling Mixed With Dimension No Granularity: Rolling Mixed With Dimension No Granularity 1`] = `
Array [
Object {
- "visitors.checkinsRollingTotal": null,
+ "visitors.checkinsRollingTotal": "5",
"visitors.source": "some",
},
]
@@ -14,55 +14,7 @@ Array [
exports[`postgresql-cubestore HTTP Transport Rolling Mixed With Dimension: Rolling Mixed With Dimension 1`] = `
Array [
Object {
- "visitors.checkinsRolling2day": null,
- "visitors.checkinsRollingTotal": "0",
- "visitors.count": null,
- "visitors.createdAt": "2017-01-02T00:00:00.000",
- "visitors.createdAt.day": "2017-01-02T00:00:00.000",
- "visitors.source": null,
- },
- Object {
- "visitors.checkinsRolling2day": null,
- "visitors.checkinsRollingTotal": "0",
- "visitors.count": null,
- "visitors.createdAt": "2017-01-03T00:00:00.000",
- "visitors.createdAt.day": "2017-01-03T00:00:00.000",
- "visitors.source": null,
- },
- Object {
- "visitors.checkinsRolling2day": null,
- "visitors.checkinsRollingTotal": "0",
- "visitors.count": null,
- "visitors.createdAt": "2017-01-04T00:00:00.000",
- "visitors.createdAt.day": "2017-01-04T00:00:00.000",
- "visitors.source": null,
- },
- Object {
- "visitors.checkinsRolling2day": null,
- "visitors.checkinsRollingTotal": "0",
- "visitors.count": null,
- "visitors.createdAt": "2017-01-05T00:00:00.000",
- "visitors.createdAt.day": "2017-01-05T00:00:00.000",
- "visitors.source": null,
- },
- Object {
- "visitors.checkinsRolling2day": "3",
- "visitors.checkinsRollingTotal": "3",
- "visitors.count": "1",
- "visitors.createdAt": "2017-01-03T00:00:00.000",
- "visitors.createdAt.day": "2017-01-03T00:00:00.000",
- "visitors.source": "some",
- },
- Object {
- "visitors.checkinsRolling2day": "3",
- "visitors.checkinsRollingTotal": "3",
- "visitors.count": null,
- "visitors.createdAt": "2017-01-04T00:00:00.000",
- "visitors.createdAt.day": "2017-01-04T00:00:00.000",
- "visitors.source": "some",
- },
- Object {
- "visitors.checkinsRolling2day": "2",
+ "visitors.checkinsRolling2day": "5",
"visitors.checkinsRollingTotal": "5",
"visitors.count": "1",
"visitors.createdAt": "2017-01-05T00:00:00.000",
@@ -74,13 +26,6 @@ Array [
exports[`postgresql-cubestore HTTP Transport Rolling Mixed: Rolling Mixed 1`] = `
Array [
- Object {
- "visitors.checkinsRolling2day": null,
- "visitors.checkinsRollingTotal": "0",
- "visitors.count": null,
- "visitors.createdAt": "2017-01-02T00:00:00.000",
- "visitors.createdAt.day": "2017-01-02T00:00:00.000",
- },
Object {
"visitors.checkinsRolling2day": "3",
"visitors.checkinsRollingTotal": "3",
@@ -88,13 +33,6 @@ Array [
"visitors.createdAt": "2017-01-03T00:00:00.000",
"visitors.createdAt.day": "2017-01-03T00:00:00.000",
},
- Object {
- "visitors.checkinsRolling2day": "3",
- "visitors.checkinsRollingTotal": "3",
- "visitors.count": null,
- "visitors.createdAt": "2017-01-04T00:00:00.000",
- "visitors.createdAt.day": "2017-01-04T00:00:00.000",
- },
Object {
"visitors.checkinsRolling2day": "2",
"visitors.checkinsRollingTotal": "5",
@@ -107,54 +45,6 @@ Array [
exports[`postgresql-cubestore HTTP Transport Rolling Prev Period ratio: Rolling Prev Period ratio 1`] = `
Array [
- Object {
- "visitors.createdAt": "2017-02-02T00:00:00.000",
- "visitors.createdAt.day": "2017-02-02T00:00:00.000",
- "visitors.currentMonthToPrevRatio": null,
- "visitors.source": null,
- },
- Object {
- "visitors.createdAt": "2017-02-03T00:00:00.000",
- "visitors.createdAt.day": "2017-02-03T00:00:00.000",
- "visitors.currentMonthToPrevRatio": null,
- "visitors.source": null,
- },
- Object {
- "visitors.createdAt": "2017-02-04T00:00:00.000",
- "visitors.createdAt.day": "2017-02-04T00:00:00.000",
- "visitors.currentMonthToPrevRatio": null,
- "visitors.source": null,
- },
- Object {
- "visitors.createdAt": "2017-02-05T00:00:00.000",
- "visitors.createdAt.day": "2017-02-05T00:00:00.000",
- "visitors.currentMonthToPrevRatio": null,
- "visitors.source": null,
- },
- Object {
- "visitors.createdAt": "2017-02-02T00:00:00.000",
- "visitors.createdAt.day": "2017-02-02T00:00:00.000",
- "visitors.currentMonthToPrevRatio": null,
- "visitors.source": "google",
- },
- Object {
- "visitors.createdAt": "2017-02-03T00:00:00.000",
- "visitors.createdAt.day": "2017-02-03T00:00:00.000",
- "visitors.currentMonthToPrevRatio": null,
- "visitors.source": "google",
- },
- Object {
- "visitors.createdAt": "2017-02-04T00:00:00.000",
- "visitors.createdAt.day": "2017-02-04T00:00:00.000",
- "visitors.currentMonthToPrevRatio": null,
- "visitors.source": "google",
- },
- Object {
- "visitors.createdAt": "2017-02-05T00:00:00.000",
- "visitors.createdAt.day": "2017-02-05T00:00:00.000",
- "visitors.currentMonthToPrevRatio": null,
- "visitors.source": "google",
- },
Object {
"visitors.createdAt": "2017-02-02T00:00:00.000",
"visitors.createdAt.day": "2017-02-02T00:00:00.000",
@@ -167,29 +57,11 @@ Array [
"visitors.currentMonthToPrevRatio": "0.6666666666666666",
"visitors.source": "some",
},
- Object {
- "visitors.createdAt": "2017-02-04T00:00:00.000",
- "visitors.createdAt.day": "2017-02-04T00:00:00.000",
- "visitors.currentMonthToPrevRatio": null,
- "visitors.source": "some",
- },
- Object {
- "visitors.createdAt": "2017-02-05T00:00:00.000",
- "visitors.createdAt.day": "2017-02-05T00:00:00.000",
- "visitors.currentMonthToPrevRatio": null,
- "visitors.source": "some",
- },
]
`;
exports[`postgresql-cubestore HTTP Transport Rolling Prev Period: Rolling Prev Period 1`] = `
Array [
- Object {
- "visitors.checkinsPrevMonth": "1",
- "visitors.createdAt": "2017-02-05T00:00:00.000",
- "visitors.createdAt.day": "2017-02-05T00:00:00.000",
- "visitors.source": "google",
- },
Object {
"visitors.checkinsPrevMonth": "3",
"visitors.createdAt": "2017-02-02T00:00:00.000",
@@ -208,6 +80,12 @@ Array [
"visitors.createdAt.day": "2017-02-04T00:00:00.000",
"visitors.source": "some",
},
+ Object {
+ "visitors.checkinsPrevMonth": "1",
+ "visitors.createdAt": "2017-02-05T00:00:00.000",
+ "visitors.createdAt.day": "2017-02-05T00:00:00.000",
+ "visitors.source": "google",
+ },
Object {
"visitors.checkinsPrevMonth": "5",
"visitors.createdAt": "2017-02-05T00:00:00.000",
@@ -219,12 +97,6 @@ Array [
exports[`postgresql-cubestore HTTP Transport Rolling with Quarter granularity: Rolling with Quarter granularity 1`] = `
Array [
- Object {
- "visitors.checkinsRollingTotal": "0",
- "visitors.createdAt": "2017-01-01T00:00:00.000",
- "visitors.createdAt.quarter": "2017-01-01T00:00:00.000",
- "visitors.source": null,
- },
Object {
"visitors.checkinsRollingTotal": "1",
"visitors.createdAt": "2017-01-01T00:00:00.000",
@@ -237,6 +109,12 @@ Array [
"visitors.createdAt.quarter": "2017-01-01T00:00:00.000",
"visitors.source": "some",
},
+ Object {
+ "visitors.checkinsRollingTotal": "0",
+ "visitors.createdAt": "2017-01-01T00:00:00.000",
+ "visitors.createdAt.quarter": "2017-01-01T00:00:00.000",
+ "visitors.source": null,
+ },
]
`;
@@ -249,34 +127,28 @@ Array [
"visitors.source": null,
},
Object {
- "visitors.checkinsRollingTotal": "0",
+ "visitors.checkinsRollingTotal": "3",
"visitors.createdAt": "2017-01-03T00:00:00.000",
"visitors.createdAt.day": "2017-01-03T00:00:00.000",
- "visitors.source": null,
- },
- Object {
- "visitors.checkinsRollingTotal": "0",
- "visitors.createdAt": "2017-01-04T00:00:00.000",
- "visitors.createdAt.day": "2017-01-04T00:00:00.000",
- "visitors.source": null,
+ "visitors.source": "some",
},
Object {
"visitors.checkinsRollingTotal": "0",
- "visitors.createdAt": "2017-01-05T00:00:00.000",
- "visitors.createdAt.day": "2017-01-05T00:00:00.000",
+ "visitors.createdAt": "2017-01-03T00:00:00.000",
+ "visitors.createdAt.day": "2017-01-03T00:00:00.000",
"visitors.source": null,
},
Object {
"visitors.checkinsRollingTotal": "3",
- "visitors.createdAt": "2017-01-03T00:00:00.000",
- "visitors.createdAt.day": "2017-01-03T00:00:00.000",
+ "visitors.createdAt": "2017-01-04T00:00:00.000",
+ "visitors.createdAt.day": "2017-01-04T00:00:00.000",
"visitors.source": "some",
},
Object {
- "visitors.checkinsRollingTotal": "3",
+ "visitors.checkinsRollingTotal": "0",
"visitors.createdAt": "2017-01-04T00:00:00.000",
"visitors.createdAt.day": "2017-01-04T00:00:00.000",
- "visitors.source": "some",
+ "visitors.source": null,
},
Object {
"visitors.checkinsRollingTotal": "5",
@@ -284,5 +156,11 @@ Array [
"visitors.createdAt.day": "2017-01-05T00:00:00.000",
"visitors.source": "some",
},
+ Object {
+ "visitors.checkinsRollingTotal": "0",
+ "visitors.createdAt": "2017-01-05T00:00:00.000",
+ "visitors.createdAt.day": "2017-01-05T00:00:00.000",
+ "visitors.source": null,
+ },
]
`;
diff --git a/packages/cubejs-testing/test/__snapshots__/cli-postgresql-pre-aggregations.test.ts.snap b/packages/cubejs-testing/test/__snapshots__/cli-postgresql-pre-aggregations.test.ts.snap
index 3c28478f95231..45a38f001cd67 100644
--- a/packages/cubejs-testing/test/__snapshots__/cli-postgresql-pre-aggregations.test.ts.snap
+++ b/packages/cubejs-testing/test/__snapshots__/cli-postgresql-pre-aggregations.test.ts.snap
@@ -5,7 +5,7 @@ exports[`postgresql HTTP Transport Empty partitions: Empty partitions 1`] = `Arr
exports[`postgresql HTTP Transport Rolling Mixed With Dimension No Granularity: Rolling Mixed With Dimension No Granularity 1`] = `
Array [
Object {
- "visitors.checkinsRollingTotal": null,
+ "visitors.checkinsRollingTotal": "5",
"visitors.source": "some",
},
]
@@ -13,38 +13,6 @@ Array [
exports[`postgresql HTTP Transport Rolling Mixed With Dimension: Rolling Mixed With Dimension 1`] = `
Array [
- Object {
- "visitors.checkinsRolling2day": null,
- "visitors.checkinsRollingTotal": "0",
- "visitors.count": null,
- "visitors.createdAt": "2017-01-02T00:00:00.000",
- "visitors.createdAt.day": "2017-01-02T00:00:00.000",
- "visitors.source": null,
- },
- Object {
- "visitors.checkinsRolling2day": null,
- "visitors.checkinsRollingTotal": "0",
- "visitors.count": null,
- "visitors.createdAt": "2017-01-03T00:00:00.000",
- "visitors.createdAt.day": "2017-01-03T00:00:00.000",
- "visitors.source": null,
- },
- Object {
- "visitors.checkinsRolling2day": null,
- "visitors.checkinsRollingTotal": "0",
- "visitors.count": null,
- "visitors.createdAt": "2017-01-04T00:00:00.000",
- "visitors.createdAt.day": "2017-01-04T00:00:00.000",
- "visitors.source": null,
- },
- Object {
- "visitors.checkinsRolling2day": null,
- "visitors.checkinsRollingTotal": "0",
- "visitors.count": null,
- "visitors.createdAt": "2017-01-05T00:00:00.000",
- "visitors.createdAt.day": "2017-01-05T00:00:00.000",
- "visitors.source": null,
- },
Object {
"visitors.checkinsRolling2day": "3",
"visitors.checkinsRollingTotal": "3",
@@ -53,14 +21,6 @@ Array [
"visitors.createdAt.day": "2017-01-03T00:00:00.000",
"visitors.source": "some",
},
- Object {
- "visitors.checkinsRolling2day": "3",
- "visitors.checkinsRollingTotal": "3",
- "visitors.count": null,
- "visitors.createdAt": "2017-01-04T00:00:00.000",
- "visitors.createdAt.day": "2017-01-04T00:00:00.000",
- "visitors.source": "some",
- },
Object {
"visitors.checkinsRolling2day": "2",
"visitors.checkinsRollingTotal": "5",
@@ -74,13 +34,6 @@ Array [
exports[`postgresql HTTP Transport Rolling Mixed: Rolling Mixed 1`] = `
Array [
- Object {
- "visitors.checkinsRolling2day": null,
- "visitors.checkinsRollingTotal": "0",
- "visitors.count": null,
- "visitors.createdAt": "2017-01-02T00:00:00.000",
- "visitors.createdAt.day": "2017-01-02T00:00:00.000",
- },
Object {
"visitors.checkinsRolling2day": "3",
"visitors.checkinsRollingTotal": "3",
@@ -88,13 +41,6 @@ Array [
"visitors.createdAt": "2017-01-03T00:00:00.000",
"visitors.createdAt.day": "2017-01-03T00:00:00.000",
},
- Object {
- "visitors.checkinsRolling2day": "3",
- "visitors.checkinsRollingTotal": "3",
- "visitors.count": null,
- "visitors.createdAt": "2017-01-04T00:00:00.000",
- "visitors.createdAt.day": "2017-01-04T00:00:00.000",
- },
Object {
"visitors.checkinsRolling2day": "2",
"visitors.checkinsRollingTotal": "5",
@@ -107,54 +53,6 @@ Array [
exports[`postgresql HTTP Transport Rolling Prev Period ratio: Rolling Prev Period ratio 1`] = `
Array [
- Object {
- "visitors.createdAt": "2017-02-02T00:00:00.000",
- "visitors.createdAt.day": "2017-02-02T00:00:00.000",
- "visitors.currentMonthToPrevRatio": null,
- "visitors.source": null,
- },
- Object {
- "visitors.createdAt": "2017-02-03T00:00:00.000",
- "visitors.createdAt.day": "2017-02-03T00:00:00.000",
- "visitors.currentMonthToPrevRatio": null,
- "visitors.source": null,
- },
- Object {
- "visitors.createdAt": "2017-02-04T00:00:00.000",
- "visitors.createdAt.day": "2017-02-04T00:00:00.000",
- "visitors.currentMonthToPrevRatio": null,
- "visitors.source": null,
- },
- Object {
- "visitors.createdAt": "2017-02-05T00:00:00.000",
- "visitors.createdAt.day": "2017-02-05T00:00:00.000",
- "visitors.currentMonthToPrevRatio": null,
- "visitors.source": null,
- },
- Object {
- "visitors.createdAt": "2017-02-02T00:00:00.000",
- "visitors.createdAt.day": "2017-02-02T00:00:00.000",
- "visitors.currentMonthToPrevRatio": null,
- "visitors.source": "google",
- },
- Object {
- "visitors.createdAt": "2017-02-03T00:00:00.000",
- "visitors.createdAt.day": "2017-02-03T00:00:00.000",
- "visitors.currentMonthToPrevRatio": null,
- "visitors.source": "google",
- },
- Object {
- "visitors.createdAt": "2017-02-04T00:00:00.000",
- "visitors.createdAt.day": "2017-02-04T00:00:00.000",
- "visitors.currentMonthToPrevRatio": null,
- "visitors.source": "google",
- },
- Object {
- "visitors.createdAt": "2017-02-05T00:00:00.000",
- "visitors.createdAt.day": "2017-02-05T00:00:00.000",
- "visitors.currentMonthToPrevRatio": null,
- "visitors.source": "google",
- },
Object {
"visitors.createdAt": "2017-02-02T00:00:00.000",
"visitors.createdAt.day": "2017-02-02T00:00:00.000",
@@ -167,29 +65,11 @@ Array [
"visitors.currentMonthToPrevRatio": "0.6666666666666666",
"visitors.source": "some",
},
- Object {
- "visitors.createdAt": "2017-02-04T00:00:00.000",
- "visitors.createdAt.day": "2017-02-04T00:00:00.000",
- "visitors.currentMonthToPrevRatio": null,
- "visitors.source": "some",
- },
- Object {
- "visitors.createdAt": "2017-02-05T00:00:00.000",
- "visitors.createdAt.day": "2017-02-05T00:00:00.000",
- "visitors.currentMonthToPrevRatio": null,
- "visitors.source": "some",
- },
]
`;
exports[`postgresql HTTP Transport Rolling Prev Period: Rolling Prev Period 1`] = `
Array [
- Object {
- "visitors.checkinsPrevMonth": "1",
- "visitors.createdAt": "2017-02-05T00:00:00.000",
- "visitors.createdAt.day": "2017-02-05T00:00:00.000",
- "visitors.source": "google",
- },
Object {
"visitors.checkinsPrevMonth": "3",
"visitors.createdAt": "2017-02-02T00:00:00.000",
@@ -208,6 +88,12 @@ Array [
"visitors.createdAt.day": "2017-02-04T00:00:00.000",
"visitors.source": "some",
},
+ Object {
+ "visitors.checkinsPrevMonth": "1",
+ "visitors.createdAt": "2017-02-05T00:00:00.000",
+ "visitors.createdAt.day": "2017-02-05T00:00:00.000",
+ "visitors.source": "google",
+ },
Object {
"visitors.checkinsPrevMonth": "5",
"visitors.createdAt": "2017-02-05T00:00:00.000",
@@ -219,12 +105,6 @@ Array [
exports[`postgresql HTTP Transport Rolling with Quarter granularity: Rolling with Quarter granularity 1`] = `
Array [
- Object {
- "visitors.checkinsRollingTotal": "0",
- "visitors.createdAt": "2017-01-01T00:00:00.000",
- "visitors.createdAt.quarter": "2017-01-01T00:00:00.000",
- "visitors.source": null,
- },
Object {
"visitors.checkinsRollingTotal": "1",
"visitors.createdAt": "2017-01-01T00:00:00.000",
@@ -237,6 +117,12 @@ Array [
"visitors.createdAt.quarter": "2017-01-01T00:00:00.000",
"visitors.source": "some",
},
+ Object {
+ "visitors.checkinsRollingTotal": "0",
+ "visitors.createdAt": "2017-01-01T00:00:00.000",
+ "visitors.createdAt.quarter": "2017-01-01T00:00:00.000",
+ "visitors.source": null,
+ },
]
`;
@@ -249,34 +135,28 @@ Array [
"visitors.source": null,
},
Object {
- "visitors.checkinsRollingTotal": "0",
+ "visitors.checkinsRollingTotal": "3",
"visitors.createdAt": "2017-01-03T00:00:00.000",
"visitors.createdAt.day": "2017-01-03T00:00:00.000",
- "visitors.source": null,
- },
- Object {
- "visitors.checkinsRollingTotal": "0",
- "visitors.createdAt": "2017-01-04T00:00:00.000",
- "visitors.createdAt.day": "2017-01-04T00:00:00.000",
- "visitors.source": null,
+ "visitors.source": "some",
},
Object {
"visitors.checkinsRollingTotal": "0",
- "visitors.createdAt": "2017-01-05T00:00:00.000",
- "visitors.createdAt.day": "2017-01-05T00:00:00.000",
+ "visitors.createdAt": "2017-01-03T00:00:00.000",
+ "visitors.createdAt.day": "2017-01-03T00:00:00.000",
"visitors.source": null,
},
Object {
"visitors.checkinsRollingTotal": "3",
- "visitors.createdAt": "2017-01-03T00:00:00.000",
- "visitors.createdAt.day": "2017-01-03T00:00:00.000",
+ "visitors.createdAt": "2017-01-04T00:00:00.000",
+ "visitors.createdAt.day": "2017-01-04T00:00:00.000",
"visitors.source": "some",
},
Object {
- "visitors.checkinsRollingTotal": "3",
+ "visitors.checkinsRollingTotal": "0",
"visitors.createdAt": "2017-01-04T00:00:00.000",
"visitors.createdAt.day": "2017-01-04T00:00:00.000",
- "visitors.source": "some",
+ "visitors.source": null,
},
Object {
"visitors.checkinsRollingTotal": "5",
@@ -284,5 +164,11 @@ Array [
"visitors.createdAt.day": "2017-01-05T00:00:00.000",
"visitors.source": "some",
},
+ Object {
+ "visitors.checkinsRollingTotal": "0",
+ "visitors.createdAt": "2017-01-05T00:00:00.000",
+ "visitors.createdAt.day": "2017-01-05T00:00:00.000",
+ "visitors.source": null,
+ },
]
`;
diff --git a/packages/cubejs-trino-driver/CHANGELOG.md b/packages/cubejs-trino-driver/CHANGELOG.md
index 0bf58294000d5..db7ba9ef1c284 100644
--- a/packages/cubejs-trino-driver/CHANGELOG.md
+++ b/packages/cubejs-trino-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/trino-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/trino-driver
diff --git a/packages/cubejs-trino-driver/package.json b/packages/cubejs-trino-driver/package.json
index c41f1c8ee3c7c..85317c3696d66 100644
--- a/packages/cubejs-trino-driver/package.json
+++ b/packages/cubejs-trino-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/trino-driver",
"description": "Cube.js Trino database driver",
"author": "Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -27,10 +27,10 @@
"lint:fix": "eslint --fix src/* --ext .ts"
},
"dependencies": {
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/prestodb-driver": "1.6.0",
- "@cubejs-backend/schema-compiler": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/prestodb-driver": "1.6.1",
+ "@cubejs-backend/schema-compiler": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"node-fetch": "^2.6.1",
"presto-client": "^1.1.0",
"sqlstring": "^2.3.1"
@@ -40,7 +40,7 @@
"access": "public"
},
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
"@types/jest": "^29",
"jest": "^29",
"testcontainers": "^10.28.0",
diff --git a/packages/cubejs-vertica-driver/CHANGELOG.md b/packages/cubejs-vertica-driver/CHANGELOG.md
index 65e3fe5e21ae2..7bde3875d2d9a 100644
--- a/packages/cubejs-vertica-driver/CHANGELOG.md
+++ b/packages/cubejs-vertica-driver/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/vertica-driver
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/vertica-driver
diff --git a/packages/cubejs-vertica-driver/package.json b/packages/cubejs-vertica-driver/package.json
index 5082c7628215b..60a82cc2b2c83 100644
--- a/packages/cubejs-vertica-driver/package.json
+++ b/packages/cubejs-vertica-driver/package.json
@@ -2,7 +2,7 @@
"name": "@cubejs-backend/vertica-driver",
"description": "Cube.js Vertica database driver",
"author": "Eduard Karacharov, Tim Brown, Cube Dev, Inc.",
- "version": "1.6.0",
+ "version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/cube-js/cube.git",
@@ -19,16 +19,16 @@
"lint:fix": "eslint --fix **/*.js"
},
"dependencies": {
- "@cubejs-backend/base-driver": "1.6.0",
- "@cubejs-backend/query-orchestrator": "1.6.0",
- "@cubejs-backend/schema-compiler": "1.6.0",
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/base-driver": "1.6.1",
+ "@cubejs-backend/query-orchestrator": "1.6.1",
+ "@cubejs-backend/schema-compiler": "1.6.1",
+ "@cubejs-backend/shared": "1.6.1",
"vertica-nodejs": "^1.0.3"
},
"license": "Apache-2.0",
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
- "@cubejs-backend/testing-shared": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
+ "@cubejs-backend/testing-shared": "1.6.1",
"@types/jest": "^29",
"jest": "^29",
"testcontainers": "^10.28.0"
diff --git a/rust/cubesql/CHANGELOG.md b/rust/cubesql/CHANGELOG.md
index 37885e2ccf5b6..805812c50b6be 100644
--- a/rust/cubesql/CHANGELOG.md
+++ b/rust/cubesql/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/cubesql
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
**Note:** Version bump only for package @cubejs-backend/cubesql
diff --git a/rust/cubesql/package.json b/rust/cubesql/package.json
index bfa5c998d7fd9..d6f9bc8f6b341 100644
--- a/rust/cubesql/package.json
+++ b/rust/cubesql/package.json
@@ -1,6 +1,6 @@
{
"name": "@cubejs-backend/cubesql",
- "version": "1.6.0",
+ "version": "1.6.1",
"description": "SQL API for Cube as proxy over MySQL protocol.",
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
diff --git a/rust/cubestore/CHANGELOG.md b/rust/cubestore/CHANGELOG.md
index 951af3ef7a48d..71b8d4c4e5e03 100644
--- a/rust/cubestore/CHANGELOG.md
+++ b/rust/cubestore/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.1](https://github.com/cube-js/cube/compare/v1.6.0...v1.6.1) (2025-12-18)
+
+**Note:** Version bump only for package @cubejs-backend/cubestore
+
# [1.6.0](https://github.com/cube-js/cube/compare/v1.5.16...v1.6.0) (2025-12-18)
### Features
diff --git a/rust/cubestore/package.json b/rust/cubestore/package.json
index c7662ac4a62cb..9cb4f24f40e82 100644
--- a/rust/cubestore/package.json
+++ b/rust/cubestore/package.json
@@ -1,6 +1,6 @@
{
"name": "@cubejs-backend/cubestore",
- "version": "1.6.0",
+ "version": "1.6.1",
"description": "Cube.js pre-aggregation storage layer.",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
@@ -32,7 +32,7 @@
},
"license": "Apache-2.0",
"devDependencies": {
- "@cubejs-backend/linter": "1.6.0",
+ "@cubejs-backend/linter": "1.6.1",
"@types/jest": "^27",
"@types/node": "^18",
"jest": "^27",
@@ -42,7 +42,7 @@
"access": "public"
},
"dependencies": {
- "@cubejs-backend/shared": "1.6.0",
+ "@cubejs-backend/shared": "1.6.1",
"@octokit/core": "^3.2.5",
"source-map-support": "^0.5.19"
},