@applitools/ec-client 1.6.2 → 1.7.0

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,36 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.7.0](https://github.com/applitools/eyes.sdk.javascript1/compare/js/ec-client@1.6.2...js/ec-client@1.7.0) (2023-07-13)
4
+
5
+
6
+ ### Features
7
+
8
+ * added internal function to prepare environment before running tunnels ([3d19ec3](https://github.com/applitools/eyes.sdk.javascript1/commit/3d19ec3b274702ffdf26b766b7351ec1f4b66a6d))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * @applitools/driver bumped from 1.13.0 to 1.13.1
14
+ #### Bug Fixes
15
+
16
+ * replaced NML prefixed appium env vars with APPLITOOLS prefixed ([8905b90](https://github.com/applitools/eyes.sdk.javascript1/commit/8905b90e7c4ec6e310f6e52c03bbcc7acf1ff2ab))
17
+ * @applitools/tunnel-client bumped from 1.0.2 to 1.1.0
18
+ #### Features
19
+
20
+ * added internal function to prepare environment before running tunnels ([3d19ec3](https://github.com/applitools/eyes.sdk.javascript1/commit/3d19ec3b274702ffdf26b766b7351ec1f4b66a6d))
21
+
22
+
23
+ #### Bug Fixes
24
+
25
+ * prevent tunnel binaries from overriding itself ([5609a36](https://github.com/applitools/eyes.sdk.javascript1/commit/5609a36c93622c9b8eeb4b4ab25f95907df8baa4))
26
+
27
+
28
+
29
+ * @applitools/spec-driver-webdriver bumped from 1.0.37 to 1.0.38
30
+
31
+ * @applitools/execution-grid-tunnel bumped to 2.1.8
32
+
33
+
3
34
  ## [1.6.2](https://github.com/applitools/eyes.sdk.javascript1/compare/js/ec-client@1.6.1...js/ec-client@1.6.2) (2023-07-10)
4
35
 
5
36
 
@@ -24,8 +24,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.makeStartSession = void 0;
27
- //@ts-ignore
28
- const execution_grid_tunnel_1 = require("@applitools/execution-grid-tunnel");
27
+ const tunnel_client_1 = require("@applitools/tunnel-client");
29
28
  const abort_controller_1 = require("abort-controller");
30
29
  const utils = __importStar(require("@applitools/utils"));
31
30
  const SERVER_URLS = {
@@ -73,7 +72,7 @@ function makeStartSession({ settings, req, tunnels }) {
73
72
  }
74
73
  if (options.tunnel && tunnels) {
75
74
  // TODO should be removed once tunnel spawning issue is solved
76
- await (0, execution_grid_tunnel_1.prepareEnvironment)({ egTunnelManagerUrl: session.serverUrl });
75
+ await (0, tunnel_client_1.prepareTunnelEnvironment)({ settings: { tunnelServerUrl: session.serverUrl }, logger });
77
76
  session.tunnels = await tunnels.acquire({ ...session.credentials, tunnelServerUrl: session.serverUrl });
78
77
  }
79
78
  const applitoolsCapabilities = Object.fromEntries([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/ec-client",
3
- "version": "1.6.2",
3
+ "version": "1.7.0",
4
4
  "homepage": "https://applitools.com",
5
5
  "bugs": {
6
6
  "url": "https://github.com/applitools/eyes.sdk.javascript1/issues"
@@ -53,13 +53,12 @@
53
53
  },
54
54
  "dependencies": {
55
55
  "@applitools/core-base": "1.4.0",
56
- "@applitools/driver": "1.13.0",
57
- "@applitools/execution-grid-tunnel": "2.1.7",
56
+ "@applitools/driver": "1.13.1",
58
57
  "@applitools/logger": "2.0.5",
59
58
  "@applitools/req": "1.4.0",
60
59
  "@applitools/socket": "1.1.5",
61
- "@applitools/spec-driver-webdriver": "1.0.37",
62
- "@applitools/tunnel-client": "1.0.2",
60
+ "@applitools/spec-driver-webdriver": "1.0.38",
61
+ "@applitools/tunnel-client": "1.1.0",
63
62
  "@applitools/utils": "1.5.0",
64
63
  "abort-controller": "3.0.0",
65
64
  "webdriver": "7",