@applitools/ec-client 1.9.18 → 1.10.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,57 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.10.0](https://github.com/Applitools-Dev/sdk/compare/js/ec-client@1.9.18...js/ec-client@1.10.0) (2024-12-31)
4
+
5
+
6
+ ### Features
7
+
8
+ * logger masking ([#2640](https://github.com/Applitools-Dev/sdk/issues/2640)) ([bd69d21](https://github.com/Applitools-Dev/sdk/commit/bd69d21f6341447b1acdb042f4ee1a6328d7428f))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * @applitools/utils bumped to 1.7.7
14
+ #### Bug Fixes
15
+
16
+ * shim process execution functions for browser environment ([#2698](https://github.com/Applitools-Dev/sdk/issues/2698)) ([8d77db4](https://github.com/Applitools-Dev/sdk/commit/8d77db48e1c7fd54cad92c89a819a924255e5868))
17
+ * @applitools/logger bumped to 2.1.0
18
+ #### Features
19
+
20
+ * logger masking ([#2640](https://github.com/Applitools-Dev/sdk/issues/2640)) ([bd69d21](https://github.com/Applitools-Dev/sdk/commit/bd69d21f6341447b1acdb042f4ee1a6328d7428f))
21
+
22
+
23
+
24
+ * @applitools/socket bumped to 1.2.0
25
+ #### Features
26
+
27
+ * logger masking ([#2640](https://github.com/Applitools-Dev/sdk/issues/2640)) ([bd69d21](https://github.com/Applitools-Dev/sdk/commit/bd69d21f6341447b1acdb042f4ee1a6328d7428f))
28
+
29
+
30
+
31
+ * @applitools/tunnel-client bumped to 1.6.0
32
+ #### Features
33
+
34
+ * logger masking ([#2640](https://github.com/Applitools-Dev/sdk/issues/2640)) ([bd69d21](https://github.com/Applitools-Dev/sdk/commit/bd69d21f6341447b1acdb042f4ee1a6328d7428f))
35
+
36
+
37
+
38
+ * @applitools/req bumped to 1.7.6
39
+
40
+ * @applitools/image bumped to 1.1.16
41
+
42
+ * @applitools/driver bumped to 1.20.2
43
+
44
+ * @applitools/spec-driver-webdriver bumped to 1.1.22
45
+
46
+ * @applitools/core-base bumped to 1.22.0
47
+ #### Features
48
+
49
+ * deterministic output in offline execution ([#2711](https://github.com/Applitools-Dev/sdk/issues/2711)) ([5e8c7ca](https://github.com/Applitools-Dev/sdk/commit/5e8c7ca43c98e7ba6aed0c1a66c5a60b4001aeff))
50
+ * logger masking ([#2640](https://github.com/Applitools-Dev/sdk/issues/2640)) ([bd69d21](https://github.com/Applitools-Dev/sdk/commit/bd69d21f6341447b1acdb042f4ee1a6328d7428f))
51
+
52
+
53
+
54
+
3
55
  ## [1.9.18](https://github.com/Applitools-Dev/sdk/compare/js/ec-client@1.9.17...js/ec-client@1.9.18) (2024-12-22)
4
56
 
5
57
 
@@ -65,6 +65,8 @@ function makeStartSession({ settings, req, tunnels }) {
65
65
  credentials: { eyesServerUrl: options.eyesServerUrl, apiKey: options.apiKey },
66
66
  options,
67
67
  };
68
+ logger.mask(session.credentials.apiKey);
69
+ logger.mask(session.credentials.eyesServerUrl);
68
70
  if (options.region) {
69
71
  if (SERVERS[options.region])
70
72
  session.ecServerUrl = SERVERS[options.region].url;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/ec-client",
3
- "version": "1.9.18",
3
+ "version": "1.10.0",
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.21.1",
56
- "@applitools/driver": "1.20.1",
57
- "@applitools/logger": "2.0.20",
58
- "@applitools/req": "1.7.5",
59
- "@applitools/socket": "1.1.20",
60
- "@applitools/spec-driver-webdriver": "1.1.21",
61
- "@applitools/tunnel-client": "1.5.11",
62
- "@applitools/utils": "1.7.6",
55
+ "@applitools/core-base": "1.22.0",
56
+ "@applitools/driver": "1.20.2",
57
+ "@applitools/logger": "2.1.0",
58
+ "@applitools/req": "1.7.6",
59
+ "@applitools/socket": "1.2.0",
60
+ "@applitools/spec-driver-webdriver": "1.1.22",
61
+ "@applitools/tunnel-client": "1.6.0",
62
+ "@applitools/utils": "1.7.7",
63
63
  "abort-controller": "3.0.0",
64
64
  "webdriver": "7.31.1",
65
65
  "yargs": "^17.7.2"