@applitools/ec-client 1.12.18 → 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 +22 -0
- package/dist/commands/start-session.js +0 -4
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
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
|
+
|
|
3
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)
|
|
4
26
|
|
|
5
27
|
|
|
@@ -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.
|
|
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,7 +52,7 @@
|
|
|
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.
|
|
55
|
+
"@applitools/core-base": "1.31.3",
|
|
56
56
|
"@applitools/driver": "1.25.1",
|
|
57
57
|
"@applitools/logger": "2.2.8",
|
|
58
58
|
"@applitools/req": "1.8.8",
|
|
@@ -83,7 +83,8 @@
|
|
|
83
83
|
"lavamoat": {
|
|
84
84
|
"allowScripts": {
|
|
85
85
|
"selenium-webdriver>ws>bufferutil": false,
|
|
86
|
-
"selenium-webdriver>ws>utf-8-validate": false
|
|
86
|
+
"selenium-webdriver>ws>utf-8-validate": false,
|
|
87
|
+
"@applitools/core-base>@applitools/image>sharp": false
|
|
87
88
|
}
|
|
88
89
|
}
|
|
89
90
|
}
|