@applitools/ec-client 1.9.18 → 1.10.1
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 +66 -0
- package/dist/commands/start-session.js +2 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,71 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.10.1](https://github.com/Applitools-Dev/sdk/compare/js/ec-client@1.10.0...js/ec-client@1.10.1) (2025-01-13)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* @applitools/snippets bumped to 2.6.4
|
|
9
|
+
#### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* remove side-eyes and fix code scanning issues ([#2712](https://github.com/Applitools-Dev/sdk/issues/2712)) ([cda98e4](https://github.com/Applitools-Dev/sdk/commit/cda98e4748c73cd97c11f646a2b5e26ff9416892))
|
|
12
|
+
* @applitools/driver bumped to 1.20.3
|
|
13
|
+
|
|
14
|
+
* @applitools/spec-driver-webdriver bumped to 1.1.23
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [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)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* logger masking ([#2640](https://github.com/Applitools-Dev/sdk/issues/2640)) ([bd69d21](https://github.com/Applitools-Dev/sdk/commit/bd69d21f6341447b1acdb042f4ee1a6328d7428f))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Dependencies
|
|
26
|
+
|
|
27
|
+
* @applitools/utils bumped to 1.7.7
|
|
28
|
+
#### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* 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))
|
|
31
|
+
* @applitools/logger bumped to 2.1.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/socket bumped to 1.2.0
|
|
39
|
+
#### Features
|
|
40
|
+
|
|
41
|
+
* logger masking ([#2640](https://github.com/Applitools-Dev/sdk/issues/2640)) ([bd69d21](https://github.com/Applitools-Dev/sdk/commit/bd69d21f6341447b1acdb042f4ee1a6328d7428f))
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
* @applitools/tunnel-client bumped to 1.6.0
|
|
46
|
+
#### Features
|
|
47
|
+
|
|
48
|
+
* logger masking ([#2640](https://github.com/Applitools-Dev/sdk/issues/2640)) ([bd69d21](https://github.com/Applitools-Dev/sdk/commit/bd69d21f6341447b1acdb042f4ee1a6328d7428f))
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
* @applitools/req bumped to 1.7.6
|
|
53
|
+
|
|
54
|
+
* @applitools/image bumped to 1.1.16
|
|
55
|
+
|
|
56
|
+
* @applitools/driver bumped to 1.20.2
|
|
57
|
+
|
|
58
|
+
* @applitools/spec-driver-webdriver bumped to 1.1.22
|
|
59
|
+
|
|
60
|
+
* @applitools/core-base bumped to 1.22.0
|
|
61
|
+
#### Features
|
|
62
|
+
|
|
63
|
+
* deterministic output in offline execution ([#2711](https://github.com/Applitools-Dev/sdk/issues/2711)) ([5e8c7ca](https://github.com/Applitools-Dev/sdk/commit/5e8c7ca43c98e7ba6aed0c1a66c5a60b4001aeff))
|
|
64
|
+
* logger masking ([#2640](https://github.com/Applitools-Dev/sdk/issues/2640)) ([bd69d21](https://github.com/Applitools-Dev/sdk/commit/bd69d21f6341447b1acdb042f4ee1a6328d7428f))
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
|
3
69
|
## [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
70
|
|
|
5
71
|
|
|
@@ -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.
|
|
3
|
+
"version": "1.10.1",
|
|
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.
|
|
56
|
-
"@applitools/driver": "1.20.
|
|
57
|
-
"@applitools/logger": "2.0
|
|
58
|
-
"@applitools/req": "1.7.
|
|
59
|
-
"@applitools/socket": "1.
|
|
60
|
-
"@applitools/spec-driver-webdriver": "1.1.
|
|
61
|
-
"@applitools/tunnel-client": "1.
|
|
62
|
-
"@applitools/utils": "1.7.
|
|
55
|
+
"@applitools/core-base": "1.22.0",
|
|
56
|
+
"@applitools/driver": "1.20.3",
|
|
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.23",
|
|
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"
|