@unotest/mobile 0.10.0 → 0.12.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 +30 -0
  2. package/package.json +6 -25
package/CHANGELOG.md CHANGED
@@ -4,6 +4,36 @@ All notable changes to `@unotest/mobile` will be documented in this file.
4
4
 
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
6
6
 
7
+ ## [0.12.0] - 2026-08-14
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [40300d3]
12
+ - Updated dependencies [479aa25]
13
+ - Updated dependencies [5dd59af]
14
+ - Updated dependencies [7069d24]
15
+ - @unotest/dsl@0.12.0
16
+ - @unotest/viewer@0.12.0
17
+ - @unotest/core@0.12.0
18
+ - @unotest/protocol@0.12.0
19
+
20
+ ## [0.11.0] - 2026-08-13
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies [eb568a6]
25
+ - Updated dependencies [a195713]
26
+ - Updated dependencies [ce25926]
27
+ - Updated dependencies [5a8e92b]
28
+ - Updated dependencies [d0ae620]
29
+ - Updated dependencies [2a68997]
30
+ - Updated dependencies [c01b72f]
31
+ - Updated dependencies [dea90e9]
32
+ - @unotest/core@0.11.0
33
+ - @unotest/protocol@0.11.0
34
+ - @unotest/viewer@0.11.0
35
+ - @unotest/dsl@0.11.0
36
+
7
37
  ## [0.10.0] - 2026-08-06
8
38
 
9
39
  ### Patch Changes
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "@unotest/mobile",
3
- "version": "0.10.0",
3
+ "version": "0.12.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
+ "author": "Ivan Volkov <ivan@volkov.io>",
6
7
  "type": "module",
7
8
  "engines": {
8
9
  "node": ">=20"
@@ -37,10 +38,10 @@
37
38
  "sharp": "^0.34.5",
38
39
  "zod": "^3.23.8",
39
40
  "zod-to-json-schema": "^3.23.5",
40
- "@unotest/core": "^0.10.0",
41
- "@unotest/protocol": "^0.10.0",
42
- "@unotest/viewer": "^0.10.0",
43
- "@unotest/dsl": "^0.10.0"
41
+ "@unotest/core": "^0.12.0",
42
+ "@unotest/viewer": "^0.12.0",
43
+ "@unotest/dsl": "^0.12.0",
44
+ "@unotest/protocol": "^0.12.0"
44
45
  },
45
46
  "peerDependencies": {
46
47
  "mysql2": "^3.0.0",
@@ -64,25 +65,5 @@
64
65
  "tsup": "^8.5.1",
65
66
  "tsx": "^4.19.2",
66
67
  "typescript": "^5.7.2"
67
- },
68
- "scripts": {
69
- "typecheck": "tsc --noEmit",
70
- "test": "node --import tsx --test --test-reporter=spec 'src/**/*.test.ts' 'evals/**/*.test.ts'",
71
- "compile": "tsup",
72
- "smoke:bundle": "node scripts/smoke-bundle.mjs",
73
- "check:no-cyrillic": "node scripts/check-no-cyrillic.mjs",
74
- "check:no-internal-refs": "node scripts/check-no-internal-refs.mjs",
75
- "verify": "pnpm typecheck && pnpm lint:scenarios && pnpm test",
76
- "build": "pnpm verify && pnpm compile && pnpm smoke:bundle && pnpm check:no-cyrillic && pnpm check:no-internal-refs",
77
- "e2e": "tsx src/runner/cli.ts",
78
- "lint:scenarios": "tsx src/runner/cli.ts lint",
79
- "mcp": "tsx src/mcp/server.ts",
80
- "evals:prepare": "tsx evals/prepare.ts",
81
- "evals:check": "tsx evals/check.ts",
82
- "evals:run": "tsx evals/run.ts",
83
- "evals:diff": "tsx evals/diff.ts",
84
- "evals:bless": "tsx evals/bless.ts",
85
- "wda:warmup": "tsx scripts/wda-warmup.ts",
86
- "prepublish:check": "node scripts/prepublish-check.mjs"
87
68
  }
88
69
  }