@applitools/nml-client 1.10.0 → 1.11.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 +61 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,66 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.11.0](https://github.com/Applitools-Dev/sdk/compare/js/nml-client@1.10.0...js/nml-client@1.11.0) (2025-07-30)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* release java ([7bc39e6](https://github.com/Applitools-Dev/sdk/commit/7bc39e679eab27a19322ca4b121177da7437c106))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* @applitools/utils bumped to 1.10.0
|
|
14
|
+
#### Features
|
|
15
|
+
|
|
16
|
+
* release java ([7bc39e6](https://github.com/Applitools-Dev/sdk/commit/7bc39e679eab27a19322ca4b121177da7437c106))
|
|
17
|
+
* @applitools/logger bumped to 2.2.0
|
|
18
|
+
#### Features
|
|
19
|
+
|
|
20
|
+
* release java ([7bc39e6](https://github.com/Applitools-Dev/sdk/commit/7bc39e679eab27a19322ca4b121177da7437c106))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
* @applitools/req bumped to 1.8.0
|
|
25
|
+
#### Features
|
|
26
|
+
|
|
27
|
+
* release java ([7bc39e6](https://github.com/Applitools-Dev/sdk/commit/7bc39e679eab27a19322ca4b121177da7437c106))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
* @applitools/image bumped to 1.2.0
|
|
32
|
+
#### Features
|
|
33
|
+
|
|
34
|
+
* release java ([7bc39e6](https://github.com/Applitools-Dev/sdk/commit/7bc39e679eab27a19322ca4b121177da7437c106))
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
* @applitools/snippets bumped to 2.7.0
|
|
39
|
+
#### Features
|
|
40
|
+
|
|
41
|
+
* release java ([7bc39e6](https://github.com/Applitools-Dev/sdk/commit/7bc39e679eab27a19322ca4b121177da7437c106))
|
|
42
|
+
* @applitools/driver bumped to 1.23.0
|
|
43
|
+
#### Features
|
|
44
|
+
|
|
45
|
+
* release java ([7bc39e6](https://github.com/Applitools-Dev/sdk/commit/7bc39e679eab27a19322ca4b121177da7437c106))
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
* @applitools/spec-driver-webdriver bumped to 1.4.0
|
|
50
|
+
#### Features
|
|
51
|
+
|
|
52
|
+
* release java ([7bc39e6](https://github.com/Applitools-Dev/sdk/commit/7bc39e679eab27a19322ca4b121177da7437c106))
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
* @applitools/core-base bumped to 1.27.0
|
|
57
|
+
#### Features
|
|
58
|
+
|
|
59
|
+
* release java ([7bc39e6](https://github.com/Applitools-Dev/sdk/commit/7bc39e679eab27a19322ca4b121177da7437c106))
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
3
64
|
## [1.10.0](https://github.com/Applitools-Dev/sdk/compare/js/nml-client@1.9.7...js/nml-client@1.10.0) (2025-07-23)
|
|
4
65
|
|
|
5
66
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/nml-client",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.0",
|
|
4
4
|
"description": "Client to integrate the SDKs to the Native Mobile Library (NML)",
|
|
5
5
|
"homepage": "https://applitools.com",
|
|
6
6
|
"bugs": {
|
|
@@ -36,13 +36,13 @@
|
|
|
36
36
|
"test": "run --top-level mocha './test/**/*.spec.ts' --parallel --jobs ${MOCHA_JOBS:-15}"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@applitools/logger": "2.
|
|
40
|
-
"@applitools/req": "1.
|
|
41
|
-
"@applitools/utils": "1.
|
|
39
|
+
"@applitools/logger": "2.2.0",
|
|
40
|
+
"@applitools/req": "1.8.0",
|
|
41
|
+
"@applitools/utils": "1.10.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@applitools/core-base": "1.
|
|
45
|
-
"@applitools/spec-driver-webdriver": "^1.
|
|
44
|
+
"@applitools/core-base": "1.27.0",
|
|
45
|
+
"@applitools/spec-driver-webdriver": "^1.4.0",
|
|
46
46
|
"@applitools/test-server": "^1.2.3",
|
|
47
47
|
"@applitools/test-utils": "^1.5.17",
|
|
48
48
|
"@types/node": "^12.20.55",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"webdriver": "^7.31.1"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"@applitools/core-base": "1.
|
|
53
|
+
"@applitools/core-base": "1.27.0"
|
|
54
54
|
},
|
|
55
55
|
"engines": {
|
|
56
56
|
"node": ">=12.13.0"
|