@deeeed/metamask-harness 0.44.2 → 0.44.3

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 CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.44.3 - 2026-08-28
6
+
7
+ ### Fixed
8
+
9
+ - Reuse one native UI provider session owner across recipe nodes on iOS so sequential gestures do not conflict with the retained XCTest runner, while each node still closes its logical session without shutting down the simulator.
10
+ - Update `@farmslot/recipe-harness` from 0.15.0 to 0.15.1 so unresolved relative Metro imports remain source bundle failures instead of triggering dependency installation during Mobile launch preflight.
11
+
5
12
  ## 0.44.2 - 2026-08-27
6
13
 
7
14
  ### Fixed
package/dist/adapters.js CHANGED
@@ -955,7 +955,7 @@ async function executeNativeProviderAction(action, node, context, createTranspor
955
955
  return executeAndroidCoordinateSwipe(node, String(device));
956
956
  }
957
957
  const app = platform === "android" ? context.env.ANDROID_PACKAGE_ID ?? process.env.ANDROID_PACKAGE_ID ?? "io.metamask" : context.env.IOS_BUNDLE_ID ?? process.env.IOS_BUNDLE_ID ?? "io.metamask.MetaMask";
958
- const session = `mm-harness-${process.pid}-${context.nodeId}`.replace(/[^a-zA-Z0-9._-]/gu, "-");
958
+ const session = (platform === "ios" ? `mm-harness-${process.pid}-${device}` : `mm-harness-${process.pid}-${context.nodeId}`).replace(/[^a-zA-Z0-9._-]/gu, "-");
959
959
  const stateDir = nativeAgentDeviceStateDir(context.env ?? {}, context.projectRoot, String(device));
960
960
  let transport;
961
961
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deeeed/metamask-harness",
3
- "version": "0.44.2",
3
+ "version": "0.44.3",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "mm-harness": "bin/mm-harness"
@@ -24,7 +24,7 @@
24
24
  "@farmslot/expo-recipe": "0.8.1",
25
25
  "@farmslot/handoff": "^0.3.1",
26
26
  "@farmslot/protocol": "0.21.0",
27
- "@farmslot/recipe-harness": "0.15.0",
27
+ "@farmslot/recipe-harness": "0.15.1",
28
28
  "agent-device": "0.19.3",
29
29
  "commander": "^12.0.0",
30
30
  "es-module-lexer": "2.3.1",