@uuv/mcp-server 0.12.0 → 0.14.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/dist/CHANGELOG.md +40 -0
- package/dist/package.json +4 -4
- package/package.json +4 -4
package/dist/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,43 @@
|
|
|
1
|
+
# [0.13.0](https://github.com/e2e-test-quest/uuv/compare/mcp-server-v0.12.0...mcp-server-v0.13.0) (2026-03-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **runner-playwright:** update dependency chokidar to v4.0.3 ([ff51aab](https://github.com/e2e-test-quest/uuv/commit/ff51aabadce6d0dc5e1b054472a43d1a14142ec3))
|
|
7
|
+
* **runner-playwright:** update dependency chokidar to v4.0.3 ([330ce8f](https://github.com/e2e-test-quest/uuv/commit/330ce8f99c8c84699cc5251159e980cb4318a277))
|
|
8
|
+
* **runner-playwright:** update dependency webpack to v5.105.4 ([ba8a2cf](https://github.com/e2e-test-quest/uuv/commit/ba8a2cfe2114e7e36301125b0d76a2ab1d63002d))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **assistant-ai:** initialize @uuv/assistant-ai, [#1222](https://github.com/e2e-test-quest/uuv/issues/1222) ([60a0090](https://github.com/e2e-test-quest/uuv/commit/60a0090ad865f5e667614b84582c1808b49137ea))
|
|
14
|
+
|
|
15
|
+
# [0.13.0](https://github.com/e2e-test-quest/uuv/compare/mcp-server-v0.12.0...mcp-server-v0.13.0) (2026-03-08)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **runner-playwright:** update dependency chokidar to v4.0.3 ([ff51aab](https://github.com/e2e-test-quest/uuv/commit/ff51aabadce6d0dc5e1b054472a43d1a14142ec3))
|
|
21
|
+
* **runner-playwright:** update dependency chokidar to v4.0.3 ([330ce8f](https://github.com/e2e-test-quest/uuv/commit/330ce8f99c8c84699cc5251159e980cb4318a277))
|
|
22
|
+
* **runner-playwright:** update dependency webpack to v5.105.4 ([ba8a2cf](https://github.com/e2e-test-quest/uuv/commit/ba8a2cfe2114e7e36301125b0d76a2ab1d63002d))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* **assistant-ai:** initialize @uuv/assistant-ai, [#1222](https://github.com/e2e-test-quest/uuv/issues/1222) ([60a0090](https://github.com/e2e-test-quest/uuv/commit/60a0090ad865f5e667614b84582c1808b49137ea))
|
|
28
|
+
|
|
29
|
+
# [0.12.0](https://github.com/e2e-test-quest/uuv/compare/mcp-server-v0.11.0...mcp-server-v0.12.0) (2026-03-02)
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### Bug Fixes
|
|
33
|
+
|
|
34
|
+
* **runner-playwright:** update dependency chokidar to v4.0.3 ([c468f01](https://github.com/e2e-test-quest/uuv/commit/c468f01ea1ff3106bac0e4a4b51dc4db283755dd))
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
### Features
|
|
38
|
+
|
|
39
|
+
* **runner-commons:** update dependency figlet to v1.10.0 ([661130d](https://github.com/e2e-test-quest/uuv/commit/661130d3cdca8a8da87b86a015951ca5461c125d))
|
|
40
|
+
|
|
1
41
|
# [0.11.0](https://github.com/e2e-test-quest/uuv/compare/mcp-server-v0.10.0...mcp-server-v0.11.0) (2026-02-27)
|
|
2
42
|
|
|
3
43
|
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uuv/mcp-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.0",
|
|
4
4
|
"description": "A Model Context Protocol (MCP) server for UUV - a solution to facilitate the writing and execution of E2E tests understandable by any human being(English or French) using cucumber(BDD) and cypress or playwright.",
|
|
5
5
|
"author": "Louis Fredice NJAKO MOLOM (https://github.com/luifr10) & Stanley SERVICAL (https://github.com/stanlee974)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"@modelcontextprotocol/sdk": "1.26.0",
|
|
61
61
|
"@types/mustache": "^4.2.6",
|
|
62
|
-
"@uuv/assistant": "2.
|
|
63
|
-
"@uuv/dictionary": "0.
|
|
62
|
+
"@uuv/assistant": "2.83.0",
|
|
63
|
+
"@uuv/dictionary": "0.10.0",
|
|
64
64
|
"jsdom": "26.1.0",
|
|
65
65
|
"mustache": "^4.2.0",
|
|
66
66
|
"tsconfig-paths": "4.2.0",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"url": "https://opencollective.com/uuv"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
|
-
"@modelcontextprotocol/inspector": "^0.
|
|
75
|
+
"@modelcontextprotocol/inspector": "^0.21.0",
|
|
76
76
|
"copyfiles": "^2.4.1",
|
|
77
77
|
"ts-node": "^10.9.2"
|
|
78
78
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uuv/mcp-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0",
|
|
4
4
|
"description": "A Model Context Protocol (MCP) server for UUV - a solution to facilitate the writing and execution of E2E tests understandable by any human being(English or French) using cucumber(BDD) and cypress or playwright.",
|
|
5
5
|
"author": "Louis Fredice NJAKO MOLOM (https://github.com/luifr10) & Stanley SERVICAL (https://github.com/stanlee974)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"@modelcontextprotocol/sdk": "1.26.0",
|
|
61
61
|
"@types/mustache": "^4.2.6",
|
|
62
|
-
"@uuv/assistant": "2.
|
|
63
|
-
"@uuv/dictionary": "0.
|
|
62
|
+
"@uuv/assistant": "2.84.0",
|
|
63
|
+
"@uuv/dictionary": "0.11.0",
|
|
64
64
|
"jsdom": "26.1.0",
|
|
65
65
|
"mustache": "^4.2.0",
|
|
66
66
|
"tsconfig-paths": "4.2.0",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"url": "https://opencollective.com/uuv"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
|
-
"@modelcontextprotocol/inspector": "^0.
|
|
75
|
+
"@modelcontextprotocol/inspector": "^0.21.0",
|
|
76
76
|
"copyfiles": "^2.4.1",
|
|
77
77
|
"ts-node": "^10.9.2"
|
|
78
78
|
}
|