appium-espresso-driver 2.14.0 → 2.15.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 CHANGED
@@ -1,3 +1,17 @@
1
+ ## [2.15.0](https://github.com/appium/appium-espresso-driver/compare/v2.14.1...v2.15.0) (2023-01-16)
2
+
3
+
4
+ ### Features
5
+
6
+ * Add swipe support in Compose mode ([#850](https://github.com/appium/appium-espresso-driver/issues/850)) ([97d2064](https://github.com/appium/appium-espresso-driver/commit/97d20643e8513dc2d8a94b2edae6110f71bb79d0))
7
+
8
+ ## [2.14.1](https://github.com/appium/appium-espresso-driver/compare/v2.14.0...v2.14.1) (2023-01-15)
9
+
10
+
11
+ ### Miscellaneous Chores
12
+
13
+ * Make binary compatible with java 15 ([#849](https://github.com/appium/appium-espresso-driver/issues/849)) ([3fe18cf](https://github.com/appium/appium-espresso-driver/commit/3fe18cfafe9ee9ae073fbe3fe30c128695484088))
14
+
1
15
  ## [2.14.0](https://github.com/appium/appium-espresso-driver/compare/v2.13.11...v2.14.0) (2023-01-13)
2
16
 
3
17
 
package/README.md CHANGED
@@ -203,6 +203,8 @@ In order to change between subdrivers use the [driver](#settings-api) setting. S
203
203
  - click, isDisplayed, isEnabled, clear, getText, sendKeys, getElementRect, getValue, isSelected: These commands should properly support compose elements.
204
204
  - getAttribute: Accepts and returns Compose-specific element attributes. See [Compose Element Attributes](#compose-element-attributes) for the full list of supported Compose element attributes.
205
205
  - getElementScreenshot: Fetches a screenshot of the given Compose element. Available since driver version *2.14.0*
206
+ - `mobile: swipe`: Performs swipe gesture on the given element in the given direction.
207
+ The `swiper` argument is not supported in Compose mode. Available since driver version *2.15.0*
206
208
 
207
209
  Calling other driver element-specific APIs not listed above would most likely throw an exception as Compose and Espresso elements are being stored in completely separated internal caches and must not be mixed.
208
210
 
@@ -43,19 +43,19 @@ android {
43
43
  signingConfigs {
44
44
  getByName("debug") {
45
45
  findProperty("appiumKeystoreFile")?.also {
46
- storeFile = File(it.toString())
46
+ storeFile.apply { file(it.toString()) }
47
47
  }
48
48
 
49
49
  findProperty("appiumKeystorePassword")?.also {
50
- storePassword = it.toString()
50
+ storePassword.apply { file(it.toString()) }
51
51
  }
52
52
 
53
53
  findProperty("appiumKeyAlias")?.also {
54
- keyAlias = it.toString()
54
+ keyAlias.apply { file(it.toString()) }
55
55
  }
56
56
 
57
57
  findProperty("appiumKeyPassword")?.also {
58
- keyPassword = it.toString()
58
+ keyPassword.apply { file(it.toString()) }
59
59
  }
60
60
  }
61
61
  }
@@ -16,12 +16,17 @@
16
16
 
17
17
  package io.appium.espressoserver.lib.handlers
18
18
 
19
+ import androidx.compose.ui.test.performGesture
20
+ import androidx.compose.ui.test.swipeDown
21
+
22
+ import androidx.compose.ui.test.swipeLeft
23
+ import androidx.compose.ui.test.swipeRight
24
+ import androidx.compose.ui.test.swipeUp
19
25
  import androidx.test.espresso.UiController
20
26
  import androidx.test.espresso.action.GeneralSwipeAction
21
- import androidx.test.espresso.action.ViewActions.*
22
- import io.appium.espressoserver.lib.handlers.exceptions.AppiumException
23
27
  import io.appium.espressoserver.lib.handlers.exceptions.InvalidArgumentException
24
28
  import io.appium.espressoserver.lib.helpers.AndroidLogger
29
+ import io.appium.espressoserver.lib.helpers.getNodeInteractionById
25
30
  import io.appium.espressoserver.lib.model.EspressoElement
26
31
  import io.appium.espressoserver.lib.model.MobileSwipeParams
27
32
  import io.appium.espressoserver.lib.model.MobileSwipeParams.Direction.*
@@ -31,35 +36,38 @@ import io.appium.espressoserver.lib.viewaction.ViewGetter
31
36
 
32
37
  class MobileSwipe : RequestHandler<MobileSwipeParams, Void?> {
33
38
 
34
- @Throws(AppiumException::class)
35
- override fun handleInternal(params: MobileSwipeParams): Void? {
39
+ override fun handleEspresso(params: MobileSwipeParams): Void? {
36
40
  // Get a reference to the view and call onData. This will automatically scroll to the view.
37
41
  val viewInteraction = EspressoElement.getViewInteractionById(params.elementId)
38
42
 
39
43
  if (params.direction != null) {
40
44
  AndroidLogger.info("Performing swipe action with direction '${params.direction}'")
41
45
  when (params.direction) {
42
- UP -> viewInteraction.perform(swipeUp())
43
- DOWN -> viewInteraction.perform(swipeDown())
44
- LEFT -> viewInteraction.perform(swipeLeft())
45
- RIGHT -> viewInteraction.perform(swipeRight())
46
- else -> throw InvalidArgumentException("Direction cannot be ${params.direction}")
46
+ UP -> viewInteraction.perform(androidx.test.espresso.action.ViewActions.swipeUp())
47
+ DOWN -> viewInteraction.perform(androidx.test.espresso.action.ViewActions.swipeDown())
48
+ LEFT -> viewInteraction.perform(androidx.test.espresso.action.ViewActions.swipeLeft())
49
+ RIGHT -> viewInteraction.perform(androidx.test.espresso.action.ViewActions.swipeRight())
50
+ else -> throw InvalidArgumentException(
51
+ "Unknown swipe direction '${params.direction}'. " +
52
+ "Only the following values are supported: " +
53
+ values().joinToString(",") { x -> x.name.lowercase() }
54
+ )
47
55
  }
48
56
  } else if (params.swiper != null) {
49
-
50
57
  val runnable = object : UiControllerRunnable<Void?> {
51
58
  override fun run(uiController: UiController): Void? {
52
59
  val swipeAction = GeneralSwipeAction(
53
- params.swiper,
54
- params.startCoordinates,
55
- params.endCoordinates,
56
- params.precisionDescriber
60
+ params.swiper,
61
+ params.startCoordinates,
62
+ params.endCoordinates,
63
+ params.precisionDescriber
57
64
  )
58
65
  AndroidLogger.info("""
59
66
  Performing general swipe action with parameters
60
67
  swiper=[${params.swiper}] startCoordinates=[${params.startCoordinates}]
61
68
  endCoordinates=[${params.endCoordinates}] precisionDescriber=[${params.precisionDescriber}]
62
- """.trimIndent())
69
+ """.trimIndent()
70
+ )
63
71
  swipeAction.perform(uiController, ViewGetter().getView(viewInteraction))
64
72
  return null
65
73
  }
@@ -69,4 +77,22 @@ class MobileSwipe : RequestHandler<MobileSwipeParams, Void?> {
69
77
 
70
78
  return null
71
79
  }
80
+
81
+ override fun handleCompose(params: MobileSwipeParams): Void? {
82
+ val nodeInteractions = getNodeInteractionById(params.elementId)
83
+
84
+ AndroidLogger.info("Performing swipe action with direction '${params.direction}'")
85
+ when (params.direction) {
86
+ UP -> nodeInteractions.performGesture { swipeUp() }
87
+ DOWN -> nodeInteractions.performGesture { swipeDown() }
88
+ LEFT -> nodeInteractions.performGesture { swipeLeft() }
89
+ RIGHT -> nodeInteractions.performGesture { swipeRight() }
90
+ else -> throw InvalidArgumentException(
91
+ "Unknown swipe direction '${params.direction}'. " +
92
+ "Only the following values are supported: " +
93
+ values().joinToString(",") { x -> x.name.lowercase() }
94
+ )
95
+ }
96
+ return null
97
+ }
72
98
  }
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "appium-espresso-driver",
3
- "version": "2.14.0",
3
+ "version": "2.15.0",
4
4
  "lockfileVersion": 2,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "appium-espresso-driver",
9
- "version": "2.14.0",
9
+ "version": "2.15.0",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
12
  "@babel/runtime": "^7.4.3",
@@ -61,10 +61,11 @@
61
61
  }
62
62
  },
63
63
  "node_modules/@appium/base-driver": {
64
- "version": "9.1.0",
64
+ "version": "9.2.3",
65
65
  "license": "Apache-2.0",
66
66
  "dependencies": {
67
- "@appium/support": "^3.0.1",
67
+ "@appium/support": "^3.1.3",
68
+ "@appium/types": "^0.8.3",
68
69
  "@colors/colors": "1.5.0",
69
70
  "@types/async-lock": "1.3.0",
70
71
  "@types/bluebird": "3.5.38",
@@ -73,7 +74,7 @@
73
74
  "@types/serve-favicon": "2.5.3",
74
75
  "async-lock": "1.4.0",
75
76
  "asyncbox": "2.9.4",
76
- "axios": "1.2.1",
77
+ "axios": "1.2.2",
77
78
  "bluebird": "3.7.2",
78
79
  "body-parser": "1.20.1",
79
80
  "es6-error": "4.1.1",
@@ -85,7 +86,7 @@
85
86
  "morgan": "1.10.0",
86
87
  "serve-favicon": "2.5.0",
87
88
  "source-map-support": "0.5.21",
88
- "type-fest": "3.4.0",
89
+ "type-fest": "3.5.1",
89
90
  "validate.js": "0.13.1"
90
91
  },
91
92
  "engines": {
@@ -101,11 +102,11 @@
101
102
  }
102
103
  },
103
104
  "node_modules/@appium/base-plugin": {
104
- "version": "2.0.1",
105
+ "version": "2.1.3",
105
106
  "extraneous": true,
106
107
  "license": "Apache-2.0",
107
108
  "dependencies": {
108
- "@appium/support": "^3.0.1"
109
+ "@appium/support": "^3.1.3"
109
110
  },
110
111
  "engines": {
111
112
  "node": "^14.17.0 || ^16.13.0 || >=18.0.0",
@@ -113,11 +114,11 @@
113
114
  }
114
115
  },
115
116
  "node_modules/@appium/docutils": {
116
- "version": "0.1.1",
117
+ "version": "0.1.5",
117
118
  "extraneous": true,
118
119
  "license": "Apache-2.0",
119
120
  "dependencies": {
120
- "@appium/support": "^3.0.1",
121
+ "@appium/support": "^3.1.3",
121
122
  "source-map-support": "0.5.21",
122
123
  "teen_process": "2.0.2"
123
124
  },
@@ -127,7 +128,7 @@
127
128
  }
128
129
  },
129
130
  "node_modules/@appium/schema": {
130
- "version": "0.1.0",
131
+ "version": "0.2.3",
131
132
  "license": "Apache-2.0",
132
133
  "dependencies": {
133
134
  "@types/json-schema": "7.0.11",
@@ -140,10 +141,11 @@
140
141
  }
141
142
  },
142
143
  "node_modules/@appium/support": {
143
- "version": "3.0.1",
144
+ "version": "3.1.3",
144
145
  "license": "Apache-2.0",
145
146
  "dependencies": {
146
- "@appium/types": "^0.7.0",
147
+ "@appium/tsconfig": "^0.2.3",
148
+ "@appium/types": "^0.8.3",
147
149
  "@colors/colors": "1.5.0",
148
150
  "@types/archiver": "5.3.1",
149
151
  "@types/base64-stream": "1.0.2",
@@ -164,7 +166,7 @@
164
166
  "@types/teen_process": "2.0.0",
165
167
  "@types/uuid": "9.0.0",
166
168
  "archiver": "5.3.1",
167
- "axios": "1.2.1",
169
+ "axios": "1.2.2",
168
170
  "base64-stream": "1.0.0",
169
171
  "bluebird": "3.7.2",
170
172
  "bplist-creator": "0.1.1",
@@ -174,7 +176,7 @@
174
176
  "glob": "8.0.3",
175
177
  "jimp": "0.16.2",
176
178
  "jsftp": "2.1.3",
177
- "klaw": "4.0.1",
179
+ "klaw": "4.1.0",
178
180
  "lockfile": "1.0.4",
179
181
  "lodash": "4.17.21",
180
182
  "log-symbols": "4.1.0",
@@ -196,7 +198,7 @@
196
198
  "source-map-support": "0.5.21",
197
199
  "supports-color": "8.1.1",
198
200
  "teen_process": "2.0.2",
199
- "type-fest": "3.4.0",
201
+ "type-fest": "3.5.1",
200
202
  "uuid": "9.0.0",
201
203
  "which": "3.0.0",
202
204
  "yauzl": "2.10.0"
@@ -241,7 +243,7 @@
241
243
  }
242
244
  },
243
245
  "node_modules/@appium/support/node_modules/minimatch": {
244
- "version": "5.1.2",
246
+ "version": "5.1.4",
245
247
  "license": "ISC",
246
248
  "dependencies": {
247
249
  "brace-expansion": "^2.0.1"
@@ -316,16 +318,28 @@
316
318
  "version": "4.0.0",
317
319
  "license": "ISC"
318
320
  },
321
+ "node_modules/@appium/tsconfig": {
322
+ "version": "0.2.3",
323
+ "license": "Apache-2.0",
324
+ "dependencies": {
325
+ "@tsconfig/node14": "1.0.3"
326
+ },
327
+ "engines": {
328
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0",
329
+ "npm": ">=8"
330
+ }
331
+ },
319
332
  "node_modules/@appium/types": {
320
- "version": "0.7.0",
333
+ "version": "0.8.3",
321
334
  "license": "Apache-2.0",
322
335
  "dependencies": {
323
- "@appium/schema": "^0.1.0",
336
+ "@appium/schema": "^0.2.3",
337
+ "@appium/tsconfig": "^0.2.3",
324
338
  "@types/express": "4.17.15",
325
339
  "@types/npmlog": "4.1.4",
326
- "@types/ws": "8.5.3",
340
+ "@types/ws": "8.5.4",
327
341
  "@wdio/types": "7.26.0",
328
- "type-fest": "3.4.0"
342
+ "type-fest": "3.5.1"
329
343
  },
330
344
  "engines": {
331
345
  "node": "^14.17.0 || ^16.13.0 || >=18.0.0",
@@ -876,6 +890,10 @@
876
890
  "node": ">=10"
877
891
  }
878
892
  },
893
+ "node_modules/@tsconfig/node14": {
894
+ "version": "1.0.3",
895
+ "license": "MIT"
896
+ },
879
897
  "node_modules/@types/archiver": {
880
898
  "version": "5.3.1",
881
899
  "license": "MIT",
@@ -1113,7 +1131,7 @@
1113
1131
  "license": "MIT"
1114
1132
  },
1115
1133
  "node_modules/@types/ws": {
1116
- "version": "8.5.3",
1134
+ "version": "8.5.4",
1117
1135
  "license": "MIT",
1118
1136
  "dependencies": {
1119
1137
  "@types/node": "*"
@@ -1186,7 +1204,7 @@
1186
1204
  }
1187
1205
  },
1188
1206
  "node_modules/ajv": {
1189
- "version": "8.11.2",
1207
+ "version": "8.12.0",
1190
1208
  "extraneous": true,
1191
1209
  "license": "MIT",
1192
1210
  "dependencies": {
@@ -1238,7 +1256,7 @@
1238
1256
  "license": "MIT"
1239
1257
  },
1240
1258
  "node_modules/appium-adb": {
1241
- "version": "9.10.22",
1259
+ "version": "9.10.23",
1242
1260
  "license": "Apache-2.0",
1243
1261
  "dependencies": {
1244
1262
  "@appium/support": "^3.0.0",
@@ -1561,7 +1579,7 @@
1561
1579
  "license": "MIT"
1562
1580
  },
1563
1581
  "node_modules/axios": {
1564
- "version": "1.2.1",
1582
+ "version": "1.2.2",
1565
1583
  "license": "MIT",
1566
1584
  "dependencies": {
1567
1585
  "follow-redirects": "^1.15.0",
@@ -2776,7 +2794,7 @@
2776
2794
  }
2777
2795
  },
2778
2796
  "node_modules/klaw": {
2779
- "version": "4.0.1",
2797
+ "version": "4.1.0",
2780
2798
  "license": "MIT",
2781
2799
  "engines": {
2782
2800
  "node": ">=14.14.0"
@@ -3775,7 +3793,7 @@
3775
3793
  }
3776
3794
  },
3777
3795
  "node_modules/readdir-glob/node_modules/minimatch": {
3778
- "version": "5.1.2",
3796
+ "version": "5.1.4",
3779
3797
  "license": "ISC",
3780
3798
  "dependencies": {
3781
3799
  "brace-expansion": "^2.0.1"
@@ -4238,7 +4256,7 @@
4238
4256
  }
4239
4257
  },
4240
4258
  "node_modules/type-fest": {
4241
- "version": "3.4.0",
4259
+ "version": "3.5.1",
4242
4260
  "license": "(MIT OR CC0-1.0)",
4243
4261
  "engines": {
4244
4262
  "node": ">=14.16"
@@ -4575,7 +4593,7 @@
4575
4593
  }
4576
4594
  },
4577
4595
  "node_modules/yaml": {
4578
- "version": "2.1.3",
4596
+ "version": "2.2.1",
4579
4597
  "extraneous": true,
4580
4598
  "license": "ISC",
4581
4599
  "engines": {
@@ -4615,9 +4633,10 @@
4615
4633
  },
4616
4634
  "dependencies": {
4617
4635
  "@appium/base-driver": {
4618
- "version": "9.1.0",
4636
+ "version": "9.2.3",
4619
4637
  "requires": {
4620
- "@appium/support": "^3.0.1",
4638
+ "@appium/support": "^3.1.3",
4639
+ "@appium/types": "^0.8.3",
4621
4640
  "@colors/colors": "1.5.0",
4622
4641
  "@types/async-lock": "1.3.0",
4623
4642
  "@types/bluebird": "3.5.38",
@@ -4626,7 +4645,7 @@
4626
4645
  "@types/serve-favicon": "2.5.3",
4627
4646
  "async-lock": "1.4.0",
4628
4647
  "asyncbox": "2.9.4",
4629
- "axios": "1.2.1",
4648
+ "axios": "1.2.2",
4630
4649
  "bluebird": "3.7.2",
4631
4650
  "body-parser": "1.20.1",
4632
4651
  "es6-error": "4.1.1",
@@ -4638,7 +4657,7 @@
4638
4657
  "morgan": "1.10.0",
4639
4658
  "serve-favicon": "2.5.0",
4640
4659
  "source-map-support": "0.5.21",
4641
- "type-fest": "3.4.0",
4660
+ "type-fest": "3.5.1",
4642
4661
  "validate.js": "0.13.1"
4643
4662
  },
4644
4663
  "dependencies": {
@@ -4648,23 +4667,23 @@
4648
4667
  }
4649
4668
  },
4650
4669
  "@appium/base-plugin": {
4651
- "version": "2.0.1",
4670
+ "version": "2.1.3",
4652
4671
  "extraneous": true,
4653
4672
  "requires": {
4654
- "@appium/support": "^3.0.1"
4673
+ "@appium/support": "^3.1.3"
4655
4674
  }
4656
4675
  },
4657
4676
  "@appium/docutils": {
4658
- "version": "0.1.1",
4677
+ "version": "0.1.5",
4659
4678
  "extraneous": true,
4660
4679
  "requires": {
4661
- "@appium/support": "^3.0.1",
4680
+ "@appium/support": "^3.1.3",
4662
4681
  "source-map-support": "0.5.21",
4663
4682
  "teen_process": "2.0.2"
4664
4683
  }
4665
4684
  },
4666
4685
  "@appium/schema": {
4667
- "version": "0.1.0",
4686
+ "version": "0.2.3",
4668
4687
  "requires": {
4669
4688
  "@types/json-schema": "7.0.11",
4670
4689
  "json-schema": "0.4.0",
@@ -4672,9 +4691,10 @@
4672
4691
  }
4673
4692
  },
4674
4693
  "@appium/support": {
4675
- "version": "3.0.1",
4694
+ "version": "3.1.3",
4676
4695
  "requires": {
4677
- "@appium/types": "^0.7.0",
4696
+ "@appium/tsconfig": "^0.2.3",
4697
+ "@appium/types": "^0.8.3",
4678
4698
  "@colors/colors": "1.5.0",
4679
4699
  "@types/archiver": "5.3.1",
4680
4700
  "@types/base64-stream": "1.0.2",
@@ -4695,7 +4715,7 @@
4695
4715
  "@types/teen_process": "2.0.0",
4696
4716
  "@types/uuid": "9.0.0",
4697
4717
  "archiver": "5.3.1",
4698
- "axios": "1.2.1",
4718
+ "axios": "1.2.2",
4699
4719
  "base64-stream": "1.0.0",
4700
4720
  "bluebird": "3.7.2",
4701
4721
  "bplist-creator": "0.1.1",
@@ -4705,7 +4725,7 @@
4705
4725
  "glob": "8.0.3",
4706
4726
  "jimp": "0.16.2",
4707
4727
  "jsftp": "2.1.3",
4708
- "klaw": "4.0.1",
4728
+ "klaw": "4.1.0",
4709
4729
  "lockfile": "1.0.4",
4710
4730
  "lodash": "4.17.21",
4711
4731
  "log-symbols": "4.1.0",
@@ -4727,7 +4747,7 @@
4727
4747
  "source-map-support": "0.5.21",
4728
4748
  "supports-color": "8.1.1",
4729
4749
  "teen_process": "2.0.2",
4730
- "type-fest": "3.4.0",
4750
+ "type-fest": "3.5.1",
4731
4751
  "uuid": "9.0.0",
4732
4752
  "which": "3.0.0",
4733
4753
  "yauzl": "2.10.0"
@@ -4756,7 +4776,7 @@
4756
4776
  }
4757
4777
  },
4758
4778
  "minimatch": {
4759
- "version": "5.1.2",
4779
+ "version": "5.1.4",
4760
4780
  "requires": {
4761
4781
  "brace-expansion": "^2.0.1"
4762
4782
  }
@@ -4804,15 +4824,22 @@
4804
4824
  }
4805
4825
  }
4806
4826
  },
4827
+ "@appium/tsconfig": {
4828
+ "version": "0.2.3",
4829
+ "requires": {
4830
+ "@tsconfig/node14": "1.0.3"
4831
+ }
4832
+ },
4807
4833
  "@appium/types": {
4808
- "version": "0.7.0",
4834
+ "version": "0.8.3",
4809
4835
  "requires": {
4810
- "@appium/schema": "^0.1.0",
4836
+ "@appium/schema": "^0.2.3",
4837
+ "@appium/tsconfig": "^0.2.3",
4811
4838
  "@types/express": "4.17.15",
4812
4839
  "@types/npmlog": "4.1.4",
4813
- "@types/ws": "8.5.3",
4840
+ "@types/ws": "8.5.4",
4814
4841
  "@wdio/types": "7.26.0",
4815
- "type-fest": "3.4.0"
4842
+ "type-fest": "3.5.1"
4816
4843
  }
4817
4844
  },
4818
4845
  "@babel/code-frame": {
@@ -5166,6 +5193,9 @@
5166
5193
  "defer-to-connect": "^2.0.0"
5167
5194
  }
5168
5195
  },
5196
+ "@tsconfig/node14": {
5197
+ "version": "1.0.3"
5198
+ },
5169
5199
  "@types/archiver": {
5170
5200
  "version": "5.3.1",
5171
5201
  "requires": {
@@ -5362,7 +5392,7 @@
5362
5392
  "extraneous": true
5363
5393
  },
5364
5394
  "@types/ws": {
5365
- "version": "8.5.3",
5395
+ "version": "8.5.4",
5366
5396
  "requires": {
5367
5397
  "@types/node": "*"
5368
5398
  }
@@ -5407,7 +5437,7 @@
5407
5437
  }
5408
5438
  },
5409
5439
  "ajv": {
5410
- "version": "8.11.2",
5440
+ "version": "8.12.0",
5411
5441
  "extraneous": true,
5412
5442
  "requires": {
5413
5443
  "fast-deep-equal": "^3.1.1",
@@ -5436,7 +5466,7 @@
5436
5466
  "version": "1.1.0"
5437
5467
  },
5438
5468
  "appium-adb": {
5439
- "version": "9.10.22",
5469
+ "version": "9.10.23",
5440
5470
  "requires": {
5441
5471
  "@appium/support": "^3.0.0",
5442
5472
  "@babel/runtime": "^7.0.0",
@@ -5665,7 +5695,7 @@
5665
5695
  "version": "0.4.0"
5666
5696
  },
5667
5697
  "axios": {
5668
- "version": "1.2.1",
5698
+ "version": "1.2.2",
5669
5699
  "requires": {
5670
5700
  "follow-redirects": "^1.15.0",
5671
5701
  "form-data": "^4.0.0",
@@ -6444,7 +6474,7 @@
6444
6474
  }
6445
6475
  },
6446
6476
  "klaw": {
6447
- "version": "4.0.1"
6477
+ "version": "4.1.0"
6448
6478
  },
6449
6479
  "kuler": {
6450
6480
  "version": "2.0.0",
@@ -7084,7 +7114,7 @@
7084
7114
  }
7085
7115
  },
7086
7116
  "minimatch": {
7087
- "version": "5.1.2",
7117
+ "version": "5.1.4",
7088
7118
  "requires": {
7089
7119
  "brace-expansion": "^2.0.1"
7090
7120
  }
@@ -7395,7 +7425,7 @@
7395
7425
  }
7396
7426
  },
7397
7427
  "type-fest": {
7398
- "version": "3.4.0"
7428
+ "version": "3.5.1"
7399
7429
  },
7400
7430
  "type-is": {
7401
7431
  "version": "1.6.18",
@@ -7607,7 +7637,7 @@
7607
7637
  "version": "4.0.2"
7608
7638
  },
7609
7639
  "yaml": {
7610
- "version": "2.1.3",
7640
+ "version": "2.2.1",
7611
7641
  "extraneous": true
7612
7642
  },
7613
7643
  "yauzl": {
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "automated testing",
8
8
  "android"
9
9
  ],
10
- "version": "2.14.0",
10
+ "version": "2.15.0",
11
11
  "author": "Appium Contributors",
12
12
  "license": "Apache-2.0",
13
13
  "repository": {