appium-uiautomator2-driver 8.0.1 → 8.1.1

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,15 @@
1
+ ## [8.1.1](https://github.com/appium/appium-uiautomator2-driver/compare/v8.1.0...v8.1.1) (2026-07-22)
2
+
3
+ ### Miscellaneous Chores
4
+
5
+ * Bump appium-android-driver ([#1024](https://github.com/appium/appium-uiautomator2-driver/issues/1024)) ([8148fc0](https://github.com/appium/appium-uiautomator2-driver/commit/8148fc0333a9ae1e88c53b45c6475f3c508dc268))
6
+
7
+ ## [8.1.0](https://github.com/appium/appium-uiautomator2-driver/compare/v8.0.1...v8.1.0) (2026-07-04)
8
+
9
+ ### Features
10
+
11
+ * bump android driver to support chromedriverGrantPermissions ([5eb3016](https://github.com/appium/appium-uiautomator2-driver/commit/5eb30163b9555f73745ded908b28e3b28fc119bb))
12
+
1
13
  ## [8.0.1](https://github.com/appium/appium-uiautomator2-driver/compare/v8.0.0...v8.0.1) (2026-07-01)
2
14
 
3
15
  ### Miscellaneous Chores
package/README.md CHANGED
@@ -181,6 +181,7 @@ appium:chromedriverExecutableDir | Full path to the folder where chromedriver ex
181
181
  appium:chromedriverChromeMappingFile | Full path to the chromedrivers mapping file. This file is used to statically map webview/browser versions to the chromedriver versions that are capable of automating them. Read [Automatic Chromedriver Discovery article](#automatic-discovery-of-compatible-chromedriver) for more details.
182
182
  appium:chromedriverUseSystemExecutable | Set it to `true` in order to enforce the usage of chromedriver, which gets downloaded by Appium automatically upon installation. This driver might not be compatible with the destination browser or a web view. `false` by default.
183
183
  appium:chromedriverDisableBuildCheck | Being set to `true` disables the compatibility validation between the current chromedriver and the destination browser/web view. Use it with care.
184
+ appium:chromedriverGrantPermissions | Being set to `true` grants all the runtime permissions to the Chrome/web view package resolved for the chromedriver session before Chrome is launched, so the automated session is not interrupted by a native runtime permission dialog (for example geolocation, camera or file access). An error is thrown if the capability is enabled but the target package name cannot be resolved. `false` by default.
184
185
  appium:recreateChromeDriverSessions | If this capability is set to `true` then chromedriver session is always going to be killed and then recreated instead of just suspending it on context switching. `false` by default
185
186
  appium:nativeWebScreenshot | Whether to use screenshoting endpoint provided by UiAutomator framework (`true`) rather than the one provided by chromedriver (`false`, the default value). Use it when you experience issues with the latter.
186
187
  appium:extractChromeAndroidPackageFromContextName | If set to `true`, tell chromedriver to attach to the android package we have associated with the context name, rather than the package of the application under test. `false` by default.
@@ -107,6 +107,9 @@ declare const UIAUTOMATOR2_CONSTRAINTS: {
107
107
  readonly chromedriverDisableBuildCheck: {
108
108
  readonly isBoolean: true;
109
109
  };
110
+ readonly chromedriverGrantPermissions: {
111
+ readonly isBoolean: true;
112
+ };
110
113
  readonly chromeLoggingPrefs: {
111
114
  readonly isObject: true;
112
115
  };
@@ -204,6 +207,9 @@ declare const UIAUTOMATOR2_CONSTRAINTS: {
204
207
  readonly skipDeviceInitialization: {
205
208
  readonly isBoolean: true;
206
209
  };
210
+ readonly skipSettingsAppReinstall: {
211
+ readonly isBoolean: true;
212
+ };
207
213
  readonly remoteAppsCacheLimit: {
208
214
  readonly isNumber: true;
209
215
  };
@@ -1 +1 @@
1
- {"version":3,"file":"constraints.d.ts","sourceRoot":"","sources":["../../lib/constraints.ts"],"names":[],"mappings":"AAGA,QAAA,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmCE,CAAC;AAEjC,eAAe,wBAAwB,CAAC;AAExC,MAAM,MAAM,uBAAuB,GAAG,OAAO,wBAAwB,CAAC"}
1
+ {"version":3,"file":"constraints.d.ts","sourceRoot":"","sources":["../../lib/constraints.ts"],"names":[],"mappings":"AAGA,QAAA,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmCE,CAAC;AAEjC,eAAe,wBAAwB,CAAC;AAExC,MAAM,MAAM,uBAAuB,GAAG,OAAO,wBAAwB,CAAC"}
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "appium-uiautomator2-driver",
3
- "version": "8.0.1",
3
+ "version": "8.1.1",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "appium-uiautomator2-driver",
9
- "version": "8.0.1",
9
+ "version": "8.1.1",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
12
  "@appium/css-locator-to-native": "^1.0.1",
13
13
  "appium-adb": "^15.0.0",
14
- "appium-android-driver": "^13.2.3",
14
+ "appium-android-driver": "^14.0.0",
15
15
  "appium-uiautomator2-server": "^10.2.1",
16
16
  "asyncbox": "^6.0.1",
17
17
  "axios": "^1.16.0",
@@ -112,9 +112,9 @@
112
112
  }
113
113
  },
114
114
  "node_modules/@appium/css-locator-to-native": {
115
- "version": "1.0.1",
116
- "resolved": "https://registry.npmjs.org/@appium/css-locator-to-native/-/css-locator-to-native-1.0.1.tgz",
117
- "integrity": "sha512-FIKjakA2E1WB6xneBlXYgUcsDqO/dwD4zXJxGE5DwkOUwvGXZ8HdLEvvQruoPRD4C2mYmn+/r89BZcXU5QMZPw==",
115
+ "version": "1.0.5",
116
+ "resolved": "https://registry.npmjs.org/@appium/css-locator-to-native/-/css-locator-to-native-1.0.5.tgz",
117
+ "integrity": "sha512-9CmPR0U7vAnKuHDX/Z57joXTlfRcWmFAclInsftSw2v+sspMUZokKTKxs198RAS0/+6a3U7734AfsJlE0EwO/A==",
118
118
  "license": "Apache-2.0",
119
119
  "dependencies": {
120
120
  "css-selector-parser": "^3.3.0"
@@ -371,15 +371,6 @@
371
371
  "@appium/logger": "^2.0.0"
372
372
  }
373
373
  },
374
- "node_modules/@colors/colors": {
375
- "version": "1.6.0",
376
- "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.6.0.tgz",
377
- "integrity": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==",
378
- "license": "MIT",
379
- "engines": {
380
- "node": ">=0.1.90"
381
- }
382
- },
383
374
  "node_modules/@img/colour": {
384
375
  "version": "1.1.0",
385
376
  "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz",
@@ -465,9 +456,9 @@
465
456
  }
466
457
  },
467
458
  "node_modules/appium-adb": {
468
- "version": "15.0.6",
469
- "resolved": "https://registry.npmjs.org/appium-adb/-/appium-adb-15.0.6.tgz",
470
- "integrity": "sha512-BNHG7at55Tyivd/IIXg5jIljmubAz4n3SrWxQqD5Xer7VIO56hM27FkB0uT56iWofqUR8KWAcKaK6grslCGlzA==",
459
+ "version": "15.0.9",
460
+ "resolved": "https://registry.npmjs.org/appium-adb/-/appium-adb-15.0.9.tgz",
461
+ "integrity": "sha512-v0WLwKPL5zAy4BSobJf2k1tRk8rEXH00v3DfU+e3kqaKzd3DnAepQD3KuHOSvnbvv0Em4sf59jRQc9Go1W3YJQ==",
471
462
  "license": "Apache-2.0",
472
463
  "dependencies": {
473
464
  "@appium/support": "^7.2.2",
@@ -484,22 +475,19 @@
484
475
  }
485
476
  },
486
477
  "node_modules/appium-android-driver": {
487
- "version": "13.2.9",
488
- "resolved": "https://registry.npmjs.org/appium-android-driver/-/appium-android-driver-13.2.9.tgz",
489
- "integrity": "sha512-s61RR6/96sUUrgjcJhrGsZKpY2ma6lgaxpblTefdQFRn4GDzepsPCcGCFemRk8YaMiVb5Y2BtYsmOHkb56ifzQ==",
478
+ "version": "14.0.0",
479
+ "resolved": "https://registry.npmjs.org/appium-android-driver/-/appium-android-driver-14.0.0.tgz",
480
+ "integrity": "sha512-6S0vPrWi6h4UUPWeCIMXC/OKwgNX9zBeS/wc1GAARDE0uqYcCy0WaML8kM68JdM0iEB8nwzXIlJ6lbUgwqzwmg==",
490
481
  "license": "Apache-2.0",
491
482
  "dependencies": {
492
- "@appium/support": "^7.2.2",
493
- "@colors/colors": "^1.6.0",
483
+ "@appium/support": "^7.2.5",
494
484
  "appium-adb": "^15.0.0",
495
485
  "appium-chromedriver": "^8.4.4",
496
486
  "asyncbox": "^6.1.0",
497
487
  "axios": "^1.16.0",
488
+ "dayjs": "^1.11.21",
498
489
  "io.appium.settings": "^7.1.3",
499
- "lodash": "^4.17.4",
500
490
  "lru-cache": "^11.1.0",
501
- "moment": "^2.24.0",
502
- "moment-timezone": "^0.x",
503
491
  "portscanner": "^2.2.0",
504
492
  "semver": "^7.0.0",
505
493
  "teen_process": "^4.0.7",
@@ -514,9 +502,9 @@
514
502
  }
515
503
  },
516
504
  "node_modules/appium-chromedriver": {
517
- "version": "8.4.14",
518
- "resolved": "https://registry.npmjs.org/appium-chromedriver/-/appium-chromedriver-8.4.14.tgz",
519
- "integrity": "sha512-17zQa+j1bv7LfYsvz2mDIBgMs9OeqsHp9lKSJeZ5NMVteIs3gTujaZTci0lNvPHqsXTmXYSGGdXdHiCEM3axAg==",
505
+ "version": "8.4.21",
506
+ "resolved": "https://registry.npmjs.org/appium-chromedriver/-/appium-chromedriver-8.4.21.tgz",
507
+ "integrity": "sha512-Ul6EEBOnUcJaVzqsxtdTZjj3KYgW/tmhKIQTyFLap/oM0bRZDoTx/fBsENpCIqLRGXvLn8irRhEkOgwWNZ0Pwg==",
520
508
  "license": "Apache-2.0",
521
509
  "dependencies": {
522
510
  "@appium/base-driver": "^10.0.0-rc.2",
@@ -536,9 +524,9 @@
536
524
  }
537
525
  },
538
526
  "node_modules/appium-uiautomator2-server": {
539
- "version": "10.2.4",
540
- "resolved": "https://registry.npmjs.org/appium-uiautomator2-server/-/appium-uiautomator2-server-10.2.4.tgz",
541
- "integrity": "sha512-Y3DjrIR68lWhCiNmJy2q940hsBXHaNfrbIib0/W2tFwpoRlDnhCQ/i3wp60v5eS8m6I4+1NCAVHYYIAYSRic4A==",
527
+ "version": "10.3.2",
528
+ "resolved": "https://registry.npmjs.org/appium-uiautomator2-server/-/appium-uiautomator2-server-10.3.2.tgz",
529
+ "integrity": "sha512-We6bbBY5HoIJJ7VaQFAj95W3tdhSbOQ2fVgYSfYu7C8UN8RsXDbxxqvFZim7gd+OmUKHumN92Zk+o54k63CL8w==",
542
530
  "license": "Apache-2.0",
543
531
  "engines": {
544
532
  "node": "^20.19.0 || ^22.12.0 || >=24.0.0",
@@ -585,9 +573,9 @@
585
573
  "license": "MIT"
586
574
  },
587
575
  "node_modules/asyncbox": {
588
- "version": "6.3.1",
589
- "resolved": "https://registry.npmjs.org/asyncbox/-/asyncbox-6.3.1.tgz",
590
- "integrity": "sha512-48aDXFweBUWkAjmE6fCobYZY+rq93OYerERLIaVYVDGZSRNFYYaI+sZEJyqUwzxDSlzOHF6ckUEqis/JmHkrMA==",
576
+ "version": "6.3.5",
577
+ "resolved": "https://registry.npmjs.org/asyncbox/-/asyncbox-6.3.5.tgz",
578
+ "integrity": "sha512-did9yFgGiHq9CzFirtQtVZKJfKo68IQzhqWmUd3R0WdO1V5LkJUy2NPQZOJZHKvNWma+ETwoJEA8ALt9h8pN1w==",
591
579
  "license": "Apache-2.0",
592
580
  "dependencies": {
593
581
  "p-limit": "^7.2.0"
@@ -653,9 +641,9 @@
653
641
  }
654
642
  },
655
643
  "node_modules/bare-fs": {
656
- "version": "4.7.2",
657
- "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-4.7.2.tgz",
658
- "integrity": "sha512-aTvMFUWkBmjzKtEQMDGGDNF8bkfpD5N1b/FCwt7A3wrU4t1o/e/85Wzkluh6JlODCjqVESYCkQCdTXqZ9G7VFg==",
644
+ "version": "4.7.4",
645
+ "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-4.7.4.tgz",
646
+ "integrity": "sha512-y1kC+ffIx/tPLdTE693uNjHfzTfr+ravR5tvWlMXe25nELbkqV400S71qHDwbkAQ1FVEZobB1NFRzFbCCcyBCQ==",
659
647
  "license": "Apache-2.0",
660
648
  "dependencies": {
661
649
  "bare-events": "^2.5.4",
@@ -676,23 +664,11 @@
676
664
  }
677
665
  }
678
666
  },
679
- "node_modules/bare-os": {
680
- "version": "3.9.3",
681
- "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-3.9.3.tgz",
682
- "integrity": "sha512-fF4Q7QsyKVF5Rj0qvI8BgUNjqzC2JvQlpTaPLjVJVxYVUX5Zr9un+y3w1HmA4nNKdFmRBT8z/WmrjvXzXVerKQ==",
683
- "license": "Apache-2.0",
684
- "engines": {
685
- "bare": ">=1.14.0"
686
- }
687
- },
688
667
  "node_modules/bare-path": {
689
- "version": "3.0.1",
690
- "resolved": "https://registry.npmjs.org/bare-path/-/bare-path-3.0.1.tgz",
691
- "integrity": "sha512-ghj2DSK/2e99a1anTVPCV4m4YIYtrbXhfM7V3D7XZLOTsybnYyaJloymGqssQc8l/or0UoDyRtNQkmkEF/ysgQ==",
692
- "license": "Apache-2.0",
693
- "dependencies": {
694
- "bare-os": "^3.0.1"
695
- }
668
+ "version": "3.1.1",
669
+ "resolved": "https://registry.npmjs.org/bare-path/-/bare-path-3.1.1.tgz",
670
+ "integrity": "sha512-JprUlveX3QjApC1cTpsUOiscADftCGVWkzitbHsRqv84hzYwYHw2mbluddsq5TvI8mH/8Ov1f4BiMAdcB0oYnQ==",
671
+ "license": "Apache-2.0"
696
672
  },
697
673
  "node_modules/bare-stream": {
698
674
  "version": "2.13.3",
@@ -722,9 +698,9 @@
722
698
  }
723
699
  },
724
700
  "node_modules/bare-url": {
725
- "version": "2.4.5",
726
- "resolved": "https://registry.npmjs.org/bare-url/-/bare-url-2.4.5.tgz",
727
- "integrity": "sha512-K+y9xF1tN+CdPu4qWwr0QiK1Al07eFPGYK5M2pDXcmHdMdgC/tT/bpmMe1hrmRHaidKLkXrC+cRNYf3XVDUhSQ==",
701
+ "version": "2.4.6",
702
+ "resolved": "https://registry.npmjs.org/bare-url/-/bare-url-2.4.6.tgz",
703
+ "integrity": "sha512-iQxPClE07hETVpbRoX7JXX3v/ZQViCxe/SYCxylRLzdEx1xJAufPptfiOqR8tqiCtmbtMDANKWszzjLu1PMAZQ==",
728
704
  "license": "Apache-2.0",
729
705
  "dependencies": {
730
706
  "bare-path": "^3.0.0"
@@ -1100,6 +1076,12 @@
1100
1076
  ],
1101
1077
  "license": "MIT"
1102
1078
  },
1079
+ "node_modules/dayjs": {
1080
+ "version": "1.11.21",
1081
+ "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.21.tgz",
1082
+ "integrity": "sha512-98IT+HOahAisibz/yjKbzuOBwYcjJ7BCLPzARyHiyEBmRz4fatF+KPJszEHXsGYjUG234aH/cOjW1wwTbKUZlA==",
1083
+ "license": "MIT"
1084
+ },
1103
1085
  "node_modules/debug": {
1104
1086
  "version": "4.4.3",
1105
1087
  "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
@@ -1731,9 +1713,9 @@
1731
1713
  }
1732
1714
  },
1733
1715
  "node_modules/iconv-lite": {
1734
- "version": "0.7.2",
1735
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.2.tgz",
1736
- "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==",
1716
+ "version": "0.7.3",
1717
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.3.tgz",
1718
+ "integrity": "sha512-IKXpvIzjnC9XTAUbVBcMfGS0EPaIXtW6v+zr+RRp+hqULEpo0owZax6wyRwPOJbWbzjYspQwusTsfVr0ifh4uQ==",
1737
1719
  "license": "MIT",
1738
1720
  "dependencies": {
1739
1721
  "safer-buffer": ">= 2.1.2 < 3.0.0"
@@ -1782,9 +1764,9 @@
1782
1764
  }
1783
1765
  },
1784
1766
  "node_modules/io.appium.settings": {
1785
- "version": "7.1.9",
1786
- "resolved": "https://registry.npmjs.org/io.appium.settings/-/io.appium.settings-7.1.9.tgz",
1787
- "integrity": "sha512-+gonaCuZSXcpbT2HGYVf0x+6brrygik90LhEKTjhl5GthE18h7wU0JUk/GMoVDRpPHeAq/S/p9RyjmPdU3Hwyw==",
1767
+ "version": "7.1.11",
1768
+ "resolved": "https://registry.npmjs.org/io.appium.settings/-/io.appium.settings-7.1.11.tgz",
1769
+ "integrity": "sha512-7S06w8RLeWt1+6I2tFXJSokH8d0dQQ4u/TnR+fRU7O7FDgiWhZHYcX7LG0SQJGzA3CUAWOO3tNZ801bm/CB5Hg==",
1788
1770
  "license": "Apache-2.0",
1789
1771
  "dependencies": {
1790
1772
  "@appium/logger": "^2.0.0-rc.1",
@@ -2102,27 +2084,6 @@
2102
2084
  "node": ">=16 || 14 >=14.17"
2103
2085
  }
2104
2086
  },
2105
- "node_modules/moment": {
2106
- "version": "2.30.1",
2107
- "resolved": "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz",
2108
- "integrity": "sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==",
2109
- "license": "MIT",
2110
- "engines": {
2111
- "node": "*"
2112
- }
2113
- },
2114
- "node_modules/moment-timezone": {
2115
- "version": "0.6.2",
2116
- "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.6.2.tgz",
2117
- "integrity": "sha512-lDsQv8FoGdBUdf0+TjGsq2orxKuXdwFlQ6Zw6TX3xIcTwTfEpCLyKqvEauvCHJ8iu3KBV8+uPhlv70YsNGdUBQ==",
2118
- "license": "MIT",
2119
- "dependencies": {
2120
- "moment": "^2.29.4"
2121
- },
2122
- "engines": {
2123
- "node": "*"
2124
- }
2125
- },
2126
2087
  "node_modules/morgan": {
2127
2088
  "version": "1.11.0",
2128
2089
  "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.11.0.tgz",
@@ -2262,9 +2223,9 @@
2262
2223
  }
2263
2224
  },
2264
2225
  "node_modules/p-limit": {
2265
- "version": "7.3.0",
2266
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-7.3.0.tgz",
2267
- "integrity": "sha512-7cIXg/Z0M5WZRblrsOla88S4wAK+zOQQWeBYfV3qJuJXMr+LnbYjaadrFaS0JILfEDPVqHyKnZ1Z/1d6J9VVUw==",
2226
+ "version": "7.3.1",
2227
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-7.3.1.tgz",
2228
+ "integrity": "sha512-0trZaiG7Y7kN/Egy9a8j47t9osC0Tch4PaIWd9yGF6bvmlk7muExRvGNYb8sXBwEKMoNKsbNN9P8EefuQekE4Q==",
2268
2229
  "license": "MIT",
2269
2230
  "dependencies": {
2270
2231
  "yocto-queue": "^1.2.1"
@@ -2956,9 +2917,9 @@
2956
2917
  }
2957
2918
  },
2958
2919
  "node_modules/teen_process": {
2959
- "version": "4.1.7",
2960
- "resolved": "https://registry.npmjs.org/teen_process/-/teen_process-4.1.7.tgz",
2961
- "integrity": "sha512-rWYaZsS8hjySi6lgrewZsOtELuya7W2xu2DEG16ibcDcH+iyqn4fyp8Y08IncBo/q8MdOibVyP9GViqzvA7nsw==",
2920
+ "version": "4.1.9",
2921
+ "resolved": "https://registry.npmjs.org/teen_process/-/teen_process-4.1.9.tgz",
2922
+ "integrity": "sha512-MUOuIDBvjJGrm5AgrrWyGbpoKbpSJWvc7xf76Hac4ONDB2BbKzMNWjCAjFZ3sX+KuioReNVJdXTO4o4Bj/gRaQ==",
2962
2923
  "license": "Apache-2.0",
2963
2924
  "dependencies": {
2964
2925
  "shell-quote": "^1.8.1"
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "automated testing",
8
8
  "android"
9
9
  ],
10
- "version": "8.0.1",
10
+ "version": "8.1.1",
11
11
  "bugs": {
12
12
  "url": "https://github.com/appium/appium-uiautomator2-driver/issues"
13
13
  },
@@ -60,7 +60,7 @@
60
60
  "dependencies": {
61
61
  "@appium/css-locator-to-native": "^1.0.1",
62
62
  "appium-adb": "^15.0.0",
63
- "appium-android-driver": "^13.2.3",
63
+ "appium-android-driver": "^14.0.0",
64
64
  "appium-uiautomator2-server": "^10.2.1",
65
65
  "asyncbox": "^6.0.1",
66
66
  "axios": "^1.16.0",