@applitools/nml-client 1.9.5 → 1.9.7

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,5 +1,76 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.9.7](https://github.com/Applitools-Dev/sdk/compare/js/nml-client@1.9.6...js/nml-client@1.9.7) (2025-07-15)
4
+
5
+
6
+ ### Performance Improvements
7
+
8
+ * yarn dedup packages ([#3061](https://github.com/Applitools-Dev/sdk/issues/3061)) ([2fd8951](https://github.com/Applitools-Dev/sdk/commit/2fd8951d6ce9c18a5dbdb648adaa2c454eae9b4e))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * @applitools/req bumped to 1.7.15
14
+ #### Performance Improvements
15
+
16
+ * yarn dedup packages ([#3061](https://github.com/Applitools-Dev/sdk/issues/3061)) ([2fd8951](https://github.com/Applitools-Dev/sdk/commit/2fd8951d6ce9c18a5dbdb648adaa2c454eae9b4e))
17
+ * @applitools/driver bumped to 1.22.1
18
+ #### Performance Improvements
19
+
20
+ * yarn dedup packages ([#3061](https://github.com/Applitools-Dev/sdk/issues/3061)) ([2fd8951](https://github.com/Applitools-Dev/sdk/commit/2fd8951d6ce9c18a5dbdb648adaa2c454eae9b4e))
21
+ * @applitools/spec-driver-webdriver bumped to 1.3.1
22
+
23
+ * @applitools/core-base bumped to 1.25.6
24
+ #### Performance Improvements
25
+
26
+ * yarn dedup packages ([#3061](https://github.com/Applitools-Dev/sdk/issues/3061)) ([2fd8951](https://github.com/Applitools-Dev/sdk/commit/2fd8951d6ce9c18a5dbdb648adaa2c454eae9b4e))
27
+
28
+
29
+
30
+
31
+ ## [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)
32
+
33
+
34
+ ### Bug Fixes
35
+
36
+ * 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))
37
+
38
+
39
+ ### Dependencies
40
+
41
+ * @applitools/utils bumped to 1.9.0
42
+ #### Features
43
+
44
+ * 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))
45
+ * @applitools/driver bumped to 1.22.0
46
+ #### Features
47
+
48
+ * 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))
49
+
50
+
51
+
52
+ * @applitools/spec-driver-webdriver bumped to 1.3.0
53
+ #### Features
54
+
55
+ * 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))
56
+ * 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))
57
+
58
+
59
+
60
+ * @applitools/core-base bumped to 1.25.5
61
+ #### Bug Fixes
62
+
63
+ * 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))
64
+
65
+
66
+
67
+ * @applitools/logger bumped to 2.1.5
68
+
69
+ * @applitools/req bumped to 1.7.14
70
+
71
+ * @applitools/image bumped to 1.1.21
72
+
73
+
3
74
  ## [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
75
 
5
76
 
@@ -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.5",
3
+ "version": "1.9.7",
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.4",
40
- "@applitools/req": "1.7.13",
41
- "@applitools/utils": "1.8.2"
39
+ "@applitools/logger": "2.1.5",
40
+ "@applitools/req": "1.7.15",
41
+ "@applitools/utils": "1.9.0"
42
42
  },
43
43
  "devDependencies": {
44
- "@applitools/core-base": "1.25.4",
45
- "@applitools/spec-driver-webdriver": "^1.2.6",
44
+ "@applitools/core-base": "1.25.6",
45
+ "@applitools/spec-driver-webdriver": "^1.3.1",
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.4"
53
+ "@applitools/core-base": "1.25.6"
54
54
  },
55
55
  "engines": {
56
56
  "node": ">=12.13.0"