Skip to content

Commit db6ae2e

Browse files
authored
Merge branch 'master' into feat/installing-and-loading-DuckDB-community-extensions
2 parents 1153874 + e7901a7 commit db6ae2e

File tree

124 files changed

+1000
-431
lines changed

Some content is hidden

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

124 files changed

+1000
-431
lines changed

.github/workflows/post-release.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ on:
1616
branches:
1717
- 'master'
1818

19+
env:
20+
VERSION: ${{ github.event.inputs.version || 'latest' }}
21+
1922
# touch to trigger
2023
jobs:
2124
cli:
@@ -78,8 +81,8 @@ jobs:
7881
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
7982
run: |
8083
cd packages/cubejs-testing/
81-
npx cubejs-cli@${{ github.event.inputs.version }} create birdbox-test-project -d postgres
82-
export BIRDBOX_CUBEJS_VERSION=${{ github.event.inputs.version }}
84+
npx cubejs-cli@"$VERSION" create birdbox-test-project -d postgres
85+
export BIRDBOX_CUBEJS_VERSION="$VERSION"
8386
yarn run dataset:minimal
8487
yarn run birdbox:cli:postgresql
8588
- name: Slack Failure
@@ -139,7 +142,7 @@ jobs:
139142
run: |
140143
cd packages/cubejs-testing/
141144
export DEBUG=testcontainers
142-
export BIRDBOX_CUBEJS_VERSION=${{ github.event.inputs.version }}
145+
export BIRDBOX_CUBEJS_VERSION="$VERSION"
143146
yarn run dataset:minimal
144147
yarn run birdbox:${{ matrix.target }}
145148
- name: Slack Failure
@@ -204,7 +207,7 @@ jobs:
204207
cd packages/cubejs-testing/
205208
export DEBUG=testcontainers
206209
export BIRDBOX_CYPRESS_BROWSER=${{ matrix.browser }}
207-
export BIRDBOX_CUBEJS_VERSION=${{ github.event.inputs.version }}
210+
export BIRDBOX_CUBEJS_VERSION="$VERSION"
208211
yarn run cypress:install
209212
yarn run dataset:minimal
210213
yarn run cypress:birdbox

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
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.3.1](https://github.com/cube-js/cube/compare/v1.3.0...v1.3.1) (2025-04-14)
7+
8+
### Bug Fixes
9+
10+
- **schema-compiler:** Fix incorrect transpilation of yaml models ([#9465](https://github.com/cube-js/cube/issues/9465)) ([e732fa2](https://github.com/cube-js/cube/commit/e732fa2b8ead0ca605512611eb371b94e0238dec))
11+
12+
# [1.3.0](https://github.com/cube-js/cube/compare/v1.2.33...v1.3.0) (2025-04-11)
13+
14+
### Bug Fixes
15+
16+
- **schema-compiler:** Do not drop join hints when view member is not itself owned ([#9444](https://github.com/cube-js/cube/issues/9444)) ([b5ddd11](https://github.com/cube-js/cube/commit/b5ddd115a8ad066bc4399fc2608d1d99d3d863dc))
17+
- **schema-compiler:** Fix cubes inheritance ([#9386](https://github.com/cube-js/cube/issues/9386)) ([409d74d](https://github.com/cube-js/cube/commit/409d74db8c5ac5a314e1e3e7b872586f538713d1))
18+
- **schema-compiler:** Fix incorrect native bulk transpilation if there are no JS files ([#9453](https://github.com/cube-js/cube/issues/9453)) ([610820f](https://github.com/cube-js/cube/commit/610820fe15701ad0971b4d317bb112ec7765bb9b))
19+
- **server:** Fix incorrect native result wrapper processing via webSockets ([#9458](https://github.com/cube-js/cube/issues/9458)) ([a4e76c4](https://github.com/cube-js/cube/commit/a4e76c4568bce4c63e5f131f3c7bf800f1cd45fc))
20+
21+
### Features
22+
23+
- **cubesql:** Remove bottom-up extraction completely ([#9183](https://github.com/cube-js/cube/issues/9183)) ([c528ebe](https://github.com/cube-js/cube/commit/c528ebe6b5700cc950a26530906436bd274c1942))
24+
- **databricks-jdbc-driver:** Add export bucket support for Google Cloud Storage ([#9445](https://github.com/cube-js/cube/issues/9445)) ([a247bf9](https://github.com/cube-js/cube/commit/a247bf9ce073aea69ffb592e933fd365eee70fe1))
25+
- **databricks-jdbc-driver:** Switch to the latest OSS Databricks JDBC driver ([#9450](https://github.com/cube-js/cube/issues/9450)) ([819edde](https://github.com/cube-js/cube/commit/819eddedc6024963b836d8090f6ca1c3ae1b5966))
26+
627
## [1.2.33](https://github.com/cube-js/cube/compare/v1.2.32...v1.2.33) (2025-04-10)
728

829
### 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.2.33",
2+
"version": "1.3.1",
33
"npmClient": "yarn",
44
"command": {
55
"bootstrap": {

packages/cubejs-api-gateway/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
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.3.1](https://github.com/cube-js/cube/compare/v1.3.0...v1.3.1) (2025-04-14)
7+
8+
**Note:** Version bump only for package @cubejs-backend/api-gateway
9+
10+
# [1.3.0](https://github.com/cube-js/cube/compare/v1.2.33...v1.3.0) (2025-04-11)
11+
12+
### Bug Fixes
13+
14+
- **schema-compiler:** Fix cubes inheritance ([#9386](https://github.com/cube-js/cube/issues/9386)) ([409d74d](https://github.com/cube-js/cube/commit/409d74db8c5ac5a314e1e3e7b872586f538713d1))
15+
616
## [1.2.33](https://github.com/cube-js/cube/compare/v1.2.32...v1.2.33) (2025-04-10)
717

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

packages/cubejs-api-gateway/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@cubejs-backend/api-gateway",
33
"description": "Cube.js API Gateway",
44
"author": "Cube Dev, Inc.",
5-
"version": "1.2.33",
5+
"version": "1.3.1",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/cube-js/cube.git",
@@ -27,8 +27,8 @@
2727
"dist/src/*"
2828
],
2929
"dependencies": {
30-
"@cubejs-backend/native": "1.2.33",
31-
"@cubejs-backend/shared": "1.2.33",
30+
"@cubejs-backend/native": "1.3.1",
31+
"@cubejs-backend/shared": "1.3.1",
3232
"@ungap/structured-clone": "^0.3.4",
3333
"assert-never": "^1.4.0",
3434
"body-parser": "^1.19.0",
@@ -51,7 +51,7 @@
5151
"uuid": "^8.3.2"
5252
},
5353
"devDependencies": {
54-
"@cubejs-backend/linter": "1.2.33",
54+
"@cubejs-backend/linter": "1.3.1",
5555
"@types/express": "^4.17.21",
5656
"@types/jest": "^27",
5757
"@types/jsonwebtoken": "^9.0.2",

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+
## [1.3.1](https://github.com/cube-js/cube/compare/v1.3.0...v1.3.1) (2025-04-14)
7+
8+
**Note:** Version bump only for package @cubejs-backend/athena-driver
9+
10+
# [1.3.0](https://github.com/cube-js/cube/compare/v1.2.33...v1.3.0) (2025-04-11)
11+
12+
**Note:** Version bump only for package @cubejs-backend/athena-driver
13+
614
## [1.2.33](https://github.com/cube-js/cube/compare/v1.2.32...v1.2.33) (2025-04-10)
715

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

packages/cubejs-athena-driver/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@cubejs-backend/athena-driver",
33
"description": "Cube.js Athena database driver",
44
"author": "Cube Dev, Inc.",
5-
"version": "1.2.33",
5+
"version": "1.3.1",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/cube-js/cube.git",
@@ -29,13 +29,13 @@
2929
"types": "dist/src/index.d.ts",
3030
"dependencies": {
3131
"@aws-sdk/client-athena": "^3.22.0",
32-
"@cubejs-backend/base-driver": "1.2.33",
33-
"@cubejs-backend/shared": "1.2.33",
32+
"@cubejs-backend/base-driver": "1.3.1",
33+
"@cubejs-backend/shared": "1.3.1",
3434
"sqlstring": "^2.3.1"
3535
},
3636
"devDependencies": {
37-
"@cubejs-backend/linter": "1.2.33",
38-
"@cubejs-backend/testing-shared": "1.2.33",
37+
"@cubejs-backend/linter": "1.3.1",
38+
"@cubejs-backend/testing-shared": "1.3.1",
3939
"@types/ramda": "^0.27.40",
4040
"typescript": "~5.2.2"
4141
},

packages/cubejs-backend-cloud/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+
## [1.3.1](https://github.com/cube-js/cube/compare/v1.3.0...v1.3.1) (2025-04-14)
7+
8+
**Note:** Version bump only for package @cubejs-backend/cloud
9+
10+
# [1.3.0](https://github.com/cube-js/cube/compare/v1.2.33...v1.3.0) (2025-04-11)
11+
12+
**Note:** Version bump only for package @cubejs-backend/cloud
13+
614
## [1.2.33](https://github.com/cube-js/cube/compare/v1.2.32...v1.2.33) (2025-04-10)
715

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

packages/cubejs-backend-cloud/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cubejs-backend/cloud",
3-
"version": "1.2.33",
3+
"version": "1.3.1",
44
"description": "Cube Cloud package",
55
"main": "dist/src/index.js",
66
"typings": "dist/src/index.d.ts",
@@ -25,15 +25,15 @@
2525
"devDependencies": {
2626
"@babel/core": "^7.24.5",
2727
"@babel/preset-env": "^7.24.5",
28-
"@cubejs-backend/linter": "1.2.33",
28+
"@cubejs-backend/linter": "1.3.1",
2929
"@types/fs-extra": "^9.0.8",
3030
"@types/jest": "^27",
3131
"jest": "^27",
3232
"typescript": "~5.2.2"
3333
},
3434
"dependencies": {
3535
"@cubejs-backend/dotenv": "^9.0.2",
36-
"@cubejs-backend/shared": "1.2.33",
36+
"@cubejs-backend/shared": "1.3.1",
3737
"chokidar": "^3.5.1",
3838
"env-var": "^6.3.0",
3939
"form-data": "^4.0.0",

packages/cubejs-backend-maven/CHANGELOG.md

Lines changed: 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+
## [1.3.1](https://github.com/cube-js/cube/compare/v1.3.0...v1.3.1) (2025-04-14)
7+
8+
**Note:** Version bump only for package @cubejs-backend/maven
9+
10+
# [1.3.0](https://github.com/cube-js/cube/compare/v1.2.33...v1.3.0) (2025-04-11)
11+
12+
**Note:** Version bump only for package @cubejs-backend/maven
13+
614
## [1.2.33](https://github.com/cube-js/cube/compare/v1.2.32...v1.2.33) (2025-04-10)
715

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

0 commit comments

Comments
 (0)