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