@applitools/ec-client 1.12.17 → 1.12.19

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,67 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.12.19](https://github.com/Applitools-Dev/sdk/compare/js/ec-client@1.12.18...js/ec-client@1.12.19) (2026-03-01)
4
+
5
+
6
+ ### Performance Improvements
7
+
8
+ * use sharp to accelerate png performance in all js packages ([#3547](https://github.com/Applitools-Dev/sdk/issues/3547)) ([6e3c7b9](https://github.com/Applitools-Dev/sdk/commit/6e3c7b9e34815f470032ece52a161001592ad1b1))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * @applitools/image bumped to 1.2.7
14
+ #### Performance Improvements
15
+
16
+ * use sharp to accelerate png performance in all js packages ([#3547](https://github.com/Applitools-Dev/sdk/issues/3547)) ([6e3c7b9](https://github.com/Applitools-Dev/sdk/commit/6e3c7b9e34815f470032ece52a161001592ad1b1))
17
+ * @applitools/core-base bumped to 1.31.3
18
+ #### Performance Improvements
19
+
20
+ * use sharp to accelerate png performance in all js packages ([#3547](https://github.com/Applitools-Dev/sdk/issues/3547)) ([6e3c7b9](https://github.com/Applitools-Dev/sdk/commit/6e3c7b9e34815f470032ece52a161001592ad1b1))
21
+
22
+
23
+
24
+
25
+ ## [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)
26
+
27
+
28
+ ### Dependencies
29
+
30
+ * @applitools/logger bumped to 2.2.8
31
+ #### Bug Fixes
32
+
33
+ * 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))
34
+
35
+
36
+ #### Performance Improvements
37
+
38
+ * 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))
39
+ * @applitools/tunnel-client bumped to 1.11.6
40
+ #### Bug Fixes
41
+
42
+ * tunnel client binary ([#3535](https://github.com/Applitools-Dev/sdk/issues/3535)) ([5c4752e](https://github.com/Applitools-Dev/sdk/commit/5c4752e3dd9cc42052d23793284dc6a0cd8e3b72))
43
+
44
+
45
+
46
+ * @applitools/socket bumped to 1.3.9
47
+
48
+ * @applitools/req bumped to 1.8.8
49
+
50
+ * @applitools/driver bumped to 1.25.1
51
+
52
+ * @applitools/spec-driver-webdriver bumped to 1.5.6
53
+
54
+ * @applitools/test-server bumped to 1.4.0
55
+ #### Features
56
+
57
+ * make eyes-browser truly browser-importable ([#3512](https://github.com/Applitools-Dev/sdk/issues/3512)) ([9574a2f](https://github.com/Applitools-Dev/sdk/commit/9574a2fa45ec80466dfe93744c8a736f40fb51c3))
58
+ * 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))
59
+
60
+
61
+
62
+ * @applitools/core-base bumped to 1.31.2
63
+
64
+
3
65
  ## [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
66
 
5
67
 
@@ -26,7 +26,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.makeStartSession = void 0;
27
27
  const abort_controller_1 = require("abort-controller");
28
28
  const buffer_1 = require("buffer");
29
- const tunnel_client_1 = require("@applitools/tunnel-client");
30
29
  const utils = __importStar(require("@applitools/utils"));
31
30
  const SERVERS = {
32
31
  'us-west': { url: 'https://exec-wus.applitools.com', regionName: 'us-west' },
@@ -74,9 +73,6 @@ function makeStartSession({ settings, req, tunnels }) {
74
73
  throw new Error(`Failed to create session in unknown region ${options.region}`);
75
74
  }
76
75
  if (options.tunnel && tunnels) {
77
- if (utils.general.getEnvValue('EC_TUNNEL_USE_FRP', 'boolean')) {
78
- await (0, tunnel_client_1.prepareTunnelEnvironment)({ settings: { tunnelServerUrl: session.ecServerUrl }, logger });
79
- }
80
76
  const region = options.region ? SERVERS[options.region].regionName : undefined;
81
77
  session.tunnels = await tunnels.acquire({ ...session.credentials, region });
82
78
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/ec-client",
3
- "version": "1.12.17",
3
+ "version": "1.12.19",
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.1",
56
- "@applitools/driver": "1.25.0",
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.5",
61
- "@applitools/tunnel-client": "1.11.5",
55
+ "@applitools/core-base": "1.31.3",
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.3.5",
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,12 @@
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
+ "@applitools/core-base>@applitools/image>sharp": false
88
+ }
82
89
  }
83
90
  }