diff --git a/.github/workflows/package-lock.json b/.github/workflows/package-lock.json index bea97877747..94d52528c62 100644 --- a/.github/workflows/package-lock.json +++ b/.github/workflows/package-lock.json @@ -7,7 +7,7 @@ "name": "gh-aw-workflows-deps", "license": "MIT", "dependencies": { - "@sentry/mcp-server": "0.32.0" + "@sentry/mcp-server": "0.33.0" } }, "node_modules/@apm-js-collab/code-transformer": { @@ -608,9 +608,9 @@ } }, "node_modules/@sentry/mcp-server": { - "version": "0.32.0", - "resolved": "https://registry.npmjs.org/@sentry/mcp-server/-/mcp-server-0.32.0.tgz", - "integrity": "sha512-TK/YsP1EXoLXQLDkoIlyFpFdKFElkDOw2TQimqIW8R3yxaucINVmtN/ICKk7nTxTb6OE0y6x710iCw1vMfEVpg==", + "version": "0.33.0", + "resolved": "https://registry.npmjs.org/@sentry/mcp-server/-/mcp-server-0.33.0.tgz", + "integrity": "sha512-vVxmGXjVoMT/VebmRf7lHlx9UexGrrVW8a7GbeoFTh1tHbNI25FmrcsB1qMLI7BCaXEriKmbVQRN5ZAeE2DviA==", "license": "FSL-1.1-ALv2", "dependencies": { "@modelcontextprotocol/sdk": "^1.26.0", diff --git a/.github/workflows/package.json b/.github/workflows/package.json index 91b0a818c47..052fe017bf0 100644 --- a/.github/workflows/package.json +++ b/.github/workflows/package.json @@ -3,6 +3,6 @@ "private": true, "license": "MIT", "dependencies": { - "@sentry/mcp-server": "0.32.0" + "@sentry/mcp-server": "0.33.0" } } diff --git a/pkg/cli/add_integration_test.go b/pkg/cli/add_integration_test.go index 2580dd17d49..00bac20a28a 100644 --- a/pkg/cli/add_integration_test.go +++ b/pkg/cli/add_integration_test.go @@ -1023,10 +1023,12 @@ func TestAddWorkflowWithDispatchWorkflowFromSharedImport(t *testing.T) { // workflow and the dispatch-workflow dependency are written to disk. // // Note: pinned to a specific commit SHA that includes strict: false in smoke-copilot.md - // (required since sandbox.mcp.container is now blocked in strict mode) and + // (required since sandbox.mcp.container is now blocked in strict mode), // serena-go.md uses ./serena.md (explicitly-relative) so the fetcher correctly - // resolves it against shared/mcp/ rather than the top-level .github/workflows/. - workflowSpec := "github/gh-aw/.github/workflows/smoke-copilot.md@a4237ca" + // resolves it against shared/mcp/ rather than the top-level .github/workflows/, + // and tools.cli-proxy: true (not the deprecated mount-as-clis which was removed from + // the schema when the mount-as-clis-to-cli-proxy codemod was added). + workflowSpec := "github/gh-aw/.github/workflows/smoke-copilot.md@d555622" cmd := exec.Command(setup.binaryPath, "add", workflowSpec, "--verbose") cmd.Dir = setup.tempDir