appium-uiautomator2-driver 2.29.1 → 2.29.3
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 +14 -0
- package/README.md +2 -2
- package/npm-shrinkwrap.json +126 -196
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [2.29.3](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.2...v2.29.3) (2023-07-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Miscellaneous Chores
|
|
5
|
+
|
|
6
|
+
* Bump chromedriver ([4ec1624](https://github.com/appium/appium-uiautomator2-driver/commit/4ec162400ac02a9ed4720608f0d11d239e9aa9d7))
|
|
7
|
+
|
|
8
|
+
## [2.29.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.1...v2.29.2) (2023-07-03)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Miscellaneous Chores
|
|
12
|
+
|
|
13
|
+
* Bump server version ([583630f](https://github.com/appium/appium-uiautomator2-driver/commit/583630f8d8f9b3f0259a362b50a04313e966631a))
|
|
14
|
+
|
|
1
15
|
## [2.29.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.0...v2.29.1) (2023-06-29)
|
|
2
16
|
|
|
3
17
|
|
package/README.md
CHANGED
|
@@ -89,8 +89,8 @@ appium:enforceAppInstall | If set to `true` then the application under test is a
|
|
|
89
89
|
Capability Name | Description
|
|
90
90
|
--- | ---
|
|
91
91
|
appium:localeScript | Canonical name of the locale to be set for the app under test, for example `Hans` in `zh-Hans-CN`. See https://developer.android.com/reference/java/util/Locale.html for more details.
|
|
92
|
-
appium:language | Name of the language to extract application strings for. Strings are extracted for the current system language by default. Also sets the language for the app under test. See https://developer.android.com/reference/java/util/Locale.html for more details. If `language` is provided then `locale` is also required to be set. The combination of both capability values must be a known locale and should be present in the list of available locales returned by the ICU's [getAvailableULocales()](https://unicode-org.github.io/icu/userguide/locale/#usage-retrieving-locales) method. The full list of supported locales is also dumped into the logcat output on failure. Example: en
|
|
93
|
-
appium:locale | Sets the locale for the app under test. See https://developer.android.com/reference/java/util/Locale.html for more details. If `locale` is provided then `language` is also required to be set. The combination of both capability values must be a known locale and should be present in the list of available locales returned by the ICU's [getAvailableULocales()](https://unicode-org.github.io/icu/userguide/locale/#usage-retrieving-locales) method. The full list of supported locales is also dumped into the logcat output on failure. Example:
|
|
92
|
+
appium:language | Name of the language to extract application strings for. Strings are extracted for the current system language by default. Also sets the language for the app under test. See https://developer.android.com/reference/java/util/Locale.html for more details. If `language` is provided then `locale` is also required to be set. The combination of both capability values must be a known locale and should be present in the list of available locales returned by the ICU's [getAvailableULocales()](https://unicode-org.github.io/icu/userguide/locale/#usage-retrieving-locales) method. The full list of supported locales is also dumped into the logcat output on failure. Example: `en`, `ja`
|
|
93
|
+
appium:locale | Sets the locale for the app under test. See https://developer.android.com/reference/java/util/Locale.html for more details. If `locale` is provided then `language` is also required to be set. The combination of both capability values must be a known locale and should be present in the list of available locales returned by the ICU's [getAvailableULocales()](https://unicode-org.github.io/icu/userguide/locale/#usage-retrieving-locales) method. The full list of supported locales is also dumped into the logcat output on failure. Example: `US`, `JP`
|
|
94
94
|
|
|
95
95
|
### ADB
|
|
96
96
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appium-uiautomator2-driver",
|
|
3
|
-
"version": "2.29.
|
|
3
|
+
"version": "2.29.3",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "appium-uiautomator2-driver",
|
|
9
|
-
"version": "2.29.
|
|
9
|
+
"version": "2.29.3",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@babel/runtime": "^7.0.0",
|
|
13
13
|
"appium-adb": "^9.13.1",
|
|
14
14
|
"appium-android-driver": "^5.14.0",
|
|
15
|
-
"appium-chromedriver": "^5.
|
|
16
|
-
"appium-uiautomator2-server": "^5.12.
|
|
15
|
+
"appium-chromedriver": "^5.6.1",
|
|
16
|
+
"appium-uiautomator2-server": "^5.12.2",
|
|
17
17
|
"asyncbox": "^2.3.1",
|
|
18
18
|
"axios": "^1.x",
|
|
19
19
|
"bluebird": "^3.5.1",
|
|
@@ -62,11 +62,11 @@
|
|
|
62
62
|
}
|
|
63
63
|
},
|
|
64
64
|
"node_modules/@appium/base-driver": {
|
|
65
|
-
"version": "9.3.
|
|
65
|
+
"version": "9.3.16",
|
|
66
66
|
"license": "Apache-2.0",
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@appium/support": "^4.1.
|
|
69
|
-
"@appium/types": "^0.13.
|
|
68
|
+
"@appium/support": "^4.1.3",
|
|
69
|
+
"@appium/types": "^0.13.2",
|
|
70
70
|
"@colors/colors": "1.5.0",
|
|
71
71
|
"@types/async-lock": "1.4.0",
|
|
72
72
|
"@types/bluebird": "3.5.38",
|
|
@@ -104,12 +104,12 @@
|
|
|
104
104
|
}
|
|
105
105
|
},
|
|
106
106
|
"node_modules/@appium/base-plugin": {
|
|
107
|
-
"version": "2.2.
|
|
107
|
+
"version": "2.2.16",
|
|
108
108
|
"extraneous": true,
|
|
109
109
|
"license": "Apache-2.0",
|
|
110
110
|
"dependencies": {
|
|
111
|
-
"@appium/base-driver": "^9.3.
|
|
112
|
-
"@appium/support": "^4.1.
|
|
111
|
+
"@appium/base-driver": "^9.3.16",
|
|
112
|
+
"@appium/support": "^4.1.3"
|
|
113
113
|
},
|
|
114
114
|
"engines": {
|
|
115
115
|
"node": "^14.17.0 || ^16.13.0 || >=18.0.0",
|
|
@@ -117,11 +117,11 @@
|
|
|
117
117
|
}
|
|
118
118
|
},
|
|
119
119
|
"node_modules/@appium/docutils": {
|
|
120
|
-
"version": "0.4.
|
|
120
|
+
"version": "0.4.5",
|
|
121
121
|
"extraneous": true,
|
|
122
122
|
"license": "Apache-2.0",
|
|
123
123
|
"dependencies": {
|
|
124
|
-
"@appium/support": "^4.1.
|
|
124
|
+
"@appium/support": "^4.1.3",
|
|
125
125
|
"@appium/tsconfig": "^0.3.0",
|
|
126
126
|
"@appium/typedoc-plugin-appium": "^0.6.5",
|
|
127
127
|
"@sliphua/lilconfig-ts-loader": "3.2.2",
|
|
@@ -137,9 +137,9 @@
|
|
|
137
137
|
"log-symbols": "4.1.0",
|
|
138
138
|
"pkg-dir": "5.0.0",
|
|
139
139
|
"read-pkg": "5.2.0",
|
|
140
|
-
"semver": "7.5.
|
|
140
|
+
"semver": "7.5.3",
|
|
141
141
|
"source-map-support": "0.5.21",
|
|
142
|
-
"teen_process": "2.0.
|
|
142
|
+
"teen_process": "2.0.4",
|
|
143
143
|
"type-fest": "3.11.1",
|
|
144
144
|
"typedoc": "0.23.28",
|
|
145
145
|
"typedoc-plugin-markdown": "3.14.0",
|
|
@@ -157,17 +157,6 @@
|
|
|
157
157
|
"npm": ">=8"
|
|
158
158
|
}
|
|
159
159
|
},
|
|
160
|
-
"node_modules/@appium/docutils/node_modules/@babel/runtime": {
|
|
161
|
-
"version": "7.19.0",
|
|
162
|
-
"extraneous": true,
|
|
163
|
-
"license": "MIT",
|
|
164
|
-
"dependencies": {
|
|
165
|
-
"regenerator-runtime": "^0.13.4"
|
|
166
|
-
},
|
|
167
|
-
"engines": {
|
|
168
|
-
"node": ">=6.9.0"
|
|
169
|
-
}
|
|
170
|
-
},
|
|
171
160
|
"node_modules/@appium/docutils/node_modules/ansi-styles": {
|
|
172
161
|
"version": "4.3.0",
|
|
173
162
|
"extraneous": true,
|
|
@@ -213,11 +202,6 @@
|
|
|
213
202
|
"extraneous": true,
|
|
214
203
|
"license": "MIT"
|
|
215
204
|
},
|
|
216
|
-
"node_modules/@appium/docutils/node_modules/shell-quote": {
|
|
217
|
-
"version": "1.7.3",
|
|
218
|
-
"extraneous": true,
|
|
219
|
-
"license": "MIT"
|
|
220
|
-
},
|
|
221
205
|
"node_modules/@appium/docutils/node_modules/supports-color": {
|
|
222
206
|
"version": "7.2.0",
|
|
223
207
|
"extraneous": true,
|
|
@@ -229,39 +213,8 @@
|
|
|
229
213
|
"node": ">=8"
|
|
230
214
|
}
|
|
231
215
|
},
|
|
232
|
-
"node_modules/@appium/docutils/node_modules/teen_process": {
|
|
233
|
-
"version": "2.0.2",
|
|
234
|
-
"extraneous": true,
|
|
235
|
-
"license": "Apache-2.0",
|
|
236
|
-
"dependencies": {
|
|
237
|
-
"@babel/runtime": "7.19.0",
|
|
238
|
-
"bluebird": "3.7.2",
|
|
239
|
-
"lodash": "4.17.21",
|
|
240
|
-
"shell-quote": "1.7.3",
|
|
241
|
-
"source-map-support": "0.5.21",
|
|
242
|
-
"which": "2.0.2"
|
|
243
|
-
},
|
|
244
|
-
"engines": {
|
|
245
|
-
"node": ">=14",
|
|
246
|
-
"npm": ">=6"
|
|
247
|
-
}
|
|
248
|
-
},
|
|
249
|
-
"node_modules/@appium/docutils/node_modules/which": {
|
|
250
|
-
"version": "2.0.2",
|
|
251
|
-
"extraneous": true,
|
|
252
|
-
"license": "ISC",
|
|
253
|
-
"dependencies": {
|
|
254
|
-
"isexe": "^2.0.0"
|
|
255
|
-
},
|
|
256
|
-
"bin": {
|
|
257
|
-
"node-which": "bin/node-which"
|
|
258
|
-
},
|
|
259
|
-
"engines": {
|
|
260
|
-
"node": ">= 8"
|
|
261
|
-
}
|
|
262
|
-
},
|
|
263
216
|
"node_modules/@appium/schema": {
|
|
264
|
-
"version": "0.3.
|
|
217
|
+
"version": "0.3.1",
|
|
265
218
|
"license": "Apache-2.0",
|
|
266
219
|
"dependencies": {
|
|
267
220
|
"@types/json-schema": "7.0.12",
|
|
@@ -274,11 +227,11 @@
|
|
|
274
227
|
}
|
|
275
228
|
},
|
|
276
229
|
"node_modules/@appium/support": {
|
|
277
|
-
"version": "4.1.
|
|
230
|
+
"version": "4.1.3",
|
|
278
231
|
"license": "Apache-2.0",
|
|
279
232
|
"dependencies": {
|
|
280
233
|
"@appium/tsconfig": "^0.3.0",
|
|
281
|
-
"@appium/types": "^0.13.
|
|
234
|
+
"@appium/types": "^0.13.2",
|
|
282
235
|
"@colors/colors": "1.5.0",
|
|
283
236
|
"@types/archiver": "5.3.2",
|
|
284
237
|
"@types/base64-stream": "1.0.2",
|
|
@@ -322,11 +275,11 @@
|
|
|
322
275
|
"read-pkg": "5.2.0",
|
|
323
276
|
"resolve-from": "5.0.0",
|
|
324
277
|
"sanitize-filename": "1.6.3",
|
|
325
|
-
"semver": "7.5.
|
|
278
|
+
"semver": "7.5.3",
|
|
326
279
|
"shell-quote": "1.8.1",
|
|
327
280
|
"source-map-support": "0.5.21",
|
|
328
281
|
"supports-color": "8.1.1",
|
|
329
|
-
"teen_process": "2.0.
|
|
282
|
+
"teen_process": "2.0.4",
|
|
330
283
|
"type-fest": "3.11.1",
|
|
331
284
|
"uuid": "9.0.0",
|
|
332
285
|
"which": "3.0.1",
|
|
@@ -340,47 +293,37 @@
|
|
|
340
293
|
"sharp": "0.32.1"
|
|
341
294
|
}
|
|
342
295
|
},
|
|
343
|
-
"node_modules/@appium/support/node_modules
|
|
344
|
-
"version": "
|
|
345
|
-
"
|
|
346
|
-
"dependencies": {
|
|
347
|
-
"regenerator-runtime": "^0.13.4"
|
|
348
|
-
},
|
|
349
|
-
"engines": {
|
|
350
|
-
"node": ">=6.9.0"
|
|
351
|
-
}
|
|
352
|
-
},
|
|
353
|
-
"node_modules/@appium/support/node_modules/teen_process": {
|
|
354
|
-
"version": "2.0.2",
|
|
296
|
+
"node_modules/@appium/support/node_modules/sharp": {
|
|
297
|
+
"version": "0.32.1",
|
|
298
|
+
"hasInstallScript": true,
|
|
355
299
|
"license": "Apache-2.0",
|
|
300
|
+
"optional": true,
|
|
356
301
|
"dependencies": {
|
|
357
|
-
"
|
|
358
|
-
"
|
|
359
|
-
"
|
|
360
|
-
"
|
|
361
|
-
"
|
|
362
|
-
"
|
|
302
|
+
"color": "^4.2.3",
|
|
303
|
+
"detect-libc": "^2.0.1",
|
|
304
|
+
"node-addon-api": "^6.1.0",
|
|
305
|
+
"prebuild-install": "^7.1.1",
|
|
306
|
+
"semver": "^7.5.0",
|
|
307
|
+
"simple-get": "^4.0.1",
|
|
308
|
+
"tar-fs": "^2.1.1",
|
|
309
|
+
"tunnel-agent": "^0.6.0"
|
|
363
310
|
},
|
|
364
311
|
"engines": {
|
|
365
|
-
"node": ">=14"
|
|
366
|
-
|
|
312
|
+
"node": ">=14.15.0"
|
|
313
|
+
},
|
|
314
|
+
"funding": {
|
|
315
|
+
"url": "https://opencollective.com/libvips"
|
|
367
316
|
}
|
|
368
317
|
},
|
|
369
|
-
"node_modules/@appium/support/node_modules/
|
|
370
|
-
"version": "1.
|
|
371
|
-
"license": "MIT"
|
|
372
|
-
|
|
373
|
-
"node_modules/@appium/support/node_modules/teen_process/node_modules/which": {
|
|
374
|
-
"version": "2.0.2",
|
|
375
|
-
"license": "ISC",
|
|
318
|
+
"node_modules/@appium/support/node_modules/tar-fs": {
|
|
319
|
+
"version": "2.1.1",
|
|
320
|
+
"license": "MIT",
|
|
321
|
+
"optional": true,
|
|
376
322
|
"dependencies": {
|
|
377
|
-
"
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
"
|
|
381
|
-
},
|
|
382
|
-
"engines": {
|
|
383
|
-
"node": ">= 8"
|
|
323
|
+
"chownr": "^1.1.1",
|
|
324
|
+
"mkdirp-classic": "^0.5.2",
|
|
325
|
+
"pump": "^3.0.0",
|
|
326
|
+
"tar-stream": "^2.1.4"
|
|
384
327
|
}
|
|
385
328
|
},
|
|
386
329
|
"node_modules/@appium/tsconfig": {
|
|
@@ -417,10 +360,10 @@
|
|
|
417
360
|
}
|
|
418
361
|
},
|
|
419
362
|
"node_modules/@appium/types": {
|
|
420
|
-
"version": "0.13.
|
|
363
|
+
"version": "0.13.2",
|
|
421
364
|
"license": "Apache-2.0",
|
|
422
365
|
"dependencies": {
|
|
423
|
-
"@appium/schema": "^0.3.
|
|
366
|
+
"@appium/schema": "^0.3.1",
|
|
424
367
|
"@appium/tsconfig": "^0.3.0",
|
|
425
368
|
"@types/express": "4.17.17",
|
|
426
369
|
"@types/npmlog": "4.1.4",
|
|
@@ -462,7 +405,7 @@
|
|
|
462
405
|
}
|
|
463
406
|
},
|
|
464
407
|
"node_modules/@babel/runtime": {
|
|
465
|
-
"version": "7.22.
|
|
408
|
+
"version": "7.22.6",
|
|
466
409
|
"license": "MIT",
|
|
467
410
|
"dependencies": {
|
|
468
411
|
"regenerator-runtime": "^0.13.11"
|
|
@@ -716,7 +659,7 @@
|
|
|
716
659
|
}
|
|
717
660
|
},
|
|
718
661
|
"node_modules/@types/node": {
|
|
719
|
-
"version": "20.
|
|
662
|
+
"version": "20.4.5",
|
|
720
663
|
"license": "MIT"
|
|
721
664
|
},
|
|
722
665
|
"node_modules/@types/normalize-package-data": {
|
|
@@ -815,7 +758,7 @@
|
|
|
815
758
|
}
|
|
816
759
|
},
|
|
817
760
|
"node_modules/@xmldom/xmldom": {
|
|
818
|
-
"version": "0.8.
|
|
761
|
+
"version": "0.8.10",
|
|
819
762
|
"license": "MIT",
|
|
820
763
|
"engines": {
|
|
821
764
|
"node": ">=10.0.0"
|
|
@@ -900,7 +843,7 @@
|
|
|
900
843
|
}
|
|
901
844
|
},
|
|
902
845
|
"node_modules/ansi-sequence-parser": {
|
|
903
|
-
"version": "1.1.
|
|
846
|
+
"version": "1.1.1",
|
|
904
847
|
"extraneous": true,
|
|
905
848
|
"license": "MIT"
|
|
906
849
|
},
|
|
@@ -915,7 +858,7 @@
|
|
|
915
858
|
}
|
|
916
859
|
},
|
|
917
860
|
"node_modules/appium-adb": {
|
|
918
|
-
"version": "9.
|
|
861
|
+
"version": "9.14.2",
|
|
919
862
|
"license": "Apache-2.0",
|
|
920
863
|
"dependencies": {
|
|
921
864
|
"@appium/support": "^4.0.0",
|
|
@@ -981,7 +924,7 @@
|
|
|
981
924
|
}
|
|
982
925
|
},
|
|
983
926
|
"node_modules/appium-chromedriver": {
|
|
984
|
-
"version": "5.
|
|
927
|
+
"version": "5.6.1",
|
|
985
928
|
"hasInstallScript": true,
|
|
986
929
|
"license": "Apache-2.0",
|
|
987
930
|
"dependencies": {
|
|
@@ -989,10 +932,11 @@
|
|
|
989
932
|
"@appium/support": "^4.0.0",
|
|
990
933
|
"@babel/runtime": "^7.0.0",
|
|
991
934
|
"@xmldom/xmldom": "^0.x",
|
|
935
|
+
"appium-adb": "^9.14.1",
|
|
992
936
|
"asyncbox": "^2.0.2",
|
|
993
937
|
"axios": "^1.x",
|
|
994
938
|
"bluebird": "^3.5.1",
|
|
995
|
-
"compare-versions": "^
|
|
939
|
+
"compare-versions": "^6.0.0",
|
|
996
940
|
"fancy-log": "^2.0.0",
|
|
997
941
|
"lodash": "^4.17.4",
|
|
998
942
|
"semver": "^7.0.0",
|
|
@@ -1006,7 +950,7 @@
|
|
|
1006
950
|
}
|
|
1007
951
|
},
|
|
1008
952
|
"node_modules/appium-uiautomator2-server": {
|
|
1009
|
-
"version": "5.12.
|
|
953
|
+
"version": "5.12.2",
|
|
1010
954
|
"license": "Apache-2.0",
|
|
1011
955
|
"engines": {
|
|
1012
956
|
"node": ">=14",
|
|
@@ -1070,6 +1014,10 @@
|
|
|
1070
1014
|
"url": "https://github.com/sponsors/isaacs"
|
|
1071
1015
|
}
|
|
1072
1016
|
},
|
|
1017
|
+
"node_modules/archiver-utils/node_modules/isarray": {
|
|
1018
|
+
"version": "1.0.0",
|
|
1019
|
+
"license": "MIT"
|
|
1020
|
+
},
|
|
1073
1021
|
"node_modules/archiver-utils/node_modules/readable-stream": {
|
|
1074
1022
|
"version": "2.3.8",
|
|
1075
1023
|
"license": "MIT",
|
|
@@ -1095,7 +1043,7 @@
|
|
|
1095
1043
|
}
|
|
1096
1044
|
},
|
|
1097
1045
|
"node_modules/are-we-there-yet": {
|
|
1098
|
-
"version": "4.0.
|
|
1046
|
+
"version": "4.0.1",
|
|
1099
1047
|
"license": "ISC",
|
|
1100
1048
|
"dependencies": {
|
|
1101
1049
|
"delegates": "^1.0.0",
|
|
@@ -1128,13 +1076,14 @@
|
|
|
1128
1076
|
}
|
|
1129
1077
|
},
|
|
1130
1078
|
"node_modules/are-we-there-yet/node_modules/readable-stream": {
|
|
1131
|
-
"version": "4.4.
|
|
1079
|
+
"version": "4.4.2",
|
|
1132
1080
|
"license": "MIT",
|
|
1133
1081
|
"dependencies": {
|
|
1134
1082
|
"abort-controller": "^3.0.0",
|
|
1135
1083
|
"buffer": "^6.0.3",
|
|
1136
1084
|
"events": "^3.3.0",
|
|
1137
|
-
"process": "^0.11.10"
|
|
1085
|
+
"process": "^0.11.10",
|
|
1086
|
+
"string_decoder": "^1.3.0"
|
|
1138
1087
|
},
|
|
1139
1088
|
"engines": {
|
|
1140
1089
|
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
@@ -1389,8 +1338,8 @@
|
|
|
1389
1338
|
},
|
|
1390
1339
|
"node_modules/chownr": {
|
|
1391
1340
|
"version": "1.1.4",
|
|
1392
|
-
"
|
|
1393
|
-
"
|
|
1341
|
+
"license": "ISC",
|
|
1342
|
+
"optional": true
|
|
1394
1343
|
},
|
|
1395
1344
|
"node_modules/cli-cursor": {
|
|
1396
1345
|
"version": "3.1.0",
|
|
@@ -1463,8 +1412,8 @@
|
|
|
1463
1412
|
},
|
|
1464
1413
|
"node_modules/color": {
|
|
1465
1414
|
"version": "4.2.3",
|
|
1466
|
-
"devOptional": true,
|
|
1467
1415
|
"license": "MIT",
|
|
1416
|
+
"optional": true,
|
|
1468
1417
|
"dependencies": {
|
|
1469
1418
|
"color-convert": "^2.0.1",
|
|
1470
1419
|
"color-string": "^1.9.0"
|
|
@@ -1486,8 +1435,8 @@
|
|
|
1486
1435
|
},
|
|
1487
1436
|
"node_modules/color-string": {
|
|
1488
1437
|
"version": "1.9.1",
|
|
1489
|
-
"devOptional": true,
|
|
1490
1438
|
"license": "MIT",
|
|
1439
|
+
"optional": true,
|
|
1491
1440
|
"dependencies": {
|
|
1492
1441
|
"color-name": "^1.0.0",
|
|
1493
1442
|
"simple-swizzle": "^0.2.2"
|
|
@@ -1502,8 +1451,8 @@
|
|
|
1502
1451
|
},
|
|
1503
1452
|
"node_modules/color/node_modules/color-convert": {
|
|
1504
1453
|
"version": "2.0.1",
|
|
1505
|
-
"devOptional": true,
|
|
1506
1454
|
"license": "MIT",
|
|
1455
|
+
"optional": true,
|
|
1507
1456
|
"dependencies": {
|
|
1508
1457
|
"color-name": "~1.1.4"
|
|
1509
1458
|
},
|
|
@@ -1513,8 +1462,8 @@
|
|
|
1513
1462
|
},
|
|
1514
1463
|
"node_modules/color/node_modules/color-name": {
|
|
1515
1464
|
"version": "1.1.4",
|
|
1516
|
-
"
|
|
1517
|
-
"
|
|
1465
|
+
"license": "MIT",
|
|
1466
|
+
"optional": true
|
|
1518
1467
|
},
|
|
1519
1468
|
"node_modules/colorspace": {
|
|
1520
1469
|
"version": "1.1.4",
|
|
@@ -1545,7 +1494,7 @@
|
|
|
1545
1494
|
}
|
|
1546
1495
|
},
|
|
1547
1496
|
"node_modules/compare-versions": {
|
|
1548
|
-
"version": "
|
|
1497
|
+
"version": "6.0.0",
|
|
1549
1498
|
"license": "MIT"
|
|
1550
1499
|
},
|
|
1551
1500
|
"node_modules/compress-commons": {
|
|
@@ -1692,8 +1641,8 @@
|
|
|
1692
1641
|
},
|
|
1693
1642
|
"node_modules/decompress-response": {
|
|
1694
1643
|
"version": "6.0.0",
|
|
1695
|
-
"devOptional": true,
|
|
1696
1644
|
"license": "MIT",
|
|
1645
|
+
"optional": true,
|
|
1697
1646
|
"dependencies": {
|
|
1698
1647
|
"mimic-response": "^3.1.0"
|
|
1699
1648
|
},
|
|
@@ -1706,8 +1655,8 @@
|
|
|
1706
1655
|
},
|
|
1707
1656
|
"node_modules/deep-extend": {
|
|
1708
1657
|
"version": "0.6.0",
|
|
1709
|
-
"devOptional": true,
|
|
1710
1658
|
"license": "MIT",
|
|
1659
|
+
"optional": true,
|
|
1711
1660
|
"engines": {
|
|
1712
1661
|
"node": ">=4.0.0"
|
|
1713
1662
|
}
|
|
@@ -1750,9 +1699,9 @@
|
|
|
1750
1699
|
}
|
|
1751
1700
|
},
|
|
1752
1701
|
"node_modules/detect-libc": {
|
|
1753
|
-
"version": "2.0.
|
|
1754
|
-
"devOptional": true,
|
|
1702
|
+
"version": "2.0.2",
|
|
1755
1703
|
"license": "Apache-2.0",
|
|
1704
|
+
"optional": true,
|
|
1756
1705
|
"engines": {
|
|
1757
1706
|
"node": ">=8"
|
|
1758
1707
|
}
|
|
@@ -1845,8 +1794,8 @@
|
|
|
1845
1794
|
},
|
|
1846
1795
|
"node_modules/expand-template": {
|
|
1847
1796
|
"version": "2.0.3",
|
|
1848
|
-
"devOptional": true,
|
|
1849
1797
|
"license": "(MIT OR WTFPL)",
|
|
1798
|
+
"optional": true,
|
|
1850
1799
|
"engines": {
|
|
1851
1800
|
"node": ">=6"
|
|
1852
1801
|
}
|
|
@@ -2136,7 +2085,7 @@
|
|
|
2136
2085
|
}
|
|
2137
2086
|
},
|
|
2138
2087
|
"node_modules/gauge/node_modules/signal-exit": {
|
|
2139
|
-
"version": "4.0
|
|
2088
|
+
"version": "4.1.0",
|
|
2140
2089
|
"license": "ISC",
|
|
2141
2090
|
"engines": {
|
|
2142
2091
|
"node": ">=14"
|
|
@@ -2190,8 +2139,8 @@
|
|
|
2190
2139
|
},
|
|
2191
2140
|
"node_modules/github-from-package": {
|
|
2192
2141
|
"version": "0.0.0",
|
|
2193
|
-
"
|
|
2194
|
-
"
|
|
2142
|
+
"license": "MIT",
|
|
2143
|
+
"optional": true
|
|
2195
2144
|
},
|
|
2196
2145
|
"node_modules/glob": {
|
|
2197
2146
|
"version": "8.1.0",
|
|
@@ -2362,7 +2311,7 @@
|
|
|
2362
2311
|
}
|
|
2363
2312
|
},
|
|
2364
2313
|
"node_modules/io.appium.settings": {
|
|
2365
|
-
"version": "5.0
|
|
2314
|
+
"version": "5.1.0",
|
|
2366
2315
|
"license": "Apache-2.0",
|
|
2367
2316
|
"engines": {
|
|
2368
2317
|
"node": ">=14",
|
|
@@ -2426,10 +2375,6 @@
|
|
|
2426
2375
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
2427
2376
|
}
|
|
2428
2377
|
},
|
|
2429
|
-
"node_modules/isarray": {
|
|
2430
|
-
"version": "1.0.0",
|
|
2431
|
-
"license": "MIT"
|
|
2432
|
-
},
|
|
2433
2378
|
"node_modules/isexe": {
|
|
2434
2379
|
"version": "2.0.0",
|
|
2435
2380
|
"license": "ISC"
|
|
@@ -2511,6 +2456,10 @@
|
|
|
2511
2456
|
"node": ">= 0.6.3"
|
|
2512
2457
|
}
|
|
2513
2458
|
},
|
|
2459
|
+
"node_modules/lazystream/node_modules/isarray": {
|
|
2460
|
+
"version": "1.0.0",
|
|
2461
|
+
"license": "MIT"
|
|
2462
|
+
},
|
|
2514
2463
|
"node_modules/lazystream/node_modules/readable-stream": {
|
|
2515
2464
|
"version": "2.3.8",
|
|
2516
2465
|
"license": "MIT",
|
|
@@ -2768,8 +2717,8 @@
|
|
|
2768
2717
|
},
|
|
2769
2718
|
"node_modules/mimic-response": {
|
|
2770
2719
|
"version": "3.1.0",
|
|
2771
|
-
"devOptional": true,
|
|
2772
2720
|
"license": "MIT",
|
|
2721
|
+
"optional": true,
|
|
2773
2722
|
"engines": {
|
|
2774
2723
|
"node": ">=10"
|
|
2775
2724
|
},
|
|
@@ -2806,8 +2755,8 @@
|
|
|
2806
2755
|
},
|
|
2807
2756
|
"node_modules/mkdirp-classic": {
|
|
2808
2757
|
"version": "0.5.3",
|
|
2809
|
-
"
|
|
2810
|
-
"
|
|
2758
|
+
"license": "MIT",
|
|
2759
|
+
"optional": true
|
|
2811
2760
|
},
|
|
2812
2761
|
"node_modules/moment": {
|
|
2813
2762
|
"version": "2.29.4",
|
|
@@ -2903,8 +2852,8 @@
|
|
|
2903
2852
|
},
|
|
2904
2853
|
"node_modules/napi-build-utils": {
|
|
2905
2854
|
"version": "1.0.2",
|
|
2906
|
-
"
|
|
2907
|
-
"
|
|
2855
|
+
"license": "MIT",
|
|
2856
|
+
"optional": true
|
|
2908
2857
|
},
|
|
2909
2858
|
"node_modules/ncp": {
|
|
2910
2859
|
"version": "2.0.0",
|
|
@@ -2927,8 +2876,8 @@
|
|
|
2927
2876
|
},
|
|
2928
2877
|
"node_modules/node-abi": {
|
|
2929
2878
|
"version": "3.45.0",
|
|
2930
|
-
"devOptional": true,
|
|
2931
2879
|
"license": "MIT",
|
|
2880
|
+
"optional": true,
|
|
2932
2881
|
"dependencies": {
|
|
2933
2882
|
"semver": "^7.3.5"
|
|
2934
2883
|
},
|
|
@@ -2938,8 +2887,8 @@
|
|
|
2938
2887
|
},
|
|
2939
2888
|
"node_modules/node-addon-api": {
|
|
2940
2889
|
"version": "6.1.0",
|
|
2941
|
-
"
|
|
2942
|
-
"
|
|
2890
|
+
"license": "MIT",
|
|
2891
|
+
"optional": true
|
|
2943
2892
|
},
|
|
2944
2893
|
"node_modules/normalize-package-data": {
|
|
2945
2894
|
"version": "2.5.0",
|
|
@@ -2952,7 +2901,7 @@
|
|
|
2952
2901
|
}
|
|
2953
2902
|
},
|
|
2954
2903
|
"node_modules/normalize-package-data/node_modules/semver": {
|
|
2955
|
-
"version": "5.7.
|
|
2904
|
+
"version": "5.7.2",
|
|
2956
2905
|
"license": "ISC",
|
|
2957
2906
|
"bin": {
|
|
2958
2907
|
"semver": "bin/semver"
|
|
@@ -3296,8 +3245,8 @@
|
|
|
3296
3245
|
},
|
|
3297
3246
|
"node_modules/prebuild-install": {
|
|
3298
3247
|
"version": "7.1.1",
|
|
3299
|
-
"devOptional": true,
|
|
3300
3248
|
"license": "MIT",
|
|
3249
|
+
"optional": true,
|
|
3301
3250
|
"dependencies": {
|
|
3302
3251
|
"detect-libc": "^2.0.0",
|
|
3303
3252
|
"expand-template": "^2.0.3",
|
|
@@ -3319,6 +3268,17 @@
|
|
|
3319
3268
|
"node": ">=10"
|
|
3320
3269
|
}
|
|
3321
3270
|
},
|
|
3271
|
+
"node_modules/prebuild-install/node_modules/tar-fs": {
|
|
3272
|
+
"version": "2.1.1",
|
|
3273
|
+
"license": "MIT",
|
|
3274
|
+
"optional": true,
|
|
3275
|
+
"dependencies": {
|
|
3276
|
+
"chownr": "^1.1.1",
|
|
3277
|
+
"mkdirp-classic": "^0.5.2",
|
|
3278
|
+
"pump": "^3.0.0",
|
|
3279
|
+
"tar-stream": "^2.1.4"
|
|
3280
|
+
}
|
|
3281
|
+
},
|
|
3322
3282
|
"node_modules/process": {
|
|
3323
3283
|
"version": "0.11.10",
|
|
3324
3284
|
"license": "MIT",
|
|
@@ -3347,8 +3307,8 @@
|
|
|
3347
3307
|
},
|
|
3348
3308
|
"node_modules/pump": {
|
|
3349
3309
|
"version": "3.0.0",
|
|
3350
|
-
"devOptional": true,
|
|
3351
3310
|
"license": "MIT",
|
|
3311
|
+
"optional": true,
|
|
3352
3312
|
"dependencies": {
|
|
3353
3313
|
"end-of-stream": "^1.1.0",
|
|
3354
3314
|
"once": "^1.3.1"
|
|
@@ -3397,8 +3357,8 @@
|
|
|
3397
3357
|
},
|
|
3398
3358
|
"node_modules/rc": {
|
|
3399
3359
|
"version": "1.2.8",
|
|
3400
|
-
"devOptional": true,
|
|
3401
3360
|
"license": "(BSD-2-Clause OR MIT OR Apache-2.0)",
|
|
3361
|
+
"optional": true,
|
|
3402
3362
|
"dependencies": {
|
|
3403
3363
|
"deep-extend": "^0.6.0",
|
|
3404
3364
|
"ini": "~1.3.0",
|
|
@@ -3411,13 +3371,13 @@
|
|
|
3411
3371
|
},
|
|
3412
3372
|
"node_modules/rc/node_modules/ini": {
|
|
3413
3373
|
"version": "1.3.8",
|
|
3414
|
-
"
|
|
3415
|
-
"
|
|
3374
|
+
"license": "ISC",
|
|
3375
|
+
"optional": true
|
|
3416
3376
|
},
|
|
3417
3377
|
"node_modules/rc/node_modules/strip-json-comments": {
|
|
3418
3378
|
"version": "2.0.1",
|
|
3419
|
-
"devOptional": true,
|
|
3420
3379
|
"license": "MIT",
|
|
3380
|
+
"optional": true,
|
|
3421
3381
|
"engines": {
|
|
3422
3382
|
"node": ">=0.10.0"
|
|
3423
3383
|
}
|
|
@@ -3499,10 +3459,10 @@
|
|
|
3499
3459
|
}
|
|
3500
3460
|
},
|
|
3501
3461
|
"node_modules/resolve": {
|
|
3502
|
-
"version": "1.22.
|
|
3462
|
+
"version": "1.22.3",
|
|
3503
3463
|
"license": "MIT",
|
|
3504
3464
|
"dependencies": {
|
|
3505
|
-
"is-core-module": "^2.
|
|
3465
|
+
"is-core-module": "^2.12.0",
|
|
3506
3466
|
"path-parse": "^1.0.7",
|
|
3507
3467
|
"supports-preserve-symlinks-flag": "^1.0.0"
|
|
3508
3468
|
},
|
|
@@ -3570,7 +3530,7 @@
|
|
|
3570
3530
|
}
|
|
3571
3531
|
},
|
|
3572
3532
|
"node_modules/semver": {
|
|
3573
|
-
"version": "7.5.
|
|
3533
|
+
"version": "7.5.3",
|
|
3574
3534
|
"license": "ISC",
|
|
3575
3535
|
"dependencies": {
|
|
3576
3536
|
"lru-cache": "^6.0.0"
|
|
@@ -3701,28 +3661,6 @@
|
|
|
3701
3661
|
"node": ">=4.0"
|
|
3702
3662
|
}
|
|
3703
3663
|
},
|
|
3704
|
-
"node_modules/sharp": {
|
|
3705
|
-
"version": "0.32.1",
|
|
3706
|
-
"devOptional": true,
|
|
3707
|
-
"hasInstallScript": true,
|
|
3708
|
-
"license": "Apache-2.0",
|
|
3709
|
-
"dependencies": {
|
|
3710
|
-
"color": "^4.2.3",
|
|
3711
|
-
"detect-libc": "^2.0.1",
|
|
3712
|
-
"node-addon-api": "^6.1.0",
|
|
3713
|
-
"prebuild-install": "^7.1.1",
|
|
3714
|
-
"semver": "^7.5.0",
|
|
3715
|
-
"simple-get": "^4.0.1",
|
|
3716
|
-
"tar-fs": "^2.1.1",
|
|
3717
|
-
"tunnel-agent": "^0.6.0"
|
|
3718
|
-
},
|
|
3719
|
-
"engines": {
|
|
3720
|
-
"node": ">=14.15.0"
|
|
3721
|
-
},
|
|
3722
|
-
"funding": {
|
|
3723
|
-
"url": "https://opencollective.com/libvips"
|
|
3724
|
-
}
|
|
3725
|
-
},
|
|
3726
3664
|
"node_modules/shebang-command": {
|
|
3727
3665
|
"version": "2.0.0",
|
|
3728
3666
|
"extraneous": true,
|
|
@@ -3778,7 +3716,6 @@
|
|
|
3778
3716
|
},
|
|
3779
3717
|
"node_modules/simple-concat": {
|
|
3780
3718
|
"version": "1.0.1",
|
|
3781
|
-
"devOptional": true,
|
|
3782
3719
|
"funding": [
|
|
3783
3720
|
{
|
|
3784
3721
|
"type": "github",
|
|
@@ -3793,11 +3730,11 @@
|
|
|
3793
3730
|
"url": "https://feross.org/support"
|
|
3794
3731
|
}
|
|
3795
3732
|
],
|
|
3796
|
-
"license": "MIT"
|
|
3733
|
+
"license": "MIT",
|
|
3734
|
+
"optional": true
|
|
3797
3735
|
},
|
|
3798
3736
|
"node_modules/simple-get": {
|
|
3799
3737
|
"version": "4.0.1",
|
|
3800
|
-
"devOptional": true,
|
|
3801
3738
|
"funding": [
|
|
3802
3739
|
{
|
|
3803
3740
|
"type": "github",
|
|
@@ -3813,6 +3750,7 @@
|
|
|
3813
3750
|
}
|
|
3814
3751
|
],
|
|
3815
3752
|
"license": "MIT",
|
|
3753
|
+
"optional": true,
|
|
3816
3754
|
"dependencies": {
|
|
3817
3755
|
"decompress-response": "^6.0.0",
|
|
3818
3756
|
"once": "^1.3.1",
|
|
@@ -3821,16 +3759,16 @@
|
|
|
3821
3759
|
},
|
|
3822
3760
|
"node_modules/simple-swizzle": {
|
|
3823
3761
|
"version": "0.2.2",
|
|
3824
|
-
"devOptional": true,
|
|
3825
3762
|
"license": "MIT",
|
|
3763
|
+
"optional": true,
|
|
3826
3764
|
"dependencies": {
|
|
3827
3765
|
"is-arrayish": "^0.3.1"
|
|
3828
3766
|
}
|
|
3829
3767
|
},
|
|
3830
3768
|
"node_modules/simple-swizzle/node_modules/is-arrayish": {
|
|
3831
3769
|
"version": "0.3.2",
|
|
3832
|
-
"
|
|
3833
|
-
"
|
|
3770
|
+
"license": "MIT",
|
|
3771
|
+
"optional": true
|
|
3834
3772
|
},
|
|
3835
3773
|
"node_modules/source-map": {
|
|
3836
3774
|
"version": "0.6.1",
|
|
@@ -3941,17 +3879,6 @@
|
|
|
3941
3879
|
"url": "https://github.com/sponsors/ljharb"
|
|
3942
3880
|
}
|
|
3943
3881
|
},
|
|
3944
|
-
"node_modules/tar-fs": {
|
|
3945
|
-
"version": "2.1.1",
|
|
3946
|
-
"devOptional": true,
|
|
3947
|
-
"license": "MIT",
|
|
3948
|
-
"dependencies": {
|
|
3949
|
-
"chownr": "^1.1.1",
|
|
3950
|
-
"mkdirp-classic": "^0.5.2",
|
|
3951
|
-
"pump": "^3.0.0",
|
|
3952
|
-
"tar-stream": "^2.1.4"
|
|
3953
|
-
}
|
|
3954
|
-
},
|
|
3955
3882
|
"node_modules/tar-stream": {
|
|
3956
3883
|
"version": "2.2.0",
|
|
3957
3884
|
"license": "MIT",
|
|
@@ -3997,9 +3924,12 @@
|
|
|
3997
3924
|
}
|
|
3998
3925
|
},
|
|
3999
3926
|
"node_modules/triple-beam": {
|
|
4000
|
-
"version": "1.
|
|
3927
|
+
"version": "1.4.1",
|
|
4001
3928
|
"extraneous": true,
|
|
4002
|
-
"license": "MIT"
|
|
3929
|
+
"license": "MIT",
|
|
3930
|
+
"engines": {
|
|
3931
|
+
"node": ">= 14.0.0"
|
|
3932
|
+
}
|
|
4003
3933
|
},
|
|
4004
3934
|
"node_modules/truncate-utf8-bytes": {
|
|
4005
3935
|
"version": "1.0.2",
|
|
@@ -4042,14 +3972,14 @@
|
|
|
4042
3972
|
}
|
|
4043
3973
|
},
|
|
4044
3974
|
"node_modules/tslib": {
|
|
4045
|
-
"version": "2.6.
|
|
3975
|
+
"version": "2.6.1",
|
|
4046
3976
|
"extraneous": true,
|
|
4047
3977
|
"license": "0BSD"
|
|
4048
3978
|
},
|
|
4049
3979
|
"node_modules/tunnel-agent": {
|
|
4050
3980
|
"version": "0.6.0",
|
|
4051
|
-
"devOptional": true,
|
|
4052
3981
|
"license": "Apache-2.0",
|
|
3982
|
+
"optional": true,
|
|
4053
3983
|
"dependencies": {
|
|
4054
3984
|
"safe-buffer": "^5.0.1"
|
|
4055
3985
|
},
|
|
@@ -4447,7 +4377,7 @@
|
|
|
4447
4377
|
}
|
|
4448
4378
|
},
|
|
4449
4379
|
"node_modules/xpath": {
|
|
4450
|
-
"version": "0.0.
|
|
4380
|
+
"version": "0.0.33",
|
|
4451
4381
|
"license": "MIT",
|
|
4452
4382
|
"engines": {
|
|
4453
4383
|
"node": ">=0.6.0"
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"automated testing",
|
|
8
8
|
"android"
|
|
9
9
|
],
|
|
10
|
-
"version": "2.29.
|
|
10
|
+
"version": "2.29.3",
|
|
11
11
|
"author": "Appium Contributors",
|
|
12
12
|
"license": "Apache-2.0",
|
|
13
13
|
"repository": {
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
"@babel/runtime": "^7.0.0",
|
|
60
60
|
"appium-adb": "^9.13.1",
|
|
61
61
|
"appium-android-driver": "^5.14.0",
|
|
62
|
-
"appium-chromedriver": "^5.
|
|
63
|
-
"appium-uiautomator2-server": "^5.12.
|
|
62
|
+
"appium-chromedriver": "^5.6.1",
|
|
63
|
+
"appium-uiautomator2-server": "^5.12.2",
|
|
64
64
|
"asyncbox": "^2.3.1",
|
|
65
65
|
"axios": "^1.x",
|
|
66
66
|
"bluebird": "^3.5.1",
|