@uuv/runner-commons 2.67.0 → 2.68.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
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
# [2.68.0](https://github.com/e2e-test-quest/uuv/compare/runner-commons-v2.67.1...runner-commons-v2.68.0) (2025-11-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **docs:** clone dictionary during doc generation ([c357bb8](https://github.com/e2e-test-quest/uuv/commit/c357bb8cb18f8aca0ade49e512c806c768030054))
|
|
7
|
+
* **runner-cypress:** update dependency @cypress/webpack-preprocessor to v7.0.2 ([1e2abab](https://github.com/e2e-test-quest/uuv/commit/1e2abab644d26e6b6fd65a00c8d6edd4cdbd2fb6))
|
|
8
|
+
* **runner-playwright:** update dependency chokidar to v4.0.3 ([0e11d27](https://github.com/e2e-test-quest/uuv/commit/0e11d27808d47d77ae982b8874492c98c0afdb76))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **mcp-server:** introduce unit-test for mcp-server and domSelector for generate_expect_elem, [#1164](https://github.com/e2e-test-quest/uuv/issues/1164) ([a1aabb3](https://github.com/e2e-test-quest/uuv/commit/a1aabb359ee780905cbbdf8d07248b59965208ca))
|
|
14
|
+
* **runner-cypress:** update dependency cypress to v15.7.0 ([36f50df](https://github.com/e2e-test-quest/uuv/commit/36f50dfebe23be556ade0c3e7ed5a53d9214bd9a))
|
|
15
|
+
|
|
16
|
+
## [2.67.1](https://github.com/e2e-test-quest/uuv/compare/runner-commons-v2.67.0...runner-commons-v2.67.1) (2025-11-20)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* **assistant:** set dom-accessibility-api dependency as runtime dependency ([8f6588e](https://github.com/e2e-test-quest/uuv/commit/8f6588e71bdb5fccee1e4fe8047038853e76e13a))
|
|
22
|
+
|
|
1
23
|
# [2.67.0](https://github.com/e2e-test-quest/uuv/compare/runner-commons-v2.66.0...runner-commons-v2.67.0) (2025-11-19)
|
|
2
24
|
|
|
3
25
|
|
|
@@ -54,6 +54,7 @@ const fs_1 = __importDefault(require("fs"));
|
|
|
54
54
|
const common_1 = require("./common");
|
|
55
55
|
const path = __importStar(require("path"));
|
|
56
56
|
const dictionary_1 = require("@uuv/dictionary");
|
|
57
|
+
const lodash_1 = __importDefault(require("lodash"));
|
|
57
58
|
class AutocompletionSuggestion {
|
|
58
59
|
suggestion;
|
|
59
60
|
link;
|
|
@@ -88,7 +89,7 @@ function runGenerateDoc(destDir) {
|
|
|
88
89
|
common_1.Common.writeWordingFile(autocompletionSuggestionFile, autocompletionSuggestionContent);
|
|
89
90
|
}
|
|
90
91
|
function computeWordingFile(dictionary, lang) {
|
|
91
|
-
const
|
|
92
|
+
const wordingEnrichedNormalizedOrigin = normalizedForMdx(dictionary.getRoleBasedSentencesTemplate());
|
|
92
93
|
const wordingsBaseNormalized = normalizedForMdx(dictionary.getBaseSentences());
|
|
93
94
|
const title = (function () {
|
|
94
95
|
switch (lang) {
|
|
@@ -124,7 +125,7 @@ function runGenerateDoc(destDir) {
|
|
|
124
125
|
const definedRoles = dictionary.getDefinedRoles();
|
|
125
126
|
definedRoles.forEach((role) => {
|
|
126
127
|
rows.push(`### ${role.id}`);
|
|
127
|
-
|
|
128
|
+
const wordingEnrichedNormalized = lodash_1.default.cloneDeep(wordingEnrichedNormalizedOrigin);
|
|
128
129
|
wordingEnrichedNormalized.forEach(sentence => {
|
|
129
130
|
sentence.wording = sentence.wording.replaceAll("$roleName", role.name)
|
|
130
131
|
.replaceAll("$roleId", role.id)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uuv/runner-commons",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.68.0",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"author": "Louis Fredice NJAKO MOLOM (https://github.com/luifr10) & Stanley SERVICAL (https://github.com/stanlee974)",
|
|
6
6
|
"description": "A common lib for uuv",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"lodash": "^4.17.21",
|
|
82
82
|
"minimist": "1.2.8",
|
|
83
83
|
"node-ipc": "^12.0.0",
|
|
84
|
-
"@uuv/dictionary": "0.
|
|
84
|
+
"@uuv/dictionary": "0.2.0"
|
|
85
85
|
},
|
|
86
86
|
"funding": {
|
|
87
87
|
"type": "opencollective",
|