From e5ace8c7cbca14aca399fc6f7d5087595c3a38d0 Mon Sep 17 00:00:00 2001 From: 777genius Date: Mon, 18 May 2026 22:28:24 +0300 Subject: [PATCH] chore(release): lock runtime 0.0.37 --- runtime.lock.json | 12 ++++++------ .../CliInstallerService.healthCheck.test.ts | 1 + 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/runtime.lock.json b/runtime.lock.json index 81e942e5..3e0f0015 100644 --- a/runtime.lock.json +++ b/runtime.lock.json @@ -1,27 +1,27 @@ { - "version": "0.0.36", - "sourceRef": "v0.0.36", + "version": "0.0.37", + "sourceRef": "v0.0.37", "sourceRepository": "777genius/agent_teams_orchestrator", "releaseRepository": "777genius/agent-teams-ai", "releaseTag": "v2.0.0", "assets": { "darwin-arm64": { - "file": "agent-teams-runtime-darwin-arm64-v0.0.36.tar.gz", + "file": "agent-teams-runtime-darwin-arm64-v0.0.37.tar.gz", "archiveKind": "tar.gz", "binaryName": "claude-multimodel" }, "darwin-x64": { - "file": "agent-teams-runtime-darwin-x64-v0.0.36.tar.gz", + "file": "agent-teams-runtime-darwin-x64-v0.0.37.tar.gz", "archiveKind": "tar.gz", "binaryName": "claude-multimodel" }, "linux-x64": { - "file": "agent-teams-runtime-linux-x64-v0.0.36.tar.gz", + "file": "agent-teams-runtime-linux-x64-v0.0.37.tar.gz", "archiveKind": "tar.gz", "binaryName": "claude-multimodel" }, "win32-x64": { - "file": "agent-teams-runtime-win32-x64-v0.0.36.zip", + "file": "agent-teams-runtime-win32-x64-v0.0.37.zip", "archiveKind": "zip", "binaryName": "claude-multimodel.exe" } diff --git a/test/main/services/infrastructure/CliInstallerService.healthCheck.test.ts b/test/main/services/infrastructure/CliInstallerService.healthCheck.test.ts index b926955c..e95092fe 100644 --- a/test/main/services/infrastructure/CliInstallerService.healthCheck.test.ts +++ b/test/main/services/infrastructure/CliInstallerService.healthCheck.test.ts @@ -21,6 +21,7 @@ vi.mock('@main/services/team/ClaudeBinaryResolver', () => ({ vi.mock('@main/utils/shellEnv', () => ({ resolveInteractiveShellEnv: vi.fn(() => Promise.resolve({})), + resolveInteractiveShellEnvBestEffort: vi.fn(() => Promise.resolve({})), getCachedShellEnv: vi.fn(() => null), getShellPreferredHome: vi.fn(() => '/Users/tester'), }));