Skip to content

Commit ece15b9

Browse files
committed
Fix auth and update versions to 55
1 parent ed2b49c commit ece15b9

File tree

5 files changed

+22
-28
lines changed

5 files changed

+22
-28
lines changed

.env.docker.example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ METABASE_JWT_SHARED_SECRET="ffffffffffffffffffffffffffffffffffffffffffffffffffff
33

44
MB_PORT=4300
55
CLIENT_PORT=4400
6+
AUTH_PROVIDER_PORT=4500
67

78
WATCH="false"

client/package-lock.json

Lines changed: 18 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"lint": "eslint ."
1212
},
1313
"dependencies": {
14-
"@metabase/embedding-sdk-react": "^0.54.11",
14+
"@metabase/embedding-sdk-react": "^0.55.2-nightly",
1515
"react": "^18.3.1",
1616
"react-dom": "^18.3.1"
1717
},

metabase/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM metabase/metabase-enterprise:v1.54.x
1+
FROM metabase/metabase-enterprise:v1.55.x
22

33
COPY ./metabase /app/
44
COPY ./local-dist /app/local-dist

server/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ app.get("/sso/metabase", async (req, res) => {
5050
return res
5151
.status(200)
5252
.set("Content-Type", "application/json")
53-
.end({ jwt: token });
53+
.send({ jwt: token });
5454
}
5555

5656
const ssoUrl = `${METABASE_INSTANCE_URL}/auth/sso?token=true&jwt=${token}`;

0 commit comments

Comments
 (0)