@applitools/ec-client 1.12.17 → 1.12.18
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 +40 -0
- package/package.json +15 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,45 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.12.18](https://github.com/Applitools-Dev/sdk/compare/js/ec-client@1.12.17...js/ec-client@1.12.18) (2026-02-16)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* @applitools/logger bumped to 2.2.8
|
|
9
|
+
#### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* use utils for environment variable retrieval in logger handlers ([#3551](https://github.com/Applitools-Dev/sdk/issues/3551)) ([caf97f3](https://github.com/Applitools-Dev/sdk/commit/caf97f34207bc3b8ee6ccda2855c27a99a262f8c))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
#### Performance Improvements
|
|
15
|
+
|
|
16
|
+
* add timing logs to classic | FLD-4137 ([#3543](https://github.com/Applitools-Dev/sdk/issues/3543)) ([de2b0aa](https://github.com/Applitools-Dev/sdk/commit/de2b0aaf08d813f2c59e9552947c2f4fbc12da48))
|
|
17
|
+
* @applitools/tunnel-client bumped to 1.11.6
|
|
18
|
+
#### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* tunnel client binary ([#3535](https://github.com/Applitools-Dev/sdk/issues/3535)) ([5c4752e](https://github.com/Applitools-Dev/sdk/commit/5c4752e3dd9cc42052d23793284dc6a0cd8e3b72))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
* @applitools/socket bumped to 1.3.9
|
|
25
|
+
|
|
26
|
+
* @applitools/req bumped to 1.8.8
|
|
27
|
+
|
|
28
|
+
* @applitools/driver bumped to 1.25.1
|
|
29
|
+
|
|
30
|
+
* @applitools/spec-driver-webdriver bumped to 1.5.6
|
|
31
|
+
|
|
32
|
+
* @applitools/test-server bumped to 1.4.0
|
|
33
|
+
#### Features
|
|
34
|
+
|
|
35
|
+
* make eyes-browser truly browser-importable ([#3512](https://github.com/Applitools-Dev/sdk/issues/3512)) ([9574a2f](https://github.com/Applitools-Dev/sdk/commit/9574a2fa45ec80466dfe93744c8a736f40fb51c3))
|
|
36
|
+
* mcp server test results support and improvements to initial setup ([#3518](https://github.com/Applitools-Dev/sdk/issues/3518)) ([ef6c27b](https://github.com/Applitools-Dev/sdk/commit/ef6c27b9e35dc54fd588e19a4811631433e15dbb))
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
* @applitools/core-base bumped to 1.31.2
|
|
41
|
+
|
|
42
|
+
|
|
3
43
|
## [1.12.17](https://github.com/Applitools-Dev/sdk/compare/js/ec-client@1.12.16...js/ec-client@1.12.17) (2026-01-19)
|
|
4
44
|
|
|
5
45
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/ec-client",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.18",
|
|
4
4
|
"homepage": "https://applitools.com",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/applitools/eyes.sdk.javascript1/issues"
|
|
@@ -52,20 +52,20 @@
|
|
|
52
52
|
"test:it": "MOCHA_GROUP=it run --top-level mocha './test/it/*.spec.ts'"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@applitools/core-base": "1.31.
|
|
56
|
-
"@applitools/driver": "1.25.
|
|
57
|
-
"@applitools/logger": "2.2.
|
|
58
|
-
"@applitools/req": "1.8.
|
|
59
|
-
"@applitools/socket": "1.3.
|
|
60
|
-
"@applitools/spec-driver-webdriver": "1.5.
|
|
61
|
-
"@applitools/tunnel-client": "1.11.
|
|
55
|
+
"@applitools/core-base": "1.31.2",
|
|
56
|
+
"@applitools/driver": "1.25.1",
|
|
57
|
+
"@applitools/logger": "2.2.8",
|
|
58
|
+
"@applitools/req": "1.8.8",
|
|
59
|
+
"@applitools/socket": "1.3.9",
|
|
60
|
+
"@applitools/spec-driver-webdriver": "1.5.6",
|
|
61
|
+
"@applitools/tunnel-client": "1.11.6",
|
|
62
62
|
"@applitools/utils": "1.14.1",
|
|
63
63
|
"abort-controller": "3.0.0",
|
|
64
64
|
"webdriver": "7.31.1",
|
|
65
65
|
"yargs": "^17.7.2"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
|
-
"@applitools/test-server": "^1.
|
|
68
|
+
"@applitools/test-server": "^1.4.0",
|
|
69
69
|
"@applitools/test-utils": "^1.5.17",
|
|
70
70
|
"@types/node": "^12.20.55",
|
|
71
71
|
"@types/node-fetch": "^2.6.1",
|
|
@@ -79,5 +79,11 @@
|
|
|
79
79
|
},
|
|
80
80
|
"publishConfig": {
|
|
81
81
|
"access": "public"
|
|
82
|
+
},
|
|
83
|
+
"lavamoat": {
|
|
84
|
+
"allowScripts": {
|
|
85
|
+
"selenium-webdriver>ws>bufferutil": false,
|
|
86
|
+
"selenium-webdriver>ws>utf-8-validate": false
|
|
87
|
+
}
|
|
82
88
|
}
|
|
83
89
|
}
|