Skip to content

Commit 26ce041

Browse files
committed
v0.32.31
1 parent 0d87f5d commit 26ce041

File tree

62 files changed

+363
-90
lines changed

Some content is hidden

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

62 files changed

+363
-90
lines changed

CHANGELOG.md

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

6+
## [0.32.31](https://github.com/cube-js/cube/compare/v0.32.30...v0.32.31) (2023-05-02)
7+
8+
9+
### Bug Fixes
10+
11+
* **bigquery-driver:** Revert read-only implementation as `LIMIT 1` queries generate too much usage ([#6523](https://github.com/cube-js/cube/issues/6523)) ([f023484](https://github.com/cube-js/cube/commit/f02348408103f7eeb9d6cd8bea959549a78fe943))
12+
* **cubesql:** Streaming error logging ([e27a525](https://github.com/cube-js/cube/commit/e27a5252380a55682f450bf057767074394179a2))
13+
14+
15+
### Features
16+
17+
* **cubesql:** psqlodbc driver support ([fcfc7ea](https://github.com/cube-js/cube/commit/fcfc7ea9f8bfd027aa549d139b9ed12b773594ec))
18+
* Support snake case security_context in COMPILE_CONTEXT ([#6519](https://github.com/cube-js/cube/issues/6519)) ([feb3fe3](https://github.com/cube-js/cube/commit/feb3fe389462fc4cf3947f8ecf2146c3fe102b9e))
19+
20+
21+
22+
23+
624
## [0.32.30](https://github.com/cube-js/cube/compare/v0.32.29...v0.32.30) (2023-04-28)
725

826

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.32.30",
2+
"version": "0.32.31",
33
"npmClient": "yarn",
44
"useWorkspaces": true,
55
"packages": [

packages/cubejs-api-gateway/CHANGELOG.md

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

6+
## [0.32.31](https://github.com/cube-js/cube/compare/v0.32.30...v0.32.31) (2023-05-02)
7+
8+
9+
### Bug Fixes
10+
11+
* **cubesql:** Streaming error logging ([e27a525](https://github.com/cube-js/cube/commit/e27a5252380a55682f450bf057767074394179a2))
12+
13+
14+
15+
16+
617
## [0.32.30](https://github.com/cube-js/cube/compare/v0.32.29...v0.32.30) (2023-04-28)
718

819

packages/cubejs-api-gateway/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@cubejs-backend/api-gateway",
33
"description": "Cube.js API Gateway",
44
"author": "Cube Dev, Inc.",
5-
"version": "0.32.30",
5+
"version": "0.32.31",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/cube-js/cube.git",
@@ -27,7 +27,7 @@
2727
"dist/src/*"
2828
],
2929
"dependencies": {
30-
"@cubejs-backend/native": "^0.32.30",
30+
"@cubejs-backend/native": "^0.32.31",
3131
"@cubejs-backend/shared": "^0.32.30",
3232
"@ungap/structured-clone": "^0.3.4",
3333
"body-parser": "^1.19.0",

packages/cubejs-athena-driver/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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+
## [0.32.31](https://github.com/cube-js/cube/compare/v0.32.30...v0.32.31) (2023-05-02)
7+
8+
**Note:** Version bump only for package @cubejs-backend/athena-driver
9+
10+
11+
12+
13+
614
## [0.32.30](https://github.com/cube-js/cube/compare/v0.32.29...v0.32.30) (2023-04-28)
715

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

packages/cubejs-athena-driver/package.json

Lines changed: 2 additions & 2 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": "0.32.30",
5+
"version": "0.32.31",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/cube-js/cube.git",
@@ -37,7 +37,7 @@
3737
},
3838
"devDependencies": {
3939
"@cubejs-backend/linter": "^0.32.28",
40-
"@cubejs-backend/testing-shared": "^0.32.30",
40+
"@cubejs-backend/testing-shared": "^0.32.31",
4141
"@types/ramda": "^0.27.40",
4242
"typescript": "~4.9.5"
4343
},

packages/cubejs-backend-native/CHANGELOG.md

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

6+
## [0.32.31](https://github.com/cube-js/cube/compare/v0.32.30...v0.32.31) (2023-05-02)
7+
8+
9+
### Bug Fixes
10+
11+
* **cubesql:** Streaming error logging ([e27a525](https://github.com/cube-js/cube/commit/e27a5252380a55682f450bf057767074394179a2))
12+
13+
14+
15+
16+
617
## [0.32.30](https://github.com/cube-js/cube/compare/v0.32.29...v0.32.30) (2023-04-28)
718

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

packages/cubejs-backend-native/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/native",
3-
"version": "0.32.30",
3+
"version": "0.32.31",
44
"author": "Cube Dev, Inc.",
55
"description": "Native module for Cube.js (binding to Rust codebase)",
66
"main": "dist/js/index.js",
@@ -30,7 +30,7 @@
3030
"dist/js"
3131
],
3232
"devDependencies": {
33-
"@cubejs-backend/testing-shared": "^0.32.30",
33+
"@cubejs-backend/testing-shared": "^0.32.31",
3434
"@cubejs-infra/node-pre-gyp-github": "^1.0.3",
3535
"@types/jest": "^26",
3636
"@types/node": "^14",
@@ -40,7 +40,7 @@
4040
"typescript": "~4.9.5"
4141
},
4242
"dependencies": {
43-
"@cubejs-backend/cubesql": "^0.32.30",
43+
"@cubejs-backend/cubesql": "^0.32.31",
4444
"@cubejs-backend/shared": "^0.32.30",
4545
"@mapbox/node-pre-gyp": "^1"
4646
},

packages/cubejs-bigquery-driver/CHANGELOG.md

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

6+
## [0.32.31](https://github.com/cube-js/cube/compare/v0.32.30...v0.32.31) (2023-05-02)
7+
8+
9+
### Bug Fixes
10+
11+
* **bigquery-driver:** Revert read-only implementation as `LIMIT 1` queries generate too much usage ([#6523](https://github.com/cube-js/cube/issues/6523)) ([f023484](https://github.com/cube-js/cube/commit/f02348408103f7eeb9d6cd8bea959549a78fe943))
12+
13+
14+
15+
16+
617
## [0.32.30](https://github.com/cube-js/cube/compare/v0.32.29...v0.32.30) (2023-04-28)
718

819

packages/cubejs-bigquery-driver/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@cubejs-backend/bigquery-driver",
33
"description": "Cube.js BigQuery database driver",
44
"author": "Cube Dev, Inc.",
5-
"version": "0.32.30",
5+
"version": "0.32.31",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/cube-js/cube.git",
@@ -36,7 +36,7 @@
3636
"ramda": "^0.27.2"
3737
},
3838
"devDependencies": {
39-
"@cubejs-backend/testing-shared": "^0.32.30",
39+
"@cubejs-backend/testing-shared": "^0.32.31",
4040
"@types/dedent": "^0.7.0",
4141
"@types/ramda": "^0.27.40",
4242
"typescript": "~4.9.5"

0 commit comments

Comments
 (0)