Skip to content

Commit e77835a

Browse files
committed
v1.7.20
1 parent f050c08 commit e77835a

114 files changed

Lines changed: 559 additions & 291 deletions

File tree

Some content is hidden

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

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.7.20](https://github.com/cube-js/cube/compare/v1.7.19...v1.7.20) (2026-08-16)
7+
8+
### Bug Fixes
9+
10+
- **cubestore:** bump lru to 0.18.2 to clear two use-after-free advisories ([#11531](https://github.com/cube-js/cube/issues/11531)) ([387e1ad](https://github.com/cube-js/cube/commit/387e1ad644030401d12bafd01f991e06fd97f441))
11+
- **cubestore:** drop async-std to clear the crossbeam advisories ([#11546](https://github.com/cube-js/cube/issues/11546)) ([58f3cd7](https://github.com/cube-js/cube/commit/58f3cd7825a1a8c0fb2d031ee021ce01173584e5))
12+
- **deps:** bump uuid from 8.3.2 to 11.1.1 across the packages that declare it ([#11534](https://github.com/cube-js/cube/issues/11534)) ([c66cbbe](https://github.com/cube-js/cube/commit/c66cbbe06c0269351395583cef8df64c0d1720ab))
13+
- **deps:** float handlebars, form-data and tar to clear two criticals ([#11549](https://github.com/cube-js/cube/issues/11549)) ([33c8828](https://github.com/cube-js/cube/commit/33c88288728ba29244ecc950107bb5f9d16d6bde)), closes [#7891](https://github.com/cube-js/cube/issues/7891) [#7589](https://github.com/cube-js/cube/issues/7589) [#11109](https://github.com/cube-js/cube/issues/11109) [#7589](https://github.com/cube-js/cube/issues/7589) [#8252](https://github.com/cube-js/cube/issues/8252)
14+
- **schema-compiler:** escape LIKE wildcards on the native planner ([#11569](https://github.com/cube-js/cube/issues/11569)) ([f050c08](https://github.com/cube-js/cube/commit/f050c080aab52eefbd7c20fef257f3852c66f634)), closes [#11570](https://github.com/cube-js/cube/issues/11570)
15+
- **shared,templates:** replace the unmaintained decompress package ([#11532](https://github.com/cube-js/cube/issues/11532)) ([f7822ca](https://github.com/cube-js/cube/commit/f7822cac0d4b16d8ee197e793192f5068cb8895a))
16+
- **tesseract:** project a primary key once in the keys subquery ([#11527](https://github.com/cube-js/cube/issues/11527)) ([528d755](https://github.com/cube-js/cube/commit/528d755d8ef4502917d86b545bf42b8a352775be)), closes [#11455](https://github.com/cube-js/cube/issues/11455)
17+
618
## [1.7.19](https://github.com/cube-js/cube/compare/v1.7.18...v1.7.19) (2026-08-12)
719

820
### Bug Fixes

lerna.json

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

packages/cubejs-api-gateway/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.7.20](https://github.com/cube-js/cube/compare/v1.7.19...v1.7.20) (2026-08-16)
7+
8+
### Bug Fixes
9+
10+
- **deps:** bump uuid from 8.3.2 to 11.1.1 across the packages that declare it ([#11534](https://github.com/cube-js/cube/issues/11534)) ([c66cbbe](https://github.com/cube-js/cube/commit/c66cbbe06c0269351395583cef8df64c0d1720ab))
11+
612
## [1.7.19](https://github.com/cube-js/cube/compare/v1.7.18...v1.7.19) (2026-08-12)
713

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

packages/cubejs-api-gateway/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@cubejs-backend/api-gateway",
33
"description": "Cube API Gateway",
44
"author": "Cube Dev, Inc.",
5-
"version": "1.7.19",
5+
"version": "1.7.20",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/cube-js/cube.git",
@@ -27,9 +27,9 @@
2727
"dist/src/*"
2828
],
2929
"dependencies": {
30-
"@cubejs-backend/native": "1.7.19",
31-
"@cubejs-backend/query-orchestrator": "1.7.19",
32-
"@cubejs-backend/shared": "1.7.19",
30+
"@cubejs-backend/native": "1.7.20",
31+
"@cubejs-backend/query-orchestrator": "1.7.20",
32+
"@cubejs-backend/shared": "1.7.20",
3333
"@ungap/structured-clone": "^0.3.4",
3434
"assert-never": "^1.4.0",
3535
"body-parser": "^1.19.0",
@@ -53,7 +53,7 @@
5353
"zod": "^4.1.13"
5454
},
5555
"devDependencies": {
56-
"@cubejs-backend/linter": "1.7.19",
56+
"@cubejs-backend/linter": "1.7.20",
5757
"@types/express": "^4.17.21",
5858
"@types/jest": "^29",
5959
"@types/jsonwebtoken": "^9.0.2",

packages/cubejs-athena-driver/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.7.20](https://github.com/cube-js/cube/compare/v1.7.19...v1.7.20) (2026-08-16)
7+
8+
**Note:** Version bump only for package @cubejs-backend/athena-driver
9+
610
## [1.7.19](https://github.com/cube-js/cube/compare/v1.7.18...v1.7.19) (2026-08-12)
711

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

packages/cubejs-athena-driver/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@cubejs-backend/athena-driver",
33
"description": "Cube.js Athena database driver",
44
"author": "Cube Dev, Inc.",
5-
"version": "1.7.19",
5+
"version": "1.7.20",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/cube-js/cube.git",
@@ -31,12 +31,12 @@
3131
"dependencies": {
3232
"@aws-sdk/client-athena": "^3.22.0",
3333
"@aws-sdk/credential-providers": "^3.22.0",
34-
"@cubejs-backend/base-driver": "1.7.19",
35-
"@cubejs-backend/shared": "1.7.19"
34+
"@cubejs-backend/base-driver": "1.7.20",
35+
"@cubejs-backend/shared": "1.7.20"
3636
},
3737
"devDependencies": {
38-
"@cubejs-backend/linter": "1.7.19",
39-
"@cubejs-backend/testing-shared": "1.7.19",
38+
"@cubejs-backend/linter": "1.7.20",
39+
"@cubejs-backend/testing-shared": "1.7.20",
4040
"@types/ramda": "^0.27.40",
4141
"typescript": "~5.2.2"
4242
},

packages/cubejs-backend-cloud/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.7.20](https://github.com/cube-js/cube/compare/v1.7.19...v1.7.20) (2026-08-16)
7+
8+
**Note:** Version bump only for package @cubejs-backend/cloud
9+
610
## [1.7.19](https://github.com/cube-js/cube/compare/v1.7.18...v1.7.19) (2026-08-12)
711

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

packages/cubejs-backend-cloud/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cubejs-backend/cloud",
3-
"version": "1.7.19",
3+
"version": "1.7.20",
44
"description": "Cube Cloud package",
55
"main": "dist/src/index.js",
66
"typings": "dist/src/index.d.ts",
@@ -30,15 +30,15 @@
3030
"devDependencies": {
3131
"@babel/core": "^7.24.5",
3232
"@babel/preset-env": "^7.24.5",
33-
"@cubejs-backend/linter": "1.7.19",
33+
"@cubejs-backend/linter": "1.7.20",
3434
"@types/fs-extra": "^9.0.8",
3535
"@types/jest": "^29",
3636
"jest": "^29",
3737
"typescript": "~5.2.2"
3838
},
3939
"dependencies": {
4040
"@cubejs-backend/dotenv": "^9.0.2",
41-
"@cubejs-backend/shared": "1.7.19",
41+
"@cubejs-backend/shared": "1.7.20",
4242
"chokidar": "^3.5.1",
4343
"env-var": "^6.3.0",
4444
"form-data": "^4.0.0",

packages/cubejs-backend-maven/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.7.20](https://github.com/cube-js/cube/compare/v1.7.19...v1.7.20) (2026-08-16)
7+
8+
**Note:** Version bump only for package @cubejs-backend/maven
9+
610
## [1.7.19](https://github.com/cube-js/cube/compare/v1.7.18...v1.7.19) (2026-08-12)
711

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

packages/cubejs-backend-maven/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@cubejs-backend/maven",
33
"description": "Cube.js Maven Wrapper for java dependencies downloading",
44
"author": "Cube Dev, Inc.",
5-
"version": "1.7.19",
5+
"version": "1.7.20",
66
"license": "Apache-2.0",
77
"repository": {
88
"type": "git",
@@ -31,12 +31,12 @@
3131
"dist/src/*"
3232
],
3333
"dependencies": {
34-
"@cubejs-backend/shared": "1.7.19",
34+
"@cubejs-backend/shared": "1.7.20",
3535
"source-map-support": "^0.5.19",
3636
"xmlbuilder2": "^2.4.0"
3737
},
3838
"devDependencies": {
39-
"@cubejs-backend/linter": "1.7.19",
39+
"@cubejs-backend/linter": "1.7.20",
4040
"@types/jest": "^29",
4141
"@types/node": "^22",
4242
"jest": "^29",

0 commit comments

Comments
 (0)