@applitools/nml-client 1.5.4 → 1.5.6
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 +52 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,57 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.5.6](https://github.com/applitools/eyes.sdk.javascript1/compare/js/nml-client@1.5.5...js/nml-client@1.5.6) (2023-08-03)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* @applitools/driver bumped to 1.13.4
|
|
9
|
+
#### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* extract device orientation from a browser for web executions ([d8d4e91](https://github.com/applitools/eyes.sdk.javascript1/commit/d8d4e919965fb9105915e762c397ec2cc57a8a71))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
* @applitools/snippets bumped to 2.4.22
|
|
16
|
+
#### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* improve orientation extraction for ios devices ([378d989](https://github.com/applitools/eyes.sdk.javascript1/commit/378d9894e4fbc7247087ccb8c46266dc4737e2e5))
|
|
19
|
+
* @applitools/spec-driver-webdriverio bumped to 1.5.10
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## [1.5.5](https://github.com/applitools/eyes.sdk.javascript1/compare/js/nml-client@1.5.4...js/nml-client@1.5.5) (2023-07-21)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* fix workspace dependencies ([2a3856f](https://github.com/applitools/eyes.sdk.javascript1/commit/2a3856f3ce3bcf1407f59c676653b6f218556760))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Dependencies
|
|
31
|
+
|
|
32
|
+
* @applitools/logger bumped to 2.0.7
|
|
33
|
+
#### Bug Fixes
|
|
34
|
+
|
|
35
|
+
* fix workspace dependencies ([2a3856f](https://github.com/applitools/eyes.sdk.javascript1/commit/2a3856f3ce3bcf1407f59c676653b6f218556760))
|
|
36
|
+
* @applitools/req bumped to 1.5.2
|
|
37
|
+
#### Bug Fixes
|
|
38
|
+
|
|
39
|
+
* fix workspace dependencies ([2a3856f](https://github.com/applitools/eyes.sdk.javascript1/commit/2a3856f3ce3bcf1407f59c676653b6f218556760))
|
|
40
|
+
* @applitools/spec-driver-webdriverio bumped to 1.5.9
|
|
41
|
+
#### Bug Fixes
|
|
42
|
+
|
|
43
|
+
* fix workspace dependencies ([2a3856f](https://github.com/applitools/eyes.sdk.javascript1/commit/2a3856f3ce3bcf1407f59c676653b6f218556760))
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
* @applitools/driver bumped to 1.13.3
|
|
48
|
+
#### Bug Fixes
|
|
49
|
+
|
|
50
|
+
* fix workspace dependencies ([2a3856f](https://github.com/applitools/eyes.sdk.javascript1/commit/2a3856f3ce3bcf1407f59c676653b6f218556760))
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
3
55
|
## [1.5.4](https://github.com/applitools/eyes.sdk.javascript1/compare/js/nml-client@1.5.3...js/nml-client@1.5.4) (2023-07-21)
|
|
4
56
|
|
|
5
57
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/nml-client",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.6",
|
|
4
4
|
"description": "Client to integrate the SDKs to the Native Mobile Library (NML)",
|
|
5
5
|
"homepage": "https://applitools.com",
|
|
6
6
|
"bugs": {
|
|
@@ -36,12 +36,12 @@
|
|
|
36
36
|
"test": "run --top-level mocha './test/**/*.spec.ts' --parallel --jobs ${MOCHA_JOBS:-15}"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@applitools/logger": "2.0.
|
|
40
|
-
"@applitools/req": "1.5.
|
|
41
|
-
"@applitools/utils": ""
|
|
39
|
+
"@applitools/logger": "2.0.7",
|
|
40
|
+
"@applitools/req": "1.5.2",
|
|
41
|
+
"@applitools/utils": "1.5.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@applitools/spec-driver-webdriverio": "^1.5.
|
|
44
|
+
"@applitools/spec-driver-webdriverio": "^1.5.10",
|
|
45
45
|
"@applitools/test-server": "^1.2.2",
|
|
46
46
|
"@applitools/test-utils": "^1.5.17",
|
|
47
47
|
"@types/node": "^12.20.55",
|