Skip to content

Commit fccbb9d

Browse files
committed
fix(shell): support claude playwright mcp
1 parent 7853bd6 commit fccbb9d

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/app/src/lib/core/templates/dockerfile-prelude.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ RUN set -eu; \
7575
7676
# Install unified Rust browser connection (noVNC + CDP + single dg-*-browser guarantee)
7777
# Replaces all previous TS/MCP browser-connection duplication (per issue #347)
78-
RUN cargo install --git https://github.com/ProverCoderAI/rust-browser-connection --rev 350b0b43b15a9f1c895d06d57b08314ebf768158 --locked --bins --root /usr/local \
78+
RUN cargo install --git https://github.com/ProverCoderAI/rust-browser-connection --rev 8f0aa06397030a198259e9ad9a1dc0e6a5aed967 --locked --bins --root /usr/local \
7979
&& /usr/local/bin/docker-git-browser-connection --version \
8080
&& /usr/local/bin/browser-connection --version
8181

packages/lib/src/core/templates/dockerfile-prelude.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ RUN set -eu; \
7575
7676
# Install unified Rust browser connection (noVNC + CDP + single dg-*-browser guarantee)
7777
# Replaces all previous TS/MCP browser-connection duplication (per issue #347)
78-
RUN cargo install --git https://github.com/ProverCoderAI/rust-browser-connection --rev 350b0b43b15a9f1c895d06d57b08314ebf768158 --locked --bins --root /usr/local \
78+
RUN cargo install --git https://github.com/ProverCoderAI/rust-browser-connection --rev 8f0aa06397030a198259e9ad9a1dc0e6a5aed967 --locked --bins --root /usr/local \
7979
&& /usr/local/bin/docker-git-browser-connection --version \
8080
&& /usr/local/bin/browser-connection --version
8181

packages/lib/tests/core/templates.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ describe("renderDockerfile", () => {
234234
const dockerfile = renderDockerfile(makeTemplateConfig({ enableMcpPlaywright: true }))
235235

236236
expectContainsAll(dockerfile, [
237-
"cargo install --git https://github.com/ProverCoderAI/rust-browser-connection --rev 350b0b43b15a9f1c895d06d57b08314ebf768158 --locked --bins --root /usr/local",
237+
"cargo install --git https://github.com/ProverCoderAI/rust-browser-connection --rev 8f0aa06397030a198259e9ad9a1dc0e6a5aed967 --locked --bins --root /usr/local",
238238
"/usr/local/bin/docker-git-browser-connection --version",
239239
"/usr/local/bin/browser-connection --version",
240240
"# Unified Rust browser (dg-*-browser) start/reuse is owned by browser-connection"

0 commit comments

Comments
 (0)