@unotest/mobile 0.30.0 → 0.32.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +79 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,84 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.32.0] - 2026-09-05
4
+
5
+ ### Patch Changes
6
+
7
+ - 047ca68: Failure text no longer carries terminal colouring into files and replies.
8
+
9
+ Playwright paints its call log whenever the environment claims a terminal is
10
+ watching — `FORCE_COLOR`, which an MCP server inherits from whatever launched
11
+ it — and that message was copied verbatim into `steps.jsonl`, `runtime.json`
12
+ and the failure bundle. An agent reading the JSON got an escape sequence in
13
+ the middle of the sentence it was trying to parse, and the viewer rendered
14
+ it as a chewed-up word.
15
+
16
+ The colouring is dropped where a thrown error becomes our data, so every
17
+ reader of a failure gets the same clean text. Our own output is unaffected:
18
+ it paints at print time, which is where colour belongs.
19
+
20
+ The same on mobile: a failure's text in the run journal and in the report no
21
+ longer carries terminal escapes.
22
+
23
+ - 047ca68: A `step.soft(...)` failure no longer stops a debug run — or goes missing from it.
24
+
25
+ Under a debugger (`run_test`, or `e2e --debug`), every soft failure raised
26
+ the debug wheel: the run stopped on each one and an agent had to `resume`
27
+ its way through them. Worse, it was then lost — a paused failure is consumed
28
+ where it paused, so it never reached the `step.soft` envelope that records
29
+ it, the envelope closed as if the block had passed, and a run with three
30
+ soft failures could finish green with none of them listed.
31
+
32
+ Pausing is now for a failure that ENDS the run. A failure under any
33
+ enclosing soft step is recorded and stepped over exactly as it is on the
34
+ command line, and `runtime.json` — which the `run_test` reply is built from —
35
+ carries every soft failure of the run, not just the last stop.
36
+
37
+ A hard failure still pauses: that is what the debugger is for.
38
+
39
+ The same holds on mobile: a `step.soft(...)` failure no longer stops a run
40
+ under the debugger, and every soft failure of a run is now part of its
41
+ runtime state instead of being lost at the pause.
42
+
43
+ - Updated dependencies [442fadf]
44
+ - Updated dependencies [442fadf]
45
+ - Updated dependencies [8aa0f30]
46
+ - Updated dependencies [8aa0f30]
47
+ - Updated dependencies [047ca68]
48
+ - Updated dependencies [047ca68]
49
+ - Updated dependencies [047ca68]
50
+ - @unotest/viewer@0.32.0
51
+ - @unotest/protocol@0.32.0
52
+ - @unotest/dsl@0.32.0
53
+ - @unotest/core@0.32.0
54
+
55
+ ## [0.31.0] - 2026-09-04
56
+
57
+ ### Patch Changes
58
+
59
+ - Updated dependencies [b8e105b]
60
+ - Updated dependencies [b8e105b]
61
+ - Updated dependencies [b8e105b]
62
+ - Updated dependencies [9ae6d59]
63
+ - Updated dependencies [56784b3]
64
+ - Updated dependencies [e048334]
65
+ - Updated dependencies [dcf4c9e]
66
+ - Updated dependencies [100ab9d]
67
+ - Updated dependencies [100ab9d]
68
+ - Updated dependencies [100ab9d]
69
+ - Updated dependencies [100ab9d]
70
+ - Updated dependencies [ad7c918]
71
+ - Updated dependencies [ad7c918]
72
+ - Updated dependencies [ad7c918]
73
+ - Updated dependencies [9ae6d59]
74
+ - Updated dependencies [13a2d51]
75
+ - Updated dependencies [91fb562]
76
+ - Updated dependencies [dcf4c9e]
77
+ - @unotest/core@0.31.0
78
+ - @unotest/protocol@0.31.0
79
+ - @unotest/viewer@0.31.0
80
+ - @unotest/dsl@0.31.0
81
+
3
82
  ## [0.30.0] - 2026-09-03
4
83
 
5
84
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unotest/mobile",
3
- "version": "0.30.0",
3
+ "version": "0.32.0",
4
4
  "description": "AI-native E2E testing for iOS React Native apps. MCP server + CLI runner + JS-DSL scenarios.",
5
5
  "license": "MIT",
6
6
  "author": "Ivan Volkov <ivan@volkov.io>",
@@ -38,10 +38,10 @@
38
38
  "sharp": "^0.34.5",
39
39
  "zod": "^3.23.8",
40
40
  "zod-to-json-schema": "^3.23.5",
41
- "@unotest/dsl": "^0.30.0",
42
- "@unotest/core": "^0.30.0",
43
- "@unotest/viewer": "^0.30.0",
44
- "@unotest/protocol": "^0.30.0"
41
+ "@unotest/core": "^0.32.0",
42
+ "@unotest/protocol": "^0.32.0",
43
+ "@unotest/viewer": "^0.32.0",
44
+ "@unotest/dsl": "^0.32.0"
45
45
  },
46
46
  "peerDependencies": {
47
47
  "mysql2": "^3.0.0",