@uuv/runner-commons 2.85.1 → 2.87.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.
- package/CHANGELOG.md +27 -0
- package/package.json +86 -83
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,30 @@
|
|
|
1
|
+
# [2.87.0](https://github.com/e2e-test-quest/uuv/compare/runner-commons-v2.86.0...runner-commons-v2.87.0) (2026-06-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* migrate image classifier to mcp-server ([fa06581](https://github.com/e2e-test-quest/uuv/commit/fa0658177d2776d5a96de82b8e3c32c6d4d16d2b))
|
|
7
|
+
|
|
8
|
+
# [2.86.0](https://github.com/e2e-test-quest/uuv/compare/runner-commons-v2.85.1...runner-commons-v2.86.0) (2026-06-21)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** update dependency @ai-sdk/anthropic to v3.0.85 ([0b29846](https://github.com/e2e-test-quest/uuv/commit/0b29846dab19f342e2cacbcbc7905763975ad3b3))
|
|
14
|
+
* **deps:** update dependency @ai-sdk/google to v3.0.83 ([e5930d1](https://github.com/e2e-test-quest/uuv/commit/e5930d1b9abf083080b0146d0e41db10f7423cc7))
|
|
15
|
+
* **deps:** update dependency @ai-sdk/mcp to v1.0.52 ([346b83f](https://github.com/e2e-test-quest/uuv/commit/346b83f3e1944dc47da2ba840fee68750e7f9cfb))
|
|
16
|
+
* **deps:** update dependency @ai-sdk/openai to v3.0.73 ([58b2fb6](https://github.com/e2e-test-quest/uuv/commit/58b2fb6d5d1023669d88b69a3482e5da99eade73))
|
|
17
|
+
* **deps:** update dependency ai to v6.0.208 ([bceab4b](https://github.com/e2e-test-quest/uuv/commit/bceab4bd5d249fe64304d87c22bf881fe7df0d2d))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **deps:** update dependency zod to v4.4.3 ([e3a2c95](https://github.com/e2e-test-quest/uuv/commit/e3a2c95e5dba50a0043e24fb1af49d27f48f5484))
|
|
23
|
+
* migrate to node 24 ([e0c0b6d](https://github.com/e2e-test-quest/uuv/commit/e0c0b6dfa5342cbe4f77ab4304ef8786faffc322))
|
|
24
|
+
* **runner-cypress:** update dependency cypress to v15.17.0 ([ad1e998](https://github.com/e2e-test-quest/uuv/commit/ad1e998fe9f32709675fa87153daec2baa7ab7d7))
|
|
25
|
+
* **runner-playwright:** update dependency axe-core to v4.12.1 ([8c38698](https://github.com/e2e-test-quest/uuv/commit/8c3869850a94dd131148d788f21634bb58c93195))
|
|
26
|
+
* **runner-playwright:** update playwright-bdd to v9 ([072868c](https://github.com/e2e-test-quest/uuv/commit/072868c38a0429024c61d00742e73335fa42d3d5))
|
|
27
|
+
|
|
1
28
|
## [2.85.1](https://github.com/e2e-test-quest/uuv/compare/runner-commons-v2.85.0...runner-commons-v2.85.1) (2026-05-27)
|
|
2
29
|
|
|
3
30
|
|
package/package.json
CHANGED
|
@@ -1,90 +1,93 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
},
|
|
12
|
-
"homepage": "https://e2e-test-quest.github.io/uuv/",
|
|
13
|
-
"keywords": [
|
|
14
|
-
"uuv",
|
|
15
|
-
"e2e",
|
|
16
|
-
"end2end",
|
|
17
|
-
"end 2 end",
|
|
18
|
-
"test",
|
|
19
|
-
"testing",
|
|
20
|
-
"accessibility",
|
|
21
|
-
"accessibilite",
|
|
22
|
-
"a11y",
|
|
23
|
-
"cypress",
|
|
24
|
-
"playwright",
|
|
25
|
-
"testing-library",
|
|
26
|
-
"cucumber",
|
|
27
|
-
"gherkin",
|
|
28
|
-
"bdd",
|
|
29
|
-
"tdd",
|
|
30
|
-
"acceptance"
|
|
31
|
-
],
|
|
32
|
-
"scripts": {
|
|
33
|
-
"package": "npm pack --pack-destination=\"../../dist/packages\"",
|
|
34
|
-
"lint": "npx eslint . --ext .js,.ts,.feature --fix",
|
|
35
|
-
"test": "npm run unit-test --",
|
|
36
|
-
"unit-tests": "jest --coverage"
|
|
37
|
-
},
|
|
38
|
-
"devDependencies": {
|
|
39
|
-
"xml2js": "^0.6.2"
|
|
40
|
-
},
|
|
41
|
-
"files": [
|
|
42
|
-
"dist/index.d.ts",
|
|
43
|
-
"dist/index.js",
|
|
44
|
-
"dist/step-definition-generator/**/*",
|
|
45
|
-
"dist/assets/**/*",
|
|
46
|
-
"src/assets/i18n/*/*/*.json",
|
|
47
|
-
"dist/runner/**/*",
|
|
48
|
-
"dist/cli/**/*",
|
|
49
|
-
"*.md"
|
|
50
|
-
],
|
|
51
|
-
"exports": {
|
|
52
|
-
".": {
|
|
53
|
-
"types": "./dist/index.d.ts",
|
|
54
|
-
"import": "./dist/index.js",
|
|
55
|
-
"require": "./dist/index.js"
|
|
2
|
+
"name": "@uuv/runner-commons",
|
|
3
|
+
"version": "2.87.0",
|
|
4
|
+
"type": "commonjs",
|
|
5
|
+
"author": "Louis Fredice NJAKO MOLOM (https://github.com/luifr10) & Stanley SERVICAL (https://github.com/stanlee974)",
|
|
6
|
+
"description": "A common lib for uuv",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/e2e-test-quest/uuv"
|
|
56
11
|
},
|
|
57
|
-
"
|
|
58
|
-
|
|
59
|
-
"import": "./dist/assets/i18n/web/index.js",
|
|
60
|
-
"require": "./dist/assets/i18n/web/index.js"
|
|
12
|
+
"engines": {
|
|
13
|
+
"node": ">=24"
|
|
61
14
|
},
|
|
62
|
-
"
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
15
|
+
"homepage": "https://e2e-test-quest.github.io/uuv/",
|
|
16
|
+
"keywords": [
|
|
17
|
+
"uuv",
|
|
18
|
+
"e2e",
|
|
19
|
+
"end2end",
|
|
20
|
+
"end 2 end",
|
|
21
|
+
"test",
|
|
22
|
+
"testing",
|
|
23
|
+
"accessibility",
|
|
24
|
+
"accessibilite",
|
|
25
|
+
"a11y",
|
|
26
|
+
"cypress",
|
|
27
|
+
"playwright",
|
|
28
|
+
"testing-library",
|
|
29
|
+
"cucumber",
|
|
30
|
+
"gherkin",
|
|
31
|
+
"bdd",
|
|
32
|
+
"tdd",
|
|
33
|
+
"acceptance"
|
|
34
|
+
],
|
|
35
|
+
"scripts": {
|
|
36
|
+
"package": "npm pack --pack-destination=\"../../dist/packages\"",
|
|
37
|
+
"lint": "npx eslint . --ext .js,.ts,.feature --fix",
|
|
38
|
+
"test": "npm run unit-test --",
|
|
39
|
+
"unit-tests": "jest --coverage"
|
|
66
40
|
},
|
|
67
|
-
"
|
|
68
|
-
|
|
69
|
-
"import": "./dist/runner/event/index.js",
|
|
70
|
-
"require": "./dist/runner/event/index.js"
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"xml2js": "^0.6.2"
|
|
71
43
|
},
|
|
72
|
-
"
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
44
|
+
"files": [
|
|
45
|
+
"dist/index.d.ts",
|
|
46
|
+
"dist/index.js",
|
|
47
|
+
"dist/step-definition-generator/**/*",
|
|
48
|
+
"dist/assets/**/*",
|
|
49
|
+
"src/assets/i18n/*/*/*.json",
|
|
50
|
+
"dist/runner/**/*",
|
|
51
|
+
"dist/cli/**/*",
|
|
52
|
+
"*.md"
|
|
53
|
+
],
|
|
54
|
+
"exports": {
|
|
55
|
+
".": {
|
|
56
|
+
"types": "./dist/index.d.ts",
|
|
57
|
+
"import": "./dist/index.js",
|
|
58
|
+
"require": "./dist/index.js"
|
|
59
|
+
},
|
|
60
|
+
"./wording/web": {
|
|
61
|
+
"types": "./dist/assets/i18n/web/index.d.ts",
|
|
62
|
+
"import": "./dist/assets/i18n/web/index.js",
|
|
63
|
+
"require": "./dist/assets/i18n/web/index.js"
|
|
64
|
+
},
|
|
65
|
+
"./wording/web/en": {
|
|
66
|
+
"types": "./dist/assets/i18n/web/en/index.d.ts",
|
|
67
|
+
"import": "./dist/assets/i18n/web/en/index.js",
|
|
68
|
+
"require": "./dist/assets/i18n/web/en/index.js"
|
|
69
|
+
},
|
|
70
|
+
"./runner/event": {
|
|
71
|
+
"types": "./dist/runner/event/index.d.ts",
|
|
72
|
+
"import": "./dist/runner/event/index.js",
|
|
73
|
+
"require": "./dist/runner/event/index.js"
|
|
74
|
+
},
|
|
75
|
+
"./runner/utils": {
|
|
76
|
+
"types": "./dist/runner/utils.d.ts",
|
|
77
|
+
"import": "./dist/runner/utils.js",
|
|
78
|
+
"require": "./dist/runner/utils.js"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"dependencies": {
|
|
82
|
+
"chalk": "^4.1.2",
|
|
83
|
+
"figlet": "1.11.0",
|
|
84
|
+
"lodash": "^4.17.21",
|
|
85
|
+
"minimist": "1.2.8",
|
|
86
|
+
"node-ipc": "^12.0.0",
|
|
87
|
+
"@uuv/dictionary": "0.21.0"
|
|
88
|
+
},
|
|
89
|
+
"funding": {
|
|
90
|
+
"type": "opencollective",
|
|
91
|
+
"url": "https://opencollective.com/uuv"
|
|
76
92
|
}
|
|
77
|
-
},
|
|
78
|
-
"dependencies": {
|
|
79
|
-
"chalk": "^4.1.2",
|
|
80
|
-
"figlet": "1.11.0",
|
|
81
|
-
"lodash": "^4.17.21",
|
|
82
|
-
"minimist": "1.2.8",
|
|
83
|
-
"node-ipc": "^12.0.0",
|
|
84
|
-
"@uuv/dictionary": "0.19.1"
|
|
85
|
-
},
|
|
86
|
-
"funding": {
|
|
87
|
-
"type": "opencollective",
|
|
88
|
-
"url": "https://opencollective.com/uuv"
|
|
89
|
-
}
|
|
90
93
|
}
|