appium-uiautomator2-driver 2.8.0 → 2.9.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/README.md +7 -3
- package/npm-shrinkwrap.json +134 -238
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -720,14 +720,19 @@ True is the app has been found on the device and successfully removed. Otherwise
|
|
|
720
720
|
|
|
721
721
|
### mobile: terminateApp
|
|
722
722
|
|
|
723
|
-
Terminates the app
|
|
723
|
+
Terminates the app and waits until the app is terminated up to the given timeout
|
|
724
|
+
by checking the app state to ensure if the app process is actually stopped.
|
|
725
|
+
|
|
726
|
+
The app state check can be skipped if the given timeout is lower or equal to zero since UIAutomator driver 2.9.0.
|
|
727
|
+
The skip helps when you want to terminate the app process but do not want to check the process existence
|
|
728
|
+
because the app under test may, for example, restart it automatically.
|
|
724
729
|
|
|
725
730
|
#### Arguments
|
|
726
731
|
|
|
727
732
|
Name | Type | Required | Description | Example
|
|
728
733
|
--- | --- | --- | --- | ---
|
|
729
734
|
appId | string | yes | The identifier of the application package to be terminated | `my.app.id`
|
|
730
|
-
timeout | number | no | The count of milliseconds to wait until the app is terminated. 500ms by default. | 1500
|
|
735
|
+
timeout | number | no | The count of milliseconds to wait until the app is terminated. 500ms by default. | 1500, 0
|
|
731
736
|
|
|
732
737
|
#### Returned Result
|
|
733
738
|
|
|
@@ -1308,4 +1313,3 @@ Functional tests:
|
|
|
1308
1313
|
```
|
|
1309
1314
|
npm run e2e-test
|
|
1310
1315
|
```
|
|
1311
|
-
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appium-uiautomator2-driver",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.9.0",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "appium-uiautomator2-driver",
|
|
9
|
-
"version": "2.
|
|
9
|
+
"version": "2.9.0",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@babel/runtime": "^7.0.0",
|
|
13
13
|
"appium-adb": "^9.10.9",
|
|
14
|
-
"appium-android-driver": "^5.
|
|
14
|
+
"appium-android-driver": "^5.6.0",
|
|
15
15
|
"appium-chromedriver": "^5.2.1",
|
|
16
16
|
"appium-uiautomator2-server": "^5.7.0",
|
|
17
17
|
"asyncbox": "^2.3.1",
|
|
@@ -60,25 +60,24 @@
|
|
|
60
60
|
}
|
|
61
61
|
},
|
|
62
62
|
"node_modules/@appium/base-driver": {
|
|
63
|
-
"version": "8.7.
|
|
63
|
+
"version": "8.7.3",
|
|
64
64
|
"extraneous": true,
|
|
65
65
|
"license": "Apache-2.0",
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@appium/support": "^2.
|
|
68
|
-
"@babel/runtime": "7.19.0",
|
|
67
|
+
"@appium/support": "^2.61.1",
|
|
69
68
|
"@colors/colors": "1.5.0",
|
|
70
|
-
"@types/async-lock": "1.
|
|
71
|
-
"@types/bluebird": "3.5.
|
|
72
|
-
"@types/express": "4.17.
|
|
69
|
+
"@types/async-lock": "1.3.0",
|
|
70
|
+
"@types/bluebird": "3.5.37",
|
|
71
|
+
"@types/express": "4.17.14",
|
|
73
72
|
"@types/method-override": "0.0.32",
|
|
74
73
|
"@types/serve-favicon": "2.5.3",
|
|
75
74
|
"async-lock": "1.3.2",
|
|
76
75
|
"asyncbox": "2.9.2",
|
|
77
76
|
"axios": "0.27.2",
|
|
78
77
|
"bluebird": "3.7.2",
|
|
79
|
-
"body-parser": "1.20.
|
|
78
|
+
"body-parser": "1.20.1",
|
|
80
79
|
"es6-error": "4.1.1",
|
|
81
|
-
"express": "4.18.
|
|
80
|
+
"express": "4.18.2",
|
|
82
81
|
"http-status-codes": "2.2.0",
|
|
83
82
|
"lodash": "4.17.21",
|
|
84
83
|
"lru-cache": "7.14.0",
|
|
@@ -86,7 +85,7 @@
|
|
|
86
85
|
"morgan": "1.10.0",
|
|
87
86
|
"serve-favicon": "2.5.0",
|
|
88
87
|
"source-map-support": "0.5.21",
|
|
89
|
-
"type-fest": "
|
|
88
|
+
"type-fest": "3.1.0",
|
|
90
89
|
"validate.js": "0.13.1"
|
|
91
90
|
},
|
|
92
91
|
"engines": {
|
|
@@ -94,17 +93,6 @@
|
|
|
94
93
|
"npm": ">=8"
|
|
95
94
|
}
|
|
96
95
|
},
|
|
97
|
-
"node_modules/@appium/base-driver/node_modules/@babel/runtime": {
|
|
98
|
-
"version": "7.19.0",
|
|
99
|
-
"extraneous": true,
|
|
100
|
-
"license": "MIT",
|
|
101
|
-
"dependencies": {
|
|
102
|
-
"regenerator-runtime": "^0.13.4"
|
|
103
|
-
},
|
|
104
|
-
"engines": {
|
|
105
|
-
"node": ">=6.9.0"
|
|
106
|
-
}
|
|
107
|
-
},
|
|
108
96
|
"node_modules/@appium/base-driver/node_modules/axios": {
|
|
109
97
|
"version": "0.27.2",
|
|
110
98
|
"extraneous": true,
|
|
@@ -115,11 +103,11 @@
|
|
|
115
103
|
}
|
|
116
104
|
},
|
|
117
105
|
"node_modules/@appium/base-plugin": {
|
|
118
|
-
"version": "1.10.
|
|
106
|
+
"version": "1.10.5",
|
|
119
107
|
"extraneous": true,
|
|
120
108
|
"license": "Apache-2.0",
|
|
121
109
|
"dependencies": {
|
|
122
|
-
"@appium/support": "^2.
|
|
110
|
+
"@appium/support": "^2.61.1"
|
|
123
111
|
},
|
|
124
112
|
"engines": {
|
|
125
113
|
"node": ">=14",
|
|
@@ -127,50 +115,22 @@
|
|
|
127
115
|
}
|
|
128
116
|
},
|
|
129
117
|
"node_modules/@appium/docutils": {
|
|
130
|
-
"version": "0.0.
|
|
118
|
+
"version": "0.0.13",
|
|
131
119
|
"extraneous": true,
|
|
132
120
|
"license": "Apache-2.0",
|
|
133
121
|
"dependencies": {
|
|
134
|
-
"@appium/support": "^2.
|
|
135
|
-
"@babel/runtime": "7.19.0",
|
|
122
|
+
"@appium/support": "^2.61.1",
|
|
136
123
|
"docdash": "1.2.0",
|
|
137
124
|
"jsdoc": "3.6.11",
|
|
138
|
-
"jsdoc-plugin-typescript": "2.
|
|
125
|
+
"jsdoc-plugin-typescript": "2.2.0",
|
|
139
126
|
"source-map-support": "0.5.21",
|
|
140
|
-
"teen_process": "
|
|
127
|
+
"teen_process": "2.0.2"
|
|
141
128
|
},
|
|
142
129
|
"engines": {
|
|
143
130
|
"node": ">=14",
|
|
144
131
|
"npm": ">=8"
|
|
145
132
|
}
|
|
146
133
|
},
|
|
147
|
-
"node_modules/@appium/docutils/node_modules/@babel/runtime": {
|
|
148
|
-
"version": "7.19.0",
|
|
149
|
-
"extraneous": true,
|
|
150
|
-
"license": "MIT",
|
|
151
|
-
"dependencies": {
|
|
152
|
-
"regenerator-runtime": "^0.13.4"
|
|
153
|
-
},
|
|
154
|
-
"engines": {
|
|
155
|
-
"node": ">=6.9.0"
|
|
156
|
-
}
|
|
157
|
-
},
|
|
158
|
-
"node_modules/@appium/docutils/node_modules/teen_process": {
|
|
159
|
-
"version": "1.16.0",
|
|
160
|
-
"engines": [
|
|
161
|
-
"node"
|
|
162
|
-
],
|
|
163
|
-
"extraneous": true,
|
|
164
|
-
"license": "Apache-2.0",
|
|
165
|
-
"dependencies": {
|
|
166
|
-
"@babel/runtime": "^7.0.0",
|
|
167
|
-
"bluebird": "^3.5.1",
|
|
168
|
-
"lodash": "^4.17.4",
|
|
169
|
-
"shell-quote": "^1.4.3",
|
|
170
|
-
"source-map-support": "^0.5.3",
|
|
171
|
-
"which": "^2.0.2"
|
|
172
|
-
}
|
|
173
|
-
},
|
|
174
134
|
"node_modules/@appium/schema": {
|
|
175
135
|
"version": "0.0.9",
|
|
176
136
|
"license": "Apache-2.0",
|
|
@@ -185,16 +145,15 @@
|
|
|
185
145
|
}
|
|
186
146
|
},
|
|
187
147
|
"node_modules/@appium/support": {
|
|
188
|
-
"version": "2.
|
|
148
|
+
"version": "2.61.1",
|
|
189
149
|
"license": "Apache-2.0",
|
|
190
150
|
"dependencies": {
|
|
191
|
-
"@appium/types": "^0.
|
|
192
|
-
"@babel/runtime": "7.19.0",
|
|
151
|
+
"@appium/types": "^0.5.0",
|
|
193
152
|
"@colors/colors": "1.5.0",
|
|
194
153
|
"@types/archiver": "5.3.1",
|
|
195
154
|
"@types/base64-stream": "1.0.2",
|
|
196
155
|
"@types/find-root": "1.1.2",
|
|
197
|
-
"@types/glob": "
|
|
156
|
+
"@types/glob": "8.0.0",
|
|
198
157
|
"@types/jsftp": "2.1.2",
|
|
199
158
|
"@types/klaw": "3.0.3",
|
|
200
159
|
"@types/lockfile": "1.0.2",
|
|
@@ -218,7 +177,7 @@
|
|
|
218
177
|
"form-data": "4.0.0",
|
|
219
178
|
"get-stream": "6.0.1",
|
|
220
179
|
"glob": "8.0.3",
|
|
221
|
-
"jimp": "0.16.
|
|
180
|
+
"jimp": "0.16.2",
|
|
222
181
|
"jsftp": "2.1.3",
|
|
223
182
|
"klaw": "3.0.0",
|
|
224
183
|
"lockfile": "1.0.4",
|
|
@@ -237,12 +196,12 @@
|
|
|
237
196
|
"resolve-from": "5.0.0",
|
|
238
197
|
"rimraf": "3.0.2",
|
|
239
198
|
"sanitize-filename": "1.6.3",
|
|
240
|
-
"semver": "7.3.
|
|
241
|
-
"shell-quote": "1.7.
|
|
199
|
+
"semver": "7.3.8",
|
|
200
|
+
"shell-quote": "1.7.4",
|
|
242
201
|
"source-map-support": "0.5.21",
|
|
243
202
|
"supports-color": "8.1.1",
|
|
244
|
-
"teen_process": "
|
|
245
|
-
"type-fest": "
|
|
203
|
+
"teen_process": "2.0.2",
|
|
204
|
+
"type-fest": "3.1.0",
|
|
246
205
|
"uuid": "8.3.2",
|
|
247
206
|
"which": "2.0.2",
|
|
248
207
|
"yauzl": "2.10.0"
|
|
@@ -252,16 +211,6 @@
|
|
|
252
211
|
"npm": ">=8"
|
|
253
212
|
}
|
|
254
213
|
},
|
|
255
|
-
"node_modules/@appium/support/node_modules/@babel/runtime": {
|
|
256
|
-
"version": "7.19.0",
|
|
257
|
-
"license": "MIT",
|
|
258
|
-
"dependencies": {
|
|
259
|
-
"regenerator-runtime": "^0.13.4"
|
|
260
|
-
},
|
|
261
|
-
"engines": {
|
|
262
|
-
"node": ">=6.9.0"
|
|
263
|
-
}
|
|
264
|
-
},
|
|
265
214
|
"node_modules/@appium/support/node_modules/axios": {
|
|
266
215
|
"version": "0.27.2",
|
|
267
216
|
"license": "MIT",
|
|
@@ -270,31 +219,16 @@
|
|
|
270
219
|
"form-data": "^4.0.0"
|
|
271
220
|
}
|
|
272
221
|
},
|
|
273
|
-
"node_modules/@appium/support/node_modules/teen_process": {
|
|
274
|
-
"version": "1.16.0",
|
|
275
|
-
"engines": [
|
|
276
|
-
"node"
|
|
277
|
-
],
|
|
278
|
-
"license": "Apache-2.0",
|
|
279
|
-
"dependencies": {
|
|
280
|
-
"@babel/runtime": "^7.0.0",
|
|
281
|
-
"bluebird": "^3.5.1",
|
|
282
|
-
"lodash": "^4.17.4",
|
|
283
|
-
"shell-quote": "^1.4.3",
|
|
284
|
-
"source-map-support": "^0.5.3",
|
|
285
|
-
"which": "^2.0.2"
|
|
286
|
-
}
|
|
287
|
-
},
|
|
288
222
|
"node_modules/@appium/types": {
|
|
289
|
-
"version": "0.
|
|
223
|
+
"version": "0.5.0",
|
|
290
224
|
"license": "Apache-2.0",
|
|
291
225
|
"dependencies": {
|
|
292
226
|
"@appium/schema": "^0.0.9",
|
|
293
|
-
"@types/express": "4.17.
|
|
227
|
+
"@types/express": "4.17.14",
|
|
294
228
|
"@types/npmlog": "4.1.4",
|
|
295
229
|
"@types/ws": "8.5.3",
|
|
296
|
-
"@wdio/types": "7.
|
|
297
|
-
"type-fest": "
|
|
230
|
+
"@wdio/types": "7.25.1",
|
|
231
|
+
"type-fest": "3.1.0"
|
|
298
232
|
},
|
|
299
233
|
"engines": {
|
|
300
234
|
"node": ">=14",
|
|
@@ -766,7 +700,7 @@
|
|
|
766
700
|
}
|
|
767
701
|
},
|
|
768
702
|
"node_modules/@sidvind/better-ajv-errors": {
|
|
769
|
-
"version": "2.
|
|
703
|
+
"version": "2.1.0",
|
|
770
704
|
"extraneous": true,
|
|
771
705
|
"license": "Apache-2.0",
|
|
772
706
|
"dependencies": {
|
|
@@ -869,7 +803,7 @@
|
|
|
869
803
|
"license": "MIT"
|
|
870
804
|
},
|
|
871
805
|
"node_modules/@types/async-lock": {
|
|
872
|
-
"version": "1.
|
|
806
|
+
"version": "1.3.0",
|
|
873
807
|
"extraneous": true,
|
|
874
808
|
"license": "MIT"
|
|
875
809
|
},
|
|
@@ -881,7 +815,7 @@
|
|
|
881
815
|
}
|
|
882
816
|
},
|
|
883
817
|
"node_modules/@types/bluebird": {
|
|
884
|
-
"version": "3.5.
|
|
818
|
+
"version": "3.5.37",
|
|
885
819
|
"extraneous": true,
|
|
886
820
|
"license": "MIT"
|
|
887
821
|
},
|
|
@@ -911,7 +845,7 @@
|
|
|
911
845
|
}
|
|
912
846
|
},
|
|
913
847
|
"node_modules/@types/express": {
|
|
914
|
-
"version": "4.17.
|
|
848
|
+
"version": "4.17.14",
|
|
915
849
|
"license": "MIT",
|
|
916
850
|
"dependencies": {
|
|
917
851
|
"@types/body-parser": "*",
|
|
@@ -939,7 +873,7 @@
|
|
|
939
873
|
"license": "MIT"
|
|
940
874
|
},
|
|
941
875
|
"node_modules/@types/glob": {
|
|
942
|
-
"version": "
|
|
876
|
+
"version": "8.0.0",
|
|
943
877
|
"license": "MIT",
|
|
944
878
|
"dependencies": {
|
|
945
879
|
"@types/minimatch": "*",
|
|
@@ -962,10 +896,11 @@
|
|
|
962
896
|
"license": "MIT"
|
|
963
897
|
},
|
|
964
898
|
"node_modules/@types/keyv": {
|
|
965
|
-
"version": "
|
|
899
|
+
"version": "4.2.0",
|
|
900
|
+
"deprecated": "This is a stub types definition. keyv provides its own type definitions, so you do not need this installed.",
|
|
966
901
|
"license": "MIT",
|
|
967
902
|
"dependencies": {
|
|
968
|
-
"
|
|
903
|
+
"keyv": "*"
|
|
969
904
|
}
|
|
970
905
|
},
|
|
971
906
|
"node_modules/@types/klaw": {
|
|
@@ -1026,7 +961,7 @@
|
|
|
1026
961
|
}
|
|
1027
962
|
},
|
|
1028
963
|
"node_modules/@types/node": {
|
|
1029
|
-
"version": "18.
|
|
964
|
+
"version": "18.11.2",
|
|
1030
965
|
"license": "MIT"
|
|
1031
966
|
},
|
|
1032
967
|
"node_modules/@types/normalize-package-data": {
|
|
@@ -1123,7 +1058,7 @@
|
|
|
1123
1058
|
}
|
|
1124
1059
|
},
|
|
1125
1060
|
"node_modules/@wdio/types": {
|
|
1126
|
-
"version": "7.
|
|
1061
|
+
"version": "7.25.1",
|
|
1127
1062
|
"license": "MIT",
|
|
1128
1063
|
"dependencies": {
|
|
1129
1064
|
"@types/node": "^18.0.0",
|
|
@@ -1232,7 +1167,7 @@
|
|
|
1232
1167
|
"license": "MIT"
|
|
1233
1168
|
},
|
|
1234
1169
|
"node_modules/appium-adb": {
|
|
1235
|
-
"version": "9.10.
|
|
1170
|
+
"version": "9.10.12",
|
|
1236
1171
|
"license": "Apache-2.0",
|
|
1237
1172
|
"dependencies": {
|
|
1238
1173
|
"@appium/support": "^2.60.0",
|
|
@@ -1255,7 +1190,7 @@
|
|
|
1255
1190
|
}
|
|
1256
1191
|
},
|
|
1257
1192
|
"node_modules/appium-android-driver": {
|
|
1258
|
-
"version": "5.
|
|
1193
|
+
"version": "5.6.0",
|
|
1259
1194
|
"license": "Apache-2.0",
|
|
1260
1195
|
"dependencies": {
|
|
1261
1196
|
"@babel/runtime": "^7.0.0",
|
|
@@ -1449,7 +1384,7 @@
|
|
|
1449
1384
|
"license": "MIT"
|
|
1450
1385
|
},
|
|
1451
1386
|
"node_modules/axios": {
|
|
1452
|
-
"version": "1.1.
|
|
1387
|
+
"version": "1.1.3",
|
|
1453
1388
|
"license": "MIT",
|
|
1454
1389
|
"dependencies": {
|
|
1455
1390
|
"follow-redirects": "^1.15.0",
|
|
@@ -1524,7 +1459,7 @@
|
|
|
1524
1459
|
"license": "MIT"
|
|
1525
1460
|
},
|
|
1526
1461
|
"node_modules/body-parser": {
|
|
1527
|
-
"version": "1.20.
|
|
1462
|
+
"version": "1.20.1",
|
|
1528
1463
|
"extraneous": true,
|
|
1529
1464
|
"license": "MIT",
|
|
1530
1465
|
"dependencies": {
|
|
@@ -1536,7 +1471,7 @@
|
|
|
1536
1471
|
"http-errors": "2.0.0",
|
|
1537
1472
|
"iconv-lite": "0.4.24",
|
|
1538
1473
|
"on-finished": "2.4.1",
|
|
1539
|
-
"qs": "6.
|
|
1474
|
+
"qs": "6.11.0",
|
|
1540
1475
|
"raw-body": "2.5.1",
|
|
1541
1476
|
"type-is": "~1.6.18",
|
|
1542
1477
|
"unpipe": "1.0.0"
|
|
@@ -2159,13 +2094,13 @@
|
|
|
2159
2094
|
"version": "0.1.12"
|
|
2160
2095
|
},
|
|
2161
2096
|
"node_modules/express": {
|
|
2162
|
-
"version": "4.18.
|
|
2097
|
+
"version": "4.18.2",
|
|
2163
2098
|
"extraneous": true,
|
|
2164
2099
|
"license": "MIT",
|
|
2165
2100
|
"dependencies": {
|
|
2166
2101
|
"accepts": "~1.3.8",
|
|
2167
2102
|
"array-flatten": "1.1.1",
|
|
2168
|
-
"body-parser": "1.20.
|
|
2103
|
+
"body-parser": "1.20.1",
|
|
2169
2104
|
"content-disposition": "0.5.4",
|
|
2170
2105
|
"content-type": "~1.0.4",
|
|
2171
2106
|
"cookie": "0.5.0",
|
|
@@ -2184,7 +2119,7 @@
|
|
|
2184
2119
|
"parseurl": "~1.3.3",
|
|
2185
2120
|
"path-to-regexp": "0.1.7",
|
|
2186
2121
|
"proxy-addr": "~2.0.7",
|
|
2187
|
-
"qs": "6.
|
|
2122
|
+
"qs": "6.11.0",
|
|
2188
2123
|
"range-parser": "~1.2.1",
|
|
2189
2124
|
"safe-buffer": "5.2.1",
|
|
2190
2125
|
"send": "0.18.0",
|
|
@@ -2794,7 +2729,7 @@
|
|
|
2794
2729
|
}
|
|
2795
2730
|
},
|
|
2796
2731
|
"node_modules/is-core-module": {
|
|
2797
|
-
"version": "2.
|
|
2732
|
+
"version": "2.11.0",
|
|
2798
2733
|
"license": "MIT",
|
|
2799
2734
|
"dependencies": {
|
|
2800
2735
|
"has": "^1.0.3"
|
|
@@ -2956,13 +2891,13 @@
|
|
|
2956
2891
|
"license": "ISC"
|
|
2957
2892
|
},
|
|
2958
2893
|
"node_modules/jimp": {
|
|
2959
|
-
"version": "0.16.
|
|
2894
|
+
"version": "0.16.2",
|
|
2960
2895
|
"license": "MIT",
|
|
2961
2896
|
"dependencies": {
|
|
2962
2897
|
"@babel/runtime": "^7.7.2",
|
|
2963
|
-
"@jimp/custom": "^0.16.
|
|
2964
|
-
"@jimp/plugins": "^0.16.
|
|
2965
|
-
"@jimp/types": "^0.16.
|
|
2898
|
+
"@jimp/custom": "^0.16.2",
|
|
2899
|
+
"@jimp/plugins": "^0.16.2",
|
|
2900
|
+
"@jimp/types": "^0.16.2",
|
|
2966
2901
|
"regenerator-runtime": "^0.13.3"
|
|
2967
2902
|
}
|
|
2968
2903
|
},
|
|
@@ -3011,14 +2946,11 @@
|
|
|
3011
2946
|
}
|
|
3012
2947
|
},
|
|
3013
2948
|
"node_modules/jsdoc-plugin-typescript": {
|
|
3014
|
-
"version": "2.
|
|
2949
|
+
"version": "2.2.0",
|
|
3015
2950
|
"extraneous": true,
|
|
3016
2951
|
"license": "BSD-2-Clause",
|
|
3017
2952
|
"dependencies": {
|
|
3018
2953
|
"string.prototype.matchall": "^4.0.0"
|
|
3019
|
-
},
|
|
3020
|
-
"peerDependencies": {
|
|
3021
|
-
"jsdoc": ">=3.6.0"
|
|
3022
2954
|
}
|
|
3023
2955
|
},
|
|
3024
2956
|
"node_modules/jsdoc/node_modules/escape-string-regexp": {
|
|
@@ -3487,7 +3419,7 @@
|
|
|
3487
3419
|
}
|
|
3488
3420
|
},
|
|
3489
3421
|
"node_modules/moment-timezone": {
|
|
3490
|
-
"version": "0.5.
|
|
3422
|
+
"version": "0.5.38",
|
|
3491
3423
|
"license": "MIT",
|
|
3492
3424
|
"dependencies": {
|
|
3493
3425
|
"moment": ">= 2.9.0"
|
|
@@ -4090,7 +4022,7 @@
|
|
|
4090
4022
|
}
|
|
4091
4023
|
},
|
|
4092
4024
|
"node_modules/qs": {
|
|
4093
|
-
"version": "6.
|
|
4025
|
+
"version": "6.11.0",
|
|
4094
4026
|
"extraneous": true,
|
|
4095
4027
|
"license": "BSD-3-Clause",
|
|
4096
4028
|
"dependencies": {
|
|
@@ -4192,7 +4124,7 @@
|
|
|
4192
4124
|
}
|
|
4193
4125
|
},
|
|
4194
4126
|
"node_modules/regenerator-runtime": {
|
|
4195
|
-
"version": "0.13.
|
|
4127
|
+
"version": "0.13.10",
|
|
4196
4128
|
"license": "MIT"
|
|
4197
4129
|
},
|
|
4198
4130
|
"node_modules/regexp.prototype.flags": {
|
|
@@ -4338,7 +4270,7 @@
|
|
|
4338
4270
|
}
|
|
4339
4271
|
},
|
|
4340
4272
|
"node_modules/safe-stable-stringify": {
|
|
4341
|
-
"version": "2.4.
|
|
4273
|
+
"version": "2.4.1",
|
|
4342
4274
|
"extraneous": true,
|
|
4343
4275
|
"license": "MIT",
|
|
4344
4276
|
"engines": {
|
|
@@ -4362,7 +4294,7 @@
|
|
|
4362
4294
|
"license": "ISC"
|
|
4363
4295
|
},
|
|
4364
4296
|
"node_modules/semver": {
|
|
4365
|
-
"version": "7.3.
|
|
4297
|
+
"version": "7.3.8",
|
|
4366
4298
|
"license": "ISC",
|
|
4367
4299
|
"dependencies": {
|
|
4368
4300
|
"lru-cache": "^6.0.0"
|
|
@@ -4508,8 +4440,11 @@
|
|
|
4508
4440
|
}
|
|
4509
4441
|
},
|
|
4510
4442
|
"node_modules/shell-quote": {
|
|
4511
|
-
"version": "1.7.
|
|
4512
|
-
"license": "MIT"
|
|
4443
|
+
"version": "1.7.4",
|
|
4444
|
+
"license": "MIT",
|
|
4445
|
+
"funding": {
|
|
4446
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
4447
|
+
}
|
|
4513
4448
|
},
|
|
4514
4449
|
"node_modules/side-channel": {
|
|
4515
4450
|
"version": "1.0.4",
|
|
@@ -4750,6 +4685,10 @@
|
|
|
4750
4685
|
"node": ">=6.9.0"
|
|
4751
4686
|
}
|
|
4752
4687
|
},
|
|
4688
|
+
"node_modules/teen_process/node_modules/shell-quote": {
|
|
4689
|
+
"version": "1.7.3",
|
|
4690
|
+
"license": "MIT"
|
|
4691
|
+
},
|
|
4753
4692
|
"node_modules/text-hex": {
|
|
4754
4693
|
"version": "1.0.0",
|
|
4755
4694
|
"extraneous": true,
|
|
@@ -4791,10 +4730,10 @@
|
|
|
4791
4730
|
}
|
|
4792
4731
|
},
|
|
4793
4732
|
"node_modules/type-fest": {
|
|
4794
|
-
"version": "
|
|
4733
|
+
"version": "3.1.0",
|
|
4795
4734
|
"license": "(MIT OR CC0-1.0)",
|
|
4796
4735
|
"engines": {
|
|
4797
|
-
"node": ">=
|
|
4736
|
+
"node": ">=14.16"
|
|
4798
4737
|
},
|
|
4799
4738
|
"funding": {
|
|
4800
4739
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
@@ -4990,10 +4929,11 @@
|
|
|
4990
4929
|
}
|
|
4991
4930
|
},
|
|
4992
4931
|
"node_modules/winston": {
|
|
4993
|
-
"version": "3.8.
|
|
4932
|
+
"version": "3.8.2",
|
|
4994
4933
|
"extraneous": true,
|
|
4995
4934
|
"license": "MIT",
|
|
4996
4935
|
"dependencies": {
|
|
4936
|
+
"@colors/colors": "1.5.0",
|
|
4997
4937
|
"@dabh/diagnostics": "^2.0.2",
|
|
4998
4938
|
"async": "^3.2.3",
|
|
4999
4939
|
"is-stream": "^2.0.0",
|
|
@@ -5180,7 +5120,7 @@
|
|
|
5180
5120
|
"license": "ISC"
|
|
5181
5121
|
},
|
|
5182
5122
|
"node_modules/yaml": {
|
|
5183
|
-
"version": "2.1.
|
|
5123
|
+
"version": "2.1.3",
|
|
5184
5124
|
"extraneous": true,
|
|
5185
5125
|
"license": "ISC",
|
|
5186
5126
|
"engines": {
|
|
@@ -5220,24 +5160,23 @@
|
|
|
5220
5160
|
},
|
|
5221
5161
|
"dependencies": {
|
|
5222
5162
|
"@appium/base-driver": {
|
|
5223
|
-
"version": "8.7.
|
|
5163
|
+
"version": "8.7.3",
|
|
5224
5164
|
"extraneous": true,
|
|
5225
5165
|
"requires": {
|
|
5226
|
-
"@appium/support": "^2.
|
|
5227
|
-
"@babel/runtime": "7.19.0",
|
|
5166
|
+
"@appium/support": "^2.61.1",
|
|
5228
5167
|
"@colors/colors": "1.5.0",
|
|
5229
|
-
"@types/async-lock": "1.
|
|
5230
|
-
"@types/bluebird": "3.5.
|
|
5231
|
-
"@types/express": "4.17.
|
|
5168
|
+
"@types/async-lock": "1.3.0",
|
|
5169
|
+
"@types/bluebird": "3.5.37",
|
|
5170
|
+
"@types/express": "4.17.14",
|
|
5232
5171
|
"@types/method-override": "0.0.32",
|
|
5233
5172
|
"@types/serve-favicon": "2.5.3",
|
|
5234
5173
|
"async-lock": "1.3.2",
|
|
5235
5174
|
"asyncbox": "2.9.2",
|
|
5236
5175
|
"axios": "0.27.2",
|
|
5237
5176
|
"bluebird": "3.7.2",
|
|
5238
|
-
"body-parser": "1.20.
|
|
5177
|
+
"body-parser": "1.20.1",
|
|
5239
5178
|
"es6-error": "4.1.1",
|
|
5240
|
-
"express": "4.18.
|
|
5179
|
+
"express": "4.18.2",
|
|
5241
5180
|
"http-status-codes": "2.2.0",
|
|
5242
5181
|
"lodash": "4.17.21",
|
|
5243
5182
|
"lru-cache": "7.14.0",
|
|
@@ -5245,17 +5184,10 @@
|
|
|
5245
5184
|
"morgan": "1.10.0",
|
|
5246
5185
|
"serve-favicon": "2.5.0",
|
|
5247
5186
|
"source-map-support": "0.5.21",
|
|
5248
|
-
"type-fest": "
|
|
5187
|
+
"type-fest": "3.1.0",
|
|
5249
5188
|
"validate.js": "0.13.1"
|
|
5250
5189
|
},
|
|
5251
5190
|
"dependencies": {
|
|
5252
|
-
"@babel/runtime": {
|
|
5253
|
-
"version": "7.19.0",
|
|
5254
|
-
"extraneous": true,
|
|
5255
|
-
"requires": {
|
|
5256
|
-
"regenerator-runtime": "^0.13.4"
|
|
5257
|
-
}
|
|
5258
|
-
},
|
|
5259
5191
|
"axios": {
|
|
5260
5192
|
"version": "0.27.2",
|
|
5261
5193
|
"extraneous": true,
|
|
@@ -5267,44 +5199,22 @@
|
|
|
5267
5199
|
}
|
|
5268
5200
|
},
|
|
5269
5201
|
"@appium/base-plugin": {
|
|
5270
|
-
"version": "1.10.
|
|
5202
|
+
"version": "1.10.5",
|
|
5271
5203
|
"extraneous": true,
|
|
5272
5204
|
"requires": {
|
|
5273
|
-
"@appium/support": "^2.
|
|
5205
|
+
"@appium/support": "^2.61.1"
|
|
5274
5206
|
}
|
|
5275
5207
|
},
|
|
5276
5208
|
"@appium/docutils": {
|
|
5277
|
-
"version": "0.0.
|
|
5209
|
+
"version": "0.0.13",
|
|
5278
5210
|
"extraneous": true,
|
|
5279
5211
|
"requires": {
|
|
5280
|
-
"@appium/support": "^2.
|
|
5281
|
-
"@babel/runtime": "7.19.0",
|
|
5212
|
+
"@appium/support": "^2.61.1",
|
|
5282
5213
|
"docdash": "1.2.0",
|
|
5283
5214
|
"jsdoc": "3.6.11",
|
|
5284
|
-
"jsdoc-plugin-typescript": "2.
|
|
5215
|
+
"jsdoc-plugin-typescript": "2.2.0",
|
|
5285
5216
|
"source-map-support": "0.5.21",
|
|
5286
|
-
"teen_process": "
|
|
5287
|
-
},
|
|
5288
|
-
"dependencies": {
|
|
5289
|
-
"@babel/runtime": {
|
|
5290
|
-
"version": "7.19.0",
|
|
5291
|
-
"extraneous": true,
|
|
5292
|
-
"requires": {
|
|
5293
|
-
"regenerator-runtime": "^0.13.4"
|
|
5294
|
-
}
|
|
5295
|
-
},
|
|
5296
|
-
"teen_process": {
|
|
5297
|
-
"version": "1.16.0",
|
|
5298
|
-
"extraneous": true,
|
|
5299
|
-
"requires": {
|
|
5300
|
-
"@babel/runtime": "^7.0.0",
|
|
5301
|
-
"bluebird": "^3.5.1",
|
|
5302
|
-
"lodash": "^4.17.4",
|
|
5303
|
-
"shell-quote": "^1.4.3",
|
|
5304
|
-
"source-map-support": "^0.5.3",
|
|
5305
|
-
"which": "^2.0.2"
|
|
5306
|
-
}
|
|
5307
|
-
}
|
|
5217
|
+
"teen_process": "2.0.2"
|
|
5308
5218
|
}
|
|
5309
5219
|
},
|
|
5310
5220
|
"@appium/schema": {
|
|
@@ -5316,15 +5226,14 @@
|
|
|
5316
5226
|
}
|
|
5317
5227
|
},
|
|
5318
5228
|
"@appium/support": {
|
|
5319
|
-
"version": "2.
|
|
5229
|
+
"version": "2.61.1",
|
|
5320
5230
|
"requires": {
|
|
5321
|
-
"@appium/types": "^0.
|
|
5322
|
-
"@babel/runtime": "7.19.0",
|
|
5231
|
+
"@appium/types": "^0.5.0",
|
|
5323
5232
|
"@colors/colors": "1.5.0",
|
|
5324
5233
|
"@types/archiver": "5.3.1",
|
|
5325
5234
|
"@types/base64-stream": "1.0.2",
|
|
5326
5235
|
"@types/find-root": "1.1.2",
|
|
5327
|
-
"@types/glob": "
|
|
5236
|
+
"@types/glob": "8.0.0",
|
|
5328
5237
|
"@types/jsftp": "2.1.2",
|
|
5329
5238
|
"@types/klaw": "3.0.3",
|
|
5330
5239
|
"@types/lockfile": "1.0.2",
|
|
@@ -5348,7 +5257,7 @@
|
|
|
5348
5257
|
"form-data": "4.0.0",
|
|
5349
5258
|
"get-stream": "6.0.1",
|
|
5350
5259
|
"glob": "8.0.3",
|
|
5351
|
-
"jimp": "0.16.
|
|
5260
|
+
"jimp": "0.16.2",
|
|
5352
5261
|
"jsftp": "2.1.3",
|
|
5353
5262
|
"klaw": "3.0.0",
|
|
5354
5263
|
"lockfile": "1.0.4",
|
|
@@ -5367,52 +5276,35 @@
|
|
|
5367
5276
|
"resolve-from": "5.0.0",
|
|
5368
5277
|
"rimraf": "3.0.2",
|
|
5369
5278
|
"sanitize-filename": "1.6.3",
|
|
5370
|
-
"semver": "7.3.
|
|
5371
|
-
"shell-quote": "1.7.
|
|
5279
|
+
"semver": "7.3.8",
|
|
5280
|
+
"shell-quote": "1.7.4",
|
|
5372
5281
|
"source-map-support": "0.5.21",
|
|
5373
5282
|
"supports-color": "8.1.1",
|
|
5374
|
-
"teen_process": "
|
|
5375
|
-
"type-fest": "
|
|
5283
|
+
"teen_process": "2.0.2",
|
|
5284
|
+
"type-fest": "3.1.0",
|
|
5376
5285
|
"uuid": "8.3.2",
|
|
5377
5286
|
"which": "2.0.2",
|
|
5378
5287
|
"yauzl": "2.10.0"
|
|
5379
5288
|
},
|
|
5380
5289
|
"dependencies": {
|
|
5381
|
-
"@babel/runtime": {
|
|
5382
|
-
"version": "7.19.0",
|
|
5383
|
-
"requires": {
|
|
5384
|
-
"regenerator-runtime": "^0.13.4"
|
|
5385
|
-
}
|
|
5386
|
-
},
|
|
5387
5290
|
"axios": {
|
|
5388
5291
|
"version": "0.27.2",
|
|
5389
5292
|
"requires": {
|
|
5390
5293
|
"follow-redirects": "^1.14.9",
|
|
5391
5294
|
"form-data": "^4.0.0"
|
|
5392
5295
|
}
|
|
5393
|
-
},
|
|
5394
|
-
"teen_process": {
|
|
5395
|
-
"version": "1.16.0",
|
|
5396
|
-
"requires": {
|
|
5397
|
-
"@babel/runtime": "^7.0.0",
|
|
5398
|
-
"bluebird": "^3.5.1",
|
|
5399
|
-
"lodash": "^4.17.4",
|
|
5400
|
-
"shell-quote": "^1.4.3",
|
|
5401
|
-
"source-map-support": "^0.5.3",
|
|
5402
|
-
"which": "^2.0.2"
|
|
5403
|
-
}
|
|
5404
5296
|
}
|
|
5405
5297
|
}
|
|
5406
5298
|
},
|
|
5407
5299
|
"@appium/types": {
|
|
5408
|
-
"version": "0.
|
|
5300
|
+
"version": "0.5.0",
|
|
5409
5301
|
"requires": {
|
|
5410
5302
|
"@appium/schema": "^0.0.9",
|
|
5411
|
-
"@types/express": "4.17.
|
|
5303
|
+
"@types/express": "4.17.14",
|
|
5412
5304
|
"@types/npmlog": "4.1.4",
|
|
5413
5305
|
"@types/ws": "8.5.3",
|
|
5414
|
-
"@wdio/types": "7.
|
|
5415
|
-
"type-fest": "
|
|
5306
|
+
"@wdio/types": "7.25.1",
|
|
5307
|
+
"type-fest": "3.1.0"
|
|
5416
5308
|
}
|
|
5417
5309
|
},
|
|
5418
5310
|
"@babel/code-frame": {
|
|
@@ -5719,7 +5611,7 @@
|
|
|
5719
5611
|
}
|
|
5720
5612
|
},
|
|
5721
5613
|
"@sidvind/better-ajv-errors": {
|
|
5722
|
-
"version": "2.
|
|
5614
|
+
"version": "2.1.0",
|
|
5723
5615
|
"extraneous": true,
|
|
5724
5616
|
"requires": {
|
|
5725
5617
|
"@babel/code-frame": "^7.16.0",
|
|
@@ -5781,7 +5673,7 @@
|
|
|
5781
5673
|
"extraneous": true
|
|
5782
5674
|
},
|
|
5783
5675
|
"@types/async-lock": {
|
|
5784
|
-
"version": "1.
|
|
5676
|
+
"version": "1.3.0",
|
|
5785
5677
|
"extraneous": true
|
|
5786
5678
|
},
|
|
5787
5679
|
"@types/base64-stream": {
|
|
@@ -5791,7 +5683,7 @@
|
|
|
5791
5683
|
}
|
|
5792
5684
|
},
|
|
5793
5685
|
"@types/bluebird": {
|
|
5794
|
-
"version": "3.5.
|
|
5686
|
+
"version": "3.5.37",
|
|
5795
5687
|
"extraneous": true
|
|
5796
5688
|
},
|
|
5797
5689
|
"@types/body-parser": {
|
|
@@ -5817,7 +5709,7 @@
|
|
|
5817
5709
|
}
|
|
5818
5710
|
},
|
|
5819
5711
|
"@types/express": {
|
|
5820
|
-
"version": "4.17.
|
|
5712
|
+
"version": "4.17.14",
|
|
5821
5713
|
"requires": {
|
|
5822
5714
|
"@types/body-parser": "*",
|
|
5823
5715
|
"@types/express-serve-static-core": "^4.17.18",
|
|
@@ -5841,7 +5733,7 @@
|
|
|
5841
5733
|
"version": "1.1.2"
|
|
5842
5734
|
},
|
|
5843
5735
|
"@types/glob": {
|
|
5844
|
-
"version": "
|
|
5736
|
+
"version": "8.0.0",
|
|
5845
5737
|
"requires": {
|
|
5846
5738
|
"@types/minimatch": "*",
|
|
5847
5739
|
"@types/node": "*"
|
|
@@ -5860,9 +5752,9 @@
|
|
|
5860
5752
|
"version": "7.0.11"
|
|
5861
5753
|
},
|
|
5862
5754
|
"@types/keyv": {
|
|
5863
|
-
"version": "
|
|
5755
|
+
"version": "4.2.0",
|
|
5864
5756
|
"requires": {
|
|
5865
|
-
"
|
|
5757
|
+
"keyv": "*"
|
|
5866
5758
|
}
|
|
5867
5759
|
},
|
|
5868
5760
|
"@types/klaw": {
|
|
@@ -5913,7 +5805,7 @@
|
|
|
5913
5805
|
}
|
|
5914
5806
|
},
|
|
5915
5807
|
"@types/node": {
|
|
5916
|
-
"version": "18.
|
|
5808
|
+
"version": "18.11.2"
|
|
5917
5809
|
},
|
|
5918
5810
|
"@types/normalize-package-data": {
|
|
5919
5811
|
"version": "2.4.1"
|
|
@@ -5992,7 +5884,7 @@
|
|
|
5992
5884
|
}
|
|
5993
5885
|
},
|
|
5994
5886
|
"@wdio/types": {
|
|
5995
|
-
"version": "7.
|
|
5887
|
+
"version": "7.25.1",
|
|
5996
5888
|
"requires": {
|
|
5997
5889
|
"@types/node": "^18.0.0",
|
|
5998
5890
|
"got": "^11.8.1"
|
|
@@ -6055,7 +5947,7 @@
|
|
|
6055
5947
|
"version": "1.1.0"
|
|
6056
5948
|
},
|
|
6057
5949
|
"appium-adb": {
|
|
6058
|
-
"version": "9.10.
|
|
5950
|
+
"version": "9.10.12",
|
|
6059
5951
|
"requires": {
|
|
6060
5952
|
"@appium/support": "^2.60.0",
|
|
6061
5953
|
"@babel/runtime": "^7.0.0",
|
|
@@ -6073,7 +5965,7 @@
|
|
|
6073
5965
|
}
|
|
6074
5966
|
},
|
|
6075
5967
|
"appium-android-driver": {
|
|
6076
|
-
"version": "5.
|
|
5968
|
+
"version": "5.6.0",
|
|
6077
5969
|
"requires": {
|
|
6078
5970
|
"@babel/runtime": "^7.0.0",
|
|
6079
5971
|
"appium-adb": "^9.10.9",
|
|
@@ -6215,7 +6107,7 @@
|
|
|
6215
6107
|
"version": "0.4.0"
|
|
6216
6108
|
},
|
|
6217
6109
|
"axios": {
|
|
6218
|
-
"version": "1.1.
|
|
6110
|
+
"version": "1.1.3",
|
|
6219
6111
|
"requires": {
|
|
6220
6112
|
"follow-redirects": "^1.15.0",
|
|
6221
6113
|
"form-data": "^4.0.0",
|
|
@@ -6262,7 +6154,7 @@
|
|
|
6262
6154
|
"version": "0.1.0"
|
|
6263
6155
|
},
|
|
6264
6156
|
"body-parser": {
|
|
6265
|
-
"version": "1.20.
|
|
6157
|
+
"version": "1.20.1",
|
|
6266
6158
|
"extraneous": true,
|
|
6267
6159
|
"requires": {
|
|
6268
6160
|
"bytes": "3.1.2",
|
|
@@ -6273,7 +6165,7 @@
|
|
|
6273
6165
|
"http-errors": "2.0.0",
|
|
6274
6166
|
"iconv-lite": "0.4.24",
|
|
6275
6167
|
"on-finished": "2.4.1",
|
|
6276
|
-
"qs": "6.
|
|
6168
|
+
"qs": "6.11.0",
|
|
6277
6169
|
"raw-body": "2.5.1",
|
|
6278
6170
|
"type-is": "~1.6.18",
|
|
6279
6171
|
"unpipe": "1.0.0"
|
|
@@ -6665,12 +6557,12 @@
|
|
|
6665
6557
|
"version": "0.1.12"
|
|
6666
6558
|
},
|
|
6667
6559
|
"express": {
|
|
6668
|
-
"version": "4.18.
|
|
6560
|
+
"version": "4.18.2",
|
|
6669
6561
|
"extraneous": true,
|
|
6670
6562
|
"requires": {
|
|
6671
6563
|
"accepts": "~1.3.8",
|
|
6672
6564
|
"array-flatten": "1.1.1",
|
|
6673
|
-
"body-parser": "1.20.
|
|
6565
|
+
"body-parser": "1.20.1",
|
|
6674
6566
|
"content-disposition": "0.5.4",
|
|
6675
6567
|
"content-type": "~1.0.4",
|
|
6676
6568
|
"cookie": "0.5.0",
|
|
@@ -6689,7 +6581,7 @@
|
|
|
6689
6581
|
"parseurl": "~1.3.3",
|
|
6690
6582
|
"path-to-regexp": "0.1.7",
|
|
6691
6583
|
"proxy-addr": "~2.0.7",
|
|
6692
|
-
"qs": "6.
|
|
6584
|
+
"qs": "6.11.0",
|
|
6693
6585
|
"range-parser": "~1.2.1",
|
|
6694
6586
|
"safe-buffer": "5.2.1",
|
|
6695
6587
|
"send": "0.18.0",
|
|
@@ -7080,7 +6972,7 @@
|
|
|
7080
6972
|
"extraneous": true
|
|
7081
6973
|
},
|
|
7082
6974
|
"is-core-module": {
|
|
7083
|
-
"version": "2.
|
|
6975
|
+
"version": "2.11.0",
|
|
7084
6976
|
"requires": {
|
|
7085
6977
|
"has": "^1.0.3"
|
|
7086
6978
|
}
|
|
@@ -7166,12 +7058,12 @@
|
|
|
7166
7058
|
"version": "2.0.0"
|
|
7167
7059
|
},
|
|
7168
7060
|
"jimp": {
|
|
7169
|
-
"version": "0.16.
|
|
7061
|
+
"version": "0.16.2",
|
|
7170
7062
|
"requires": {
|
|
7171
7063
|
"@babel/runtime": "^7.7.2",
|
|
7172
|
-
"@jimp/custom": "^0.16.
|
|
7173
|
-
"@jimp/plugins": "^0.16.
|
|
7174
|
-
"@jimp/types": "^0.16.
|
|
7064
|
+
"@jimp/custom": "^0.16.2",
|
|
7065
|
+
"@jimp/plugins": "^0.16.2",
|
|
7066
|
+
"@jimp/types": "^0.16.2",
|
|
7175
7067
|
"regenerator-runtime": "^0.13.3"
|
|
7176
7068
|
}
|
|
7177
7069
|
},
|
|
@@ -7220,7 +7112,7 @@
|
|
|
7220
7112
|
}
|
|
7221
7113
|
},
|
|
7222
7114
|
"jsdoc-plugin-typescript": {
|
|
7223
|
-
"version": "2.
|
|
7115
|
+
"version": "2.2.0",
|
|
7224
7116
|
"extraneous": true,
|
|
7225
7117
|
"requires": {
|
|
7226
7118
|
"string.prototype.matchall": "^4.0.0"
|
|
@@ -7527,7 +7419,7 @@
|
|
|
7527
7419
|
"version": "2.29.4"
|
|
7528
7420
|
},
|
|
7529
7421
|
"moment-timezone": {
|
|
7530
|
-
"version": "0.5.
|
|
7422
|
+
"version": "0.5.38",
|
|
7531
7423
|
"requires": {
|
|
7532
7424
|
"moment": ">= 2.9.0"
|
|
7533
7425
|
}
|
|
@@ -7915,7 +7807,7 @@
|
|
|
7915
7807
|
"extraneous": true
|
|
7916
7808
|
},
|
|
7917
7809
|
"qs": {
|
|
7918
|
-
"version": "6.
|
|
7810
|
+
"version": "6.11.0",
|
|
7919
7811
|
"extraneous": true,
|
|
7920
7812
|
"requires": {
|
|
7921
7813
|
"side-channel": "^1.0.4"
|
|
@@ -7981,7 +7873,7 @@
|
|
|
7981
7873
|
}
|
|
7982
7874
|
},
|
|
7983
7875
|
"regenerator-runtime": {
|
|
7984
|
-
"version": "0.13.
|
|
7876
|
+
"version": "0.13.10"
|
|
7985
7877
|
},
|
|
7986
7878
|
"regexp.prototype.flags": {
|
|
7987
7879
|
"version": "1.4.3",
|
|
@@ -8063,7 +7955,7 @@
|
|
|
8063
7955
|
}
|
|
8064
7956
|
},
|
|
8065
7957
|
"safe-stable-stringify": {
|
|
8066
|
-
"version": "2.4.
|
|
7958
|
+
"version": "2.4.1",
|
|
8067
7959
|
"extraneous": true
|
|
8068
7960
|
},
|
|
8069
7961
|
"safer-buffer": {
|
|
@@ -8080,7 +7972,7 @@
|
|
|
8080
7972
|
"version": "1.2.4"
|
|
8081
7973
|
},
|
|
8082
7974
|
"semver": {
|
|
8083
|
-
"version": "7.3.
|
|
7975
|
+
"version": "7.3.8",
|
|
8084
7976
|
"requires": {
|
|
8085
7977
|
"lru-cache": "^6.0.0"
|
|
8086
7978
|
},
|
|
@@ -8193,7 +8085,7 @@
|
|
|
8193
8085
|
"extraneous": true
|
|
8194
8086
|
},
|
|
8195
8087
|
"shell-quote": {
|
|
8196
|
-
"version": "1.7.
|
|
8088
|
+
"version": "1.7.4"
|
|
8197
8089
|
},
|
|
8198
8090
|
"side-channel": {
|
|
8199
8091
|
"version": "1.0.4",
|
|
@@ -8355,6 +8247,9 @@
|
|
|
8355
8247
|
"requires": {
|
|
8356
8248
|
"regenerator-runtime": "^0.13.4"
|
|
8357
8249
|
}
|
|
8250
|
+
},
|
|
8251
|
+
"shell-quote": {
|
|
8252
|
+
"version": "1.7.3"
|
|
8358
8253
|
}
|
|
8359
8254
|
}
|
|
8360
8255
|
},
|
|
@@ -8386,7 +8281,7 @@
|
|
|
8386
8281
|
}
|
|
8387
8282
|
},
|
|
8388
8283
|
"type-fest": {
|
|
8389
|
-
"version": "
|
|
8284
|
+
"version": "3.1.0"
|
|
8390
8285
|
},
|
|
8391
8286
|
"type-is": {
|
|
8392
8287
|
"version": "1.6.18",
|
|
@@ -8520,9 +8415,10 @@
|
|
|
8520
8415
|
}
|
|
8521
8416
|
},
|
|
8522
8417
|
"winston": {
|
|
8523
|
-
"version": "3.8.
|
|
8418
|
+
"version": "3.8.2",
|
|
8524
8419
|
"extraneous": true,
|
|
8525
8420
|
"requires": {
|
|
8421
|
+
"@colors/colors": "1.5.0",
|
|
8526
8422
|
"@dabh/diagnostics": "^2.0.2",
|
|
8527
8423
|
"async": "^3.2.3",
|
|
8528
8424
|
"is-stream": "^2.0.0",
|
|
@@ -8638,7 +8534,7 @@
|
|
|
8638
8534
|
"version": "4.0.0"
|
|
8639
8535
|
},
|
|
8640
8536
|
"yaml": {
|
|
8641
|
-
"version": "2.1.
|
|
8537
|
+
"version": "2.1.3",
|
|
8642
8538
|
"extraneous": true
|
|
8643
8539
|
},
|
|
8644
8540
|
"yauzl": {
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"automated testing",
|
|
8
8
|
"android"
|
|
9
9
|
],
|
|
10
|
-
"version": "2.
|
|
10
|
+
"version": "2.9.0",
|
|
11
11
|
"author": "Appium Contributors",
|
|
12
12
|
"license": "Apache-2.0",
|
|
13
13
|
"repository": {
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"@babel/runtime": "^7.0.0",
|
|
58
58
|
"appium-adb": "^9.10.9",
|
|
59
|
-
"appium-android-driver": "^5.
|
|
59
|
+
"appium-android-driver": "^5.6.0",
|
|
60
60
|
"appium-chromedriver": "^5.2.1",
|
|
61
61
|
"appium-uiautomator2-server": "^5.7.0",
|
|
62
62
|
"asyncbox": "^2.3.1",
|