@applitools/ec-client 1.12.12 → 1.12.14
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 +65 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,70 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.12.14](https://github.com/Applitools-Dev/sdk/compare/js/ec-client@1.12.13...js/ec-client@1.12.14) (2025-12-01)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* @applitools/utils bumped to 1.14.1
|
|
9
|
+
#### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* setup script compatibility with ESM | AD-11756 ([#3363](https://github.com/Applitools-Dev/sdk/issues/3363)) ([d1222f4](https://github.com/Applitools-Dev/sdk/commit/d1222f40a74ab62782bebeeb0cf899aac3f3d3b6))
|
|
12
|
+
* @applitools/logger bumped to 2.2.7
|
|
13
|
+
|
|
14
|
+
* @applitools/socket bumped to 1.3.8
|
|
15
|
+
|
|
16
|
+
* @applitools/req bumped to 1.8.7
|
|
17
|
+
|
|
18
|
+
* @applitools/image bumped to 1.2.6
|
|
19
|
+
|
|
20
|
+
* @applitools/driver bumped to 1.24.3
|
|
21
|
+
|
|
22
|
+
* @applitools/spec-driver-webdriver bumped to 1.5.3
|
|
23
|
+
|
|
24
|
+
* @applitools/tunnel-client bumped to 1.11.5
|
|
25
|
+
|
|
26
|
+
* @applitools/core-base bumped to 1.30.1
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
## [1.12.13](https://github.com/Applitools-Dev/sdk/compare/js/ec-client@1.12.12...js/ec-client@1.12.13) (2025-11-19)
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### Dependencies
|
|
33
|
+
|
|
34
|
+
* @applitools/utils bumped to 1.14.0
|
|
35
|
+
#### Features
|
|
36
|
+
|
|
37
|
+
* disable heartbeats whenever no tests are running ([#3344](https://github.com/Applitools-Dev/sdk/issues/3344)) ([b66d28a](https://github.com/Applitools-Dev/sdk/commit/b66d28a7a382f26b68de70c8633c027cb4bdf225))
|
|
38
|
+
* @applitools/logger bumped to 2.2.6
|
|
39
|
+
|
|
40
|
+
* @applitools/socket bumped to 1.3.7
|
|
41
|
+
|
|
42
|
+
* @applitools/req bumped to 1.8.6
|
|
43
|
+
|
|
44
|
+
* @applitools/image bumped to 1.2.5
|
|
45
|
+
|
|
46
|
+
* @applitools/driver bumped to 1.24.2
|
|
47
|
+
|
|
48
|
+
* @applitools/spec-driver-webdriver bumped to 1.5.2
|
|
49
|
+
|
|
50
|
+
* @applitools/tunnel-client bumped to 1.11.4
|
|
51
|
+
|
|
52
|
+
* @applitools/core-base bumped to 1.30.0
|
|
53
|
+
#### Features
|
|
54
|
+
|
|
55
|
+
* disable heartbeats whenever no tests are running ([#3344](https://github.com/Applitools-Dev/sdk/issues/3344)) ([b66d28a](https://github.com/Applitools-Dev/sdk/commit/b66d28a7a382f26b68de70c8633c027cb4bdf225))
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
#### Bug Fixes
|
|
59
|
+
|
|
60
|
+
* fails to create test with coded dynamic region | AD-11074 ([#3361](https://github.com/Applitools-Dev/sdk/issues/3361)) ([7f8c8cd](https://github.com/Applitools-Dev/sdk/commit/7f8c8cd85c0cd2e5861cd33fbc29c465903258d5))
|
|
61
|
+
* resolved an issue with `matchTimeout` changing `retryTimeout` ([f656f59](https://github.com/Applitools-Dev/sdk/commit/f656f59dbfb7c41fdb569fbc56d2e9daecefb854))
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
* @applitools/test-server bumped to 1.3.5
|
|
66
|
+
|
|
67
|
+
|
|
3
68
|
## [1.12.12](https://github.com/Applitools-Dev/sdk/compare/js/ec-client@1.12.11...js/ec-client@1.12.12) (2025-11-09)
|
|
4
69
|
|
|
5
70
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/ec-client",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.14",
|
|
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.
|
|
56
|
-
"@applitools/driver": "1.24.
|
|
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.
|
|
62
|
-
"@applitools/utils": "1.
|
|
55
|
+
"@applitools/core-base": "1.30.1",
|
|
56
|
+
"@applitools/driver": "1.24.3",
|
|
57
|
+
"@applitools/logger": "2.2.7",
|
|
58
|
+
"@applitools/req": "1.8.7",
|
|
59
|
+
"@applitools/socket": "1.3.8",
|
|
60
|
+
"@applitools/spec-driver-webdriver": "1.5.3",
|
|
61
|
+
"@applitools/tunnel-client": "1.11.5",
|
|
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.3.
|
|
68
|
+
"@applitools/test-server": "^1.3.5",
|
|
69
69
|
"@applitools/test-utils": "^1.5.17",
|
|
70
70
|
"@types/node": "^12.20.55",
|
|
71
71
|
"@types/node-fetch": "^2.6.1",
|