@muggleai/works 5.13.0 → 5.14.0-staging.96
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2023,15 +2023,24 @@ async function setupCommand(options) {
|
|
|
2023
2023
|
}
|
|
2024
2024
|
const checksumResult = await verifyFileChecksum(tempFile, expectedChecksum);
|
|
2025
2025
|
if (!checksumResult.valid && expectedChecksum) {
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2026
|
+
if (!integrityPolicy.requiresChecksum) {
|
|
2027
|
+
console.warn(
|
|
2028
|
+
`Pinned checksum does not match this download, but its signature verified.
|
|
2029
|
+
Expected: ${checksumResult.expected}
|
|
2030
|
+
Actual: ${checksumResult.actual}
|
|
2031
|
+
The pin in package.json muggleConfig.checksumsByStream is stale for this release; continuing on the signature.`
|
|
2032
|
+
);
|
|
2033
|
+
} else {
|
|
2034
|
+
cleanupFailedInstall(versionDir);
|
|
2035
|
+
throw new Error(
|
|
2036
|
+
`Checksum verification failed!
|
|
2029
2037
|
Expected: ${checksumResult.expected}
|
|
2030
2038
|
Actual: ${checksumResult.actual}
|
|
2031
2039
|
The downloaded file may be corrupted or tampered with.`
|
|
2032
|
-
|
|
2040
|
+
);
|
|
2041
|
+
}
|
|
2033
2042
|
}
|
|
2034
|
-
if (expectedChecksum) {
|
|
2043
|
+
if (expectedChecksum && checksumResult.valid) {
|
|
2035
2044
|
console.log("Checksum verified successfully.");
|
|
2036
2045
|
}
|
|
2037
2046
|
console.log("Extracting...");
|
package/dist/cli.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { src_exports as commands, createUnifiedMcpServer, server_exports as server } from './chunk-
|
|
1
|
+
export { src_exports as commands, createUnifiedMcpServer, server_exports as server } from './chunk-7WL6LFIU.js';
|
|
2
2
|
export { createChildLogger, e2e_exports as e2e, getConfig, getLocalQaTools, getLogger, getQaTools, local_exports as localQa, mcp_exports as mcp, e2e_exports as qa, src_exports as shared } from './chunk-H5UDFKG3.js';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"release": "5.13.0",
|
|
3
|
-
"buildId": "run-
|
|
4
|
-
"commitSha": "
|
|
5
|
-
"buildTime": "2026-09-
|
|
3
|
+
"buildId": "run-96-1",
|
|
4
|
+
"commitSha": "3a0a6a70d012faf3cc36cf1ac486fd5650c21da7",
|
|
5
|
+
"buildTime": "2026-09-05T00:42:20Z",
|
|
6
6
|
"serviceName": "muggle-ai-works-mcp"
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@muggleai/works",
|
|
3
3
|
"mcpName": "io.github.multiplex-ai/muggle",
|
|
4
|
-
"version": "5.
|
|
4
|
+
"version": "5.14.0-staging.96",
|
|
5
5
|
"description": "Ship quality products with AI-powered E2E acceptance testing that validates your web app like a real user — from Claude Code and Cursor to PR.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/index.js",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"muggleConfig": {
|
|
54
54
|
"electronAppVersion": "1.10.3",
|
|
55
55
|
"downloadBaseUrl": "https://github.com/multiplex-ai/muggle-ai-works/releases/download",
|
|
56
|
-
"runtimeTargetDefault": "
|
|
56
|
+
"runtimeTargetDefault": "staging",
|
|
57
57
|
"checksumsByStream": {
|
|
58
58
|
"production": {
|
|
59
59
|
"win32-x64": "58e2238b1609ceff65b836b4b724b1c4c341d737a15debaa8a71af21b70bc436",
|