@deeeed/metamask-harness 0.3.6 → 0.3.7
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.
- package/CHANGELOG.md +5 -0
- package/adapters/mobile/inject.sh +5 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.7 - 2026-07-04
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- **Overlay install manifest no longer advertises the retired `launch.sh`/`live.sh`** — mobile launch/live orchestration is in-process now (`mm-harness launch`), and `install_v1_runner_assets` deletes `scripts/launch.sh` and `scripts/live.sh` on both install paths. The product-owned/metadata-only manifest already advertised `verify` only, but the overlay manifest's `runtimeHelpers` still listed `launch: scripts/launch.sh` and `live: scripts/live.sh` — paths the same install had just removed, a manifest that pointed at nonexistent files. The overlay manifest now advertises `verify` only, matching the product-owned path. A new manifest-honesty contract check in `tests/contract/mobile-inject.test.sh` asserts every advertised `runtimeHelpers` path exists on disk and that `launch`/`live` are not advertised, for both the product-owned and a full overlay install, so this cannot recur in either mode.
|
|
7
|
+
|
|
3
8
|
## 0.3.6 - 2026-07-04
|
|
4
9
|
|
|
5
10
|
### Fixed
|
|
@@ -669,9 +669,12 @@ node -e '
|
|
|
669
669
|
protocolVersion: "v1",
|
|
670
670
|
actionManifestPath: harnessRel + "/action-manifest.json",
|
|
671
671
|
runnerEntrypoint: harnessRel + "/runner/bin/mm-harness",
|
|
672
|
+
// launch/live orchestration is in-process (mm-harness launch); only verify
|
|
673
|
+
// remains a shell helper. install_v1_runner_assets deletes scripts/launch.sh
|
|
674
|
+
// and scripts/live.sh, so advertising them here would be a manifest that
|
|
675
|
+
// points at files this same install removed. Keep this in sync with the
|
|
676
|
+
// product-owned block above (verify only).
|
|
672
677
|
runtimeHelpers: {
|
|
673
|
-
launch: harnessRel + "/scripts/launch.sh",
|
|
674
|
-
live: harnessRel + "/scripts/live.sh",
|
|
675
678
|
verify: harnessRel + "/scripts/verify.sh"
|
|
676
679
|
},
|
|
677
680
|
installedPaths: [harnessRel + "/runner", harnessRel + "/scripts", harnessRel + "/action-manifest.json", "app/dev-tools/AgenticService"],
|