@applitools/nml-client 1.9.5 → 1.9.6
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 +43 -0
- package/dist/server/req-broker.js +2 -2
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.9.6](https://github.com/Applitools-Dev/sdk/compare/js/nml-client@1.9.5...js/nml-client@1.9.6) (2025-07-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* add retries for ConnectEnomem errors | FLD-3015 ([#3052](https://github.com/Applitools-Dev/sdk/issues/3052)) ([92caa45](https://github.com/Applitools-Dev/sdk/commit/92caa452b4a6d6f86c903548b40f8207a0ed11d0))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* @applitools/utils bumped to 1.9.0
|
|
14
|
+
#### Features
|
|
15
|
+
|
|
16
|
+
* support https_proxy and http_proxy env variables | FLD-2702 ([#3046](https://github.com/Applitools-Dev/sdk/issues/3046)) ([0633809](https://github.com/Applitools-Dev/sdk/commit/06338099f44bfb149a5829f62c2f9b19e2392850))
|
|
17
|
+
* @applitools/driver bumped to 1.22.0
|
|
18
|
+
#### Features
|
|
19
|
+
|
|
20
|
+
* canvas webgl without preserveDrawingBuffer=1 | FLD-3144 ([#3040](https://github.com/Applitools-Dev/sdk/issues/3040)) ([f82d8f1](https://github.com/Applitools-Dev/sdk/commit/f82d8f148f913098752ec7bef8635a46b453d6fa))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
* @applitools/spec-driver-webdriver bumped to 1.3.0
|
|
25
|
+
#### Features
|
|
26
|
+
|
|
27
|
+
* canvas webgl without preserveDrawingBuffer=1 | FLD-3144 ([#3040](https://github.com/Applitools-Dev/sdk/issues/3040)) ([f82d8f1](https://github.com/Applitools-Dev/sdk/commit/f82d8f148f913098752ec7bef8635a46b453d6fa))
|
|
28
|
+
* support https_proxy and http_proxy env variables | FLD-2702 ([#3046](https://github.com/Applitools-Dev/sdk/issues/3046)) ([0633809](https://github.com/Applitools-Dev/sdk/commit/06338099f44bfb149a5829f62c2f9b19e2392850))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
* @applitools/core-base bumped to 1.25.5
|
|
33
|
+
#### Bug Fixes
|
|
34
|
+
|
|
35
|
+
* add retries for ConnectEnomem errors | FLD-3015 ([#3052](https://github.com/Applitools-Dev/sdk/issues/3052)) ([92caa45](https://github.com/Applitools-Dev/sdk/commit/92caa452b4a6d6f86c903548b40f8207a0ed11d0))
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
* @applitools/logger bumped to 2.1.5
|
|
40
|
+
|
|
41
|
+
* @applitools/req bumped to 1.7.14
|
|
42
|
+
|
|
43
|
+
* @applitools/image bumped to 1.1.21
|
|
44
|
+
|
|
45
|
+
|
|
3
46
|
## [1.9.5](https://github.com/Applitools-Dev/sdk/compare/js/nml-client@1.9.4...js/nml-client@1.9.5) (2025-06-15)
|
|
4
47
|
|
|
5
48
|
|
|
@@ -37,8 +37,8 @@ function makeReqBroker({ settings, logger }) {
|
|
|
37
37
|
connectionTimeout: 300000 /* 5min */,
|
|
38
38
|
retry: {
|
|
39
39
|
limit: 5,
|
|
40
|
-
timeout: 200,
|
|
41
|
-
codes: ['ECONNRESET', 'ECONNABORTED', 'ETIMEDOUT', 'ENOTFOUND', 'EAI_AGAIN'],
|
|
40
|
+
timeout: process.env.EYES_NETWORK_RETRY_TIMEOUT ? Number(process.env.EYES_NETWORK_RETRY_TIMEOUT) : 200,
|
|
41
|
+
codes: ['ECONNRESET', 'ECONNABORTED', 'ETIMEDOUT', 'ENOTFOUND', 'EAI_AGAIN', 'ENOMEM'],
|
|
42
42
|
},
|
|
43
43
|
hooks: [handleLogs({ logger }), handleLongRequests({ req: req_1.default, logger }), handleUnexpectedResponse()],
|
|
44
44
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/nml-client",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.6",
|
|
4
4
|
"description": "Client to integrate the SDKs to the Native Mobile Library (NML)",
|
|
5
5
|
"homepage": "https://applitools.com",
|
|
6
6
|
"bugs": {
|
|
@@ -36,13 +36,13 @@
|
|
|
36
36
|
"test": "run --top-level mocha './test/**/*.spec.ts' --parallel --jobs ${MOCHA_JOBS:-15}"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@applitools/logger": "2.1.
|
|
40
|
-
"@applitools/req": "1.7.
|
|
41
|
-
"@applitools/utils": "1.
|
|
39
|
+
"@applitools/logger": "2.1.5",
|
|
40
|
+
"@applitools/req": "1.7.14",
|
|
41
|
+
"@applitools/utils": "1.9.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@applitools/core-base": "1.25.
|
|
45
|
-
"@applitools/spec-driver-webdriver": "^1.
|
|
44
|
+
"@applitools/core-base": "1.25.5",
|
|
45
|
+
"@applitools/spec-driver-webdriver": "^1.3.0",
|
|
46
46
|
"@applitools/test-server": "^1.2.3",
|
|
47
47
|
"@applitools/test-utils": "^1.5.17",
|
|
48
48
|
"@types/node": "^12.20.55",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"webdriver": "^7.31.1"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"@applitools/core-base": "1.25.
|
|
53
|
+
"@applitools/core-base": "1.25.5"
|
|
54
54
|
},
|
|
55
55
|
"engines": {
|
|
56
56
|
"node": ">=12.13.0"
|