@applitools/ec-client 1.10.3 → 1.10.5

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,46 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.10.5](https://github.com/Applitools-Dev/sdk/compare/js/ec-client@1.10.4...js/ec-client@1.10.5) (2025-02-26)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/utils bumped to 1.7.8
9
+ #### Performance Improvements
10
+
11
+ * ufg client dedup job info elements ([#2811](https://github.com/Applitools-Dev/sdk/issues/2811)) ([c04c147](https://github.com/Applitools-Dev/sdk/commit/c04c14776736a422292ada1029820e975adc3d31))
12
+ * @applitools/logger bumped to 2.1.1
13
+
14
+ * @applitools/socket bumped to 1.2.2
15
+
16
+ * @applitools/req bumped to 1.7.8
17
+
18
+ * @applitools/image bumped to 1.1.17
19
+
20
+ * @applitools/driver bumped to 1.20.5
21
+
22
+ * @applitools/spec-driver-webdriver bumped to 1.1.26
23
+
24
+ * @applitools/tunnel-client bumped to 1.6.3
25
+
26
+ * @applitools/core-base bumped to 1.22.2
27
+
28
+
29
+ ## [1.10.4](https://github.com/Applitools-Dev/sdk/compare/js/ec-client@1.10.3...js/ec-client@1.10.4) (2025-02-05)
30
+
31
+
32
+ ### Bug Fixes
33
+
34
+ * set TLS_REJECT_UNAUTHORIZED in tunnel ([#2706](https://github.com/Applitools-Dev/sdk/issues/2706)) ([abfa821](https://github.com/Applitools-Dev/sdk/commit/abfa82151931bd11767ac1d797cee03855bde34a))
35
+
36
+
37
+ ### Dependencies
38
+
39
+ * @applitools/tunnel-client bumped to 1.6.2
40
+ #### Bug Fixes
41
+
42
+ * set TLS_REJECT_UNAUTHORIZED in tunnel ([#2706](https://github.com/Applitools-Dev/sdk/issues/2706)) ([abfa821](https://github.com/Applitools-Dev/sdk/commit/abfa82151931bd11767ac1d797cee03855bde34a))
43
+
3
44
  ## [1.10.3](https://github.com/Applitools-Dev/sdk/compare/js/ec-client@1.10.2...js/ec-client@1.10.3) (2025-01-30)
4
45
 
5
46
 
@@ -102,9 +102,12 @@ async function makeTunnelManagerServer({ settings, path, idleTimeout = 600000, /
102
102
  exports.makeTunnelManagerServer = makeTunnelManagerServer;
103
103
  async function makeTunnelManagerServerProcess(options) {
104
104
  return new Promise((resolve, reject) => {
105
+ var _a;
106
+ const nodeTlsRejectUnauthorized = (_a = process.env.NODE_TLS_REJECT_UNAUTHORIZED) !== null && _a !== void 0 ? _a : '0';
105
107
  const server = (0, child_process_1.fork)(path.resolve(__dirname, '../../dist/cli/cli.js'), [`tunnel-manager`, `--config=${JSON.stringify(options)}`], {
106
108
  stdio: ['ignore', 'ignore', 'inherit', 'ipc'],
107
109
  detached: true,
110
+ env: { ...process.env, NODE_TLS_REJECT_UNAUTHORIZED: nodeTlsRejectUnauthorized },
108
111
  });
109
112
  const timeout = setTimeout(() => {
110
113
  reject(new Error(`Server didn't respond for 10s after being started`));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/ec-client",
3
- "version": "1.10.3",
3
+ "version": "1.10.5",
4
4
  "homepage": "https://applitools.com",
5
5
  "bugs": {
6
6
  "url": "https://github.com/applitools/eyes.sdk.javascript1/issues"
@@ -52,14 +52,14 @@
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.22.1",
56
- "@applitools/driver": "1.20.4",
57
- "@applitools/logger": "2.1.0",
58
- "@applitools/req": "1.7.7",
59
- "@applitools/socket": "1.2.1",
60
- "@applitools/spec-driver-webdriver": "1.1.25",
61
- "@applitools/tunnel-client": "1.6.1",
62
- "@applitools/utils": "1.7.7",
55
+ "@applitools/core-base": "1.22.2",
56
+ "@applitools/driver": "1.20.5",
57
+ "@applitools/logger": "2.1.1",
58
+ "@applitools/req": "1.7.8",
59
+ "@applitools/socket": "1.2.2",
60
+ "@applitools/spec-driver-webdriver": "1.1.26",
61
+ "@applitools/tunnel-client": "1.6.3",
62
+ "@applitools/utils": "1.7.8",
63
63
  "abort-controller": "3.0.0",
64
64
  "webdriver": "7.31.1",
65
65
  "yargs": "^17.7.2"