@appium/mcp-documentation 1.0.3 → 1.0.5

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.
Files changed (417) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/package.json +4 -7
  3. package/src/resources/submodules/appium/.github/PULL_REQUEST_TEMPLATE.md +28 -0
  4. package/src/resources/submodules/appium/.github/copilot-instructions.md +9 -0
  5. package/src/resources/submodules/appium/CHANGELOG.md +45 -0
  6. package/src/resources/submodules/appium/GOVERNANCE.md +189 -0
  7. package/src/resources/submodules/appium/README.md +221 -0
  8. package/src/resources/submodules/appium/ROADMAP.md +30 -0
  9. package/src/resources/submodules/appium/SPONSORS.md +3 -0
  10. package/src/resources/submodules/appium/docs/README.md +6 -0
  11. package/src/resources/submodules/appium/docs/payout.md +35 -0
  12. package/src/resources/submodules/appium/packages/appium/CHANGELOG.md +1547 -0
  13. package/src/resources/submodules/appium/packages/appium/README.md +221 -0
  14. package/src/resources/submodules/appium/packages/appium/docs/en/blog/index.md +2 -0
  15. package/src/resources/submodules/appium/packages/appium/docs/en/blog/posts/announcing-appiumconf2024.md +45 -0
  16. package/src/resources/submodules/appium/packages/appium/docs/en/blog/posts/announcing-browserstack-as-strategic-partner.md +46 -0
  17. package/src/resources/submodules/appium/packages/appium/docs/en/blog/posts/announcing-headspin-as-development-partner.md +47 -0
  18. package/src/resources/submodules/appium/packages/appium/docs/en/blog/posts/announcing-lambdatest-as-development-partner.md +36 -0
  19. package/src/resources/submodules/appium/packages/appium/docs/en/blog/posts/announcing-lambdatest-as-strategic-partner.md +42 -0
  20. package/src/resources/submodules/appium/packages/appium/docs/en/blog/posts/announcing-sauce-labs-as-strategic-partner.md +36 -0
  21. package/src/resources/submodules/appium/packages/appium/docs/en/blog/posts/announcing-sponsorship-program.md +48 -0
  22. package/src/resources/submodules/appium/packages/appium/docs/en/blog/posts/appium3.md +40 -0
  23. package/src/resources/submodules/appium/packages/appium/docs/en/blog/posts/hello-world.md +15 -0
  24. package/src/resources/submodules/appium/packages/appium/docs/en/contributing/index.md +150 -0
  25. package/src/resources/submodules/appium/packages/appium/docs/en/developing/build-docs.md +86 -0
  26. package/src/resources/submodules/appium/packages/appium/docs/en/developing/build-doctor-checks.md +141 -0
  27. package/src/resources/submodules/appium/packages/appium/docs/en/developing/build-drivers.md +1002 -0
  28. package/src/resources/submodules/appium/packages/appium/docs/en/developing/build-plugins.md +523 -0
  29. package/src/resources/submodules/appium/packages/appium/docs/en/developing/config-system.md +451 -0
  30. package/src/resources/submodules/appium/packages/appium/docs/en/developing/index.md +18 -0
  31. package/src/resources/submodules/appium/packages/appium/docs/en/developing/sensitive.md +49 -0
  32. package/src/resources/submodules/appium/packages/appium/docs/en/ecosystem/clients.md +132 -0
  33. package/src/resources/submodules/appium/packages/appium/docs/en/ecosystem/drivers.md +207 -0
  34. package/src/resources/submodules/appium/packages/appium/docs/en/ecosystem/index.md +45 -0
  35. package/src/resources/submodules/appium/packages/appium/docs/en/ecosystem/plugins.md +138 -0
  36. package/src/resources/submodules/appium/packages/appium/docs/en/ecosystem/tools.md +106 -0
  37. package/src/resources/submodules/appium/packages/appium/docs/en/guides/branch-testing.md +57 -0
  38. package/src/resources/submodules/appium/packages/appium/docs/en/guides/caching.md +76 -0
  39. package/src/resources/submodules/appium/packages/appium/docs/en/guides/caps.md +271 -0
  40. package/src/resources/submodules/appium/packages/appium/docs/en/guides/config.md +98 -0
  41. package/src/resources/submodules/appium/packages/appium/docs/en/guides/context.md +44 -0
  42. package/src/resources/submodules/appium/packages/appium/docs/en/guides/event-timing.md +73 -0
  43. package/src/resources/submodules/appium/packages/appium/docs/en/guides/execute-methods.md +122 -0
  44. package/src/resources/submodules/appium/packages/appium/docs/en/guides/grid.md +178 -0
  45. package/src/resources/submodules/appium/packages/appium/docs/en/guides/headers.md +17 -0
  46. package/src/resources/submodules/appium/packages/appium/docs/en/guides/log-filters.md +86 -0
  47. package/src/resources/submodules/appium/packages/appium/docs/en/guides/managing-exts.md +87 -0
  48. package/src/resources/submodules/appium/packages/appium/docs/en/guides/migrating-1-to-2.md +368 -0
  49. package/src/resources/submodules/appium/packages/appium/docs/en/guides/migrating-2-to-3.md +464 -0
  50. package/src/resources/submodules/appium/packages/appium/docs/en/guides/security.md +87 -0
  51. package/src/resources/submodules/appium/packages/appium/docs/en/guides/settings.md +68 -0
  52. package/src/resources/submodules/appium/packages/appium/docs/en/guides/tls.md +42 -0
  53. package/src/resources/submodules/appium/packages/appium/docs/en/index.md +59 -0
  54. package/src/resources/submodules/appium/packages/appium/docs/en/intro/appium.md +202 -0
  55. package/src/resources/submodules/appium/packages/appium/docs/en/intro/clients.md +127 -0
  56. package/src/resources/submodules/appium/packages/appium/docs/en/intro/drivers.md +188 -0
  57. package/src/resources/submodules/appium/packages/appium/docs/en/intro/history.md +196 -0
  58. package/src/resources/submodules/appium/packages/appium/docs/en/intro/index.md +39 -0
  59. package/src/resources/submodules/appium/packages/appium/docs/en/quickstart/index.md +29 -0
  60. package/src/resources/submodules/appium/packages/appium/docs/en/quickstart/install.md +50 -0
  61. package/src/resources/submodules/appium/packages/appium/docs/en/quickstart/next-steps.md +23 -0
  62. package/src/resources/submodules/appium/packages/appium/docs/en/quickstart/requirements.md +29 -0
  63. package/src/resources/submodules/appium/packages/appium/docs/en/quickstart/test-dotnet.md +105 -0
  64. package/src/resources/submodules/appium/packages/appium/docs/en/quickstart/test-java.md +23 -0
  65. package/src/resources/submodules/appium/packages/appium/docs/en/quickstart/test-js.md +75 -0
  66. package/src/resources/submodules/appium/packages/appium/docs/en/quickstart/test-py.md +60 -0
  67. package/src/resources/submodules/appium/packages/appium/docs/en/quickstart/test-rb.md +83 -0
  68. package/src/resources/submodules/appium/packages/appium/docs/en/quickstart/uiauto2-driver.md +144 -0
  69. package/src/resources/submodules/appium/packages/appium/docs/en/reference/api/appium.md +394 -0
  70. package/src/resources/submodules/appium/packages/appium/docs/en/reference/api/bidi.md +70 -0
  71. package/src/resources/submodules/appium/packages/appium/docs/en/reference/api/index.md +30 -0
  72. package/src/resources/submodules/appium/packages/appium/docs/en/reference/api/jsonwp.md +214 -0
  73. package/src/resources/submodules/appium/packages/appium/docs/en/reference/api/mjsonwp.md +151 -0
  74. package/src/resources/submodules/appium/packages/appium/docs/en/reference/api/others.md +736 -0
  75. package/src/resources/submodules/appium/packages/appium/docs/en/reference/api/plugins.md +289 -0
  76. package/src/resources/submodules/appium/packages/appium/docs/en/reference/api/webdriver.md +1114 -0
  77. package/src/resources/submodules/appium/packages/appium/docs/en/reference/cli/env-vars.md +31 -0
  78. package/src/resources/submodules/appium/packages/appium/docs/en/reference/cli/extensions.md +246 -0
  79. package/src/resources/submodules/appium/packages/appium/docs/en/reference/cli/index.md +36 -0
  80. package/src/resources/submodules/appium/packages/appium/docs/en/reference/cli/insecure-features.md +24 -0
  81. package/src/resources/submodules/appium/packages/appium/docs/en/reference/cli/server.md +78 -0
  82. package/src/resources/submodules/appium/packages/appium/docs/en/reference/cli/setup.md +76 -0
  83. package/src/resources/submodules/appium/packages/appium/docs/en/reference/index.md +31 -0
  84. package/src/resources/submodules/appium/packages/appium/docs/en/reference/session/caps.md +56 -0
  85. package/src/resources/submodules/appium/packages/appium/docs/en/reference/session/index.md +23 -0
  86. package/src/resources/submodules/appium/packages/appium/docs/en/resources/index.md +28 -0
  87. package/src/resources/submodules/appium/packages/appium/docs/en/sponsors/index.md +69 -0
  88. package/src/resources/submodules/appium/packages/appium/docs/ja/blog/index.md +2 -0
  89. package/src/resources/submodules/appium/packages/appium/docs/ja/blog/posts/announcing-appiumconf2024.md +45 -0
  90. package/src/resources/submodules/appium/packages/appium/docs/ja/blog/posts/announcing-browserstack-as-strategic-partner.md +46 -0
  91. package/src/resources/submodules/appium/packages/appium/docs/ja/blog/posts/announcing-headspin-as-development-partner.md +47 -0
  92. package/src/resources/submodules/appium/packages/appium/docs/ja/blog/posts/announcing-lambdatest-as-development-partner.md +34 -0
  93. package/src/resources/submodules/appium/packages/appium/docs/ja/blog/posts/announcing-lambdatest-as-strategic-partner.md +41 -0
  94. package/src/resources/submodules/appium/packages/appium/docs/ja/blog/posts/announcing-sauce-labs-as-strategic-partner.md +36 -0
  95. package/src/resources/submodules/appium/packages/appium/docs/ja/blog/posts/announcing-sponsorship-program.md +48 -0
  96. package/src/resources/submodules/appium/packages/appium/docs/ja/blog/posts/appium3.md +40 -0
  97. package/src/resources/submodules/appium/packages/appium/docs/ja/blog/posts/hello-world.md +15 -0
  98. package/src/resources/submodules/appium/packages/appium/docs/ja/contributing/index.md +158 -0
  99. package/src/resources/submodules/appium/packages/appium/docs/ja/developing/build-docs.md +86 -0
  100. package/src/resources/submodules/appium/packages/appium/docs/ja/developing/build-doctor-checks.md +141 -0
  101. package/src/resources/submodules/appium/packages/appium/docs/ja/developing/build-drivers.md +1010 -0
  102. package/src/resources/submodules/appium/packages/appium/docs/ja/developing/build-plugins.md +529 -0
  103. package/src/resources/submodules/appium/packages/appium/docs/ja/developing/config-system.md +468 -0
  104. package/src/resources/submodules/appium/packages/appium/docs/ja/developing/index.md +18 -0
  105. package/src/resources/submodules/appium/packages/appium/docs/ja/developing/sensitive.md +49 -0
  106. package/src/resources/submodules/appium/packages/appium/docs/ja/ecosystem/clients.md +143 -0
  107. package/src/resources/submodules/appium/packages/appium/docs/ja/ecosystem/drivers.md +219 -0
  108. package/src/resources/submodules/appium/packages/appium/docs/ja/ecosystem/index.md +45 -0
  109. package/src/resources/submodules/appium/packages/appium/docs/ja/ecosystem/plugins.md +140 -0
  110. package/src/resources/submodules/appium/packages/appium/docs/ja/ecosystem/tools.md +115 -0
  111. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/branch-testing.md +57 -0
  112. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/caching.md +78 -0
  113. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/caps.md +276 -0
  114. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/config.md +102 -0
  115. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/context.md +44 -0
  116. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/event-timing.md +75 -0
  117. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/execute-methods.md +142 -0
  118. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/grid.md +178 -0
  119. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/headers.md +17 -0
  120. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/log-filters.md +86 -0
  121. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/managing-exts.md +89 -0
  122. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/migrating-1-to-2.md +402 -0
  123. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/migrating-2-to-3.md +458 -0
  124. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/security.md +89 -0
  125. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/settings.md +70 -0
  126. package/src/resources/submodules/appium/packages/appium/docs/ja/guides/tls.md +43 -0
  127. package/src/resources/submodules/appium/packages/appium/docs/ja/index.md +55 -0
  128. package/src/resources/submodules/appium/packages/appium/docs/ja/intro/appium.md +191 -0
  129. package/src/resources/submodules/appium/packages/appium/docs/ja/intro/clients.md +139 -0
  130. package/src/resources/submodules/appium/packages/appium/docs/ja/intro/drivers.md +188 -0
  131. package/src/resources/submodules/appium/packages/appium/docs/ja/intro/history.md +196 -0
  132. package/src/resources/submodules/appium/packages/appium/docs/ja/intro/index.md +39 -0
  133. package/src/resources/submodules/appium/packages/appium/docs/ja/quickstart/index.md +23 -0
  134. package/src/resources/submodules/appium/packages/appium/docs/ja/quickstart/install.md +47 -0
  135. package/src/resources/submodules/appium/packages/appium/docs/ja/quickstart/next-steps.md +19 -0
  136. package/src/resources/submodules/appium/packages/appium/docs/ja/quickstart/requirements.md +29 -0
  137. package/src/resources/submodules/appium/packages/appium/docs/ja/quickstart/test-dotnet.md +107 -0
  138. package/src/resources/submodules/appium/packages/appium/docs/ja/quickstart/test-java.md +23 -0
  139. package/src/resources/submodules/appium/packages/appium/docs/ja/quickstart/test-js.md +77 -0
  140. package/src/resources/submodules/appium/packages/appium/docs/ja/quickstart/test-py.md +63 -0
  141. package/src/resources/submodules/appium/packages/appium/docs/ja/quickstart/test-rb.md +85 -0
  142. package/src/resources/submodules/appium/packages/appium/docs/ja/quickstart/uiauto2-driver.md +148 -0
  143. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/api/appium.md +395 -0
  144. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/api/bidi.md +71 -0
  145. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/api/index.md +30 -0
  146. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/api/jsonwp.md +215 -0
  147. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/api/mjsonwp.md +152 -0
  148. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/api/others.md +737 -0
  149. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/api/plugins.md +291 -0
  150. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/api/webdriver.md +1114 -0
  151. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/cli/env-vars.md +31 -0
  152. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/cli/extensions.md +247 -0
  153. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/cli/index.md +36 -0
  154. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/cli/insecure-features.md +23 -0
  155. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/cli/server.md +78 -0
  156. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/cli/setup.md +78 -0
  157. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/index.md +31 -0
  158. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/session/caps.md +56 -0
  159. package/src/resources/submodules/appium/packages/appium/docs/ja/reference/session/index.md +23 -0
  160. package/src/resources/submodules/appium/packages/appium/docs/ja/resources/index.md +28 -0
  161. package/src/resources/submodules/appium/packages/appium/docs/ja/sponsors/index.md +66 -0
  162. package/src/resources/submodules/appium/packages/appium/docs/overrides/assets/images/appium-logo-horiz-white.png +0 -0
  163. package/src/resources/submodules/appium/packages/appium/docs/overrides/assets/images/appium-logo-horiz.png +0 -0
  164. package/src/resources/submodules/appium/packages/appium/docs/overrides/assets/images/appium-logo-white.png +0 -0
  165. package/src/resources/submodules/appium/packages/appium/docs/overrides/assets/images/appium-logo.png +0 -0
  166. package/src/resources/submodules/appium/packages/appium/docs/overrides/assets/images/sponsor-logo-browserstack-dark.png +0 -0
  167. package/src/resources/submodules/appium/packages/appium/docs/overrides/assets/images/sponsor-logo-browserstack-light.png +0 -0
  168. package/src/resources/submodules/appium/packages/appium/docs/overrides/assets/images/sponsor-logo-lambdatest-dark.png +0 -0
  169. package/src/resources/submodules/appium/packages/appium/docs/overrides/assets/images/sponsor-logo-lambdatest-light.png +0 -0
  170. package/src/resources/submodules/appium/packages/appium/docs/overrides/assets/images/sponsor-logo-sauce.png +0 -0
  171. package/src/resources/submodules/appium/packages/appium/docs/overrides/assets/images/sponsor-logo-testmuai-dark.png +0 -0
  172. package/src/resources/submodules/appium/packages/appium/docs/overrides/assets/images/sponsor-logo-testmuai-light.png +0 -0
  173. package/src/resources/submodules/appium/packages/appium/docs/zh/blog/index.md +2 -0
  174. package/src/resources/submodules/appium/packages/appium/docs/zh/blog/posts/announcing-appiumconf2024.md +45 -0
  175. package/src/resources/submodules/appium/packages/appium/docs/zh/blog/posts/announcing-browserstack-as-strategic-partner.md +46 -0
  176. package/src/resources/submodules/appium/packages/appium/docs/zh/blog/posts/announcing-headspin-as-development-partner.md +47 -0
  177. package/src/resources/submodules/appium/packages/appium/docs/zh/blog/posts/announcing-lambdatest-as-development-partner.md +34 -0
  178. package/src/resources/submodules/appium/packages/appium/docs/zh/blog/posts/announcing-lambdatest-as-strategic-partner.md +41 -0
  179. package/src/resources/submodules/appium/packages/appium/docs/zh/blog/posts/announcing-sauce-labs-as-strategic-partner.md +36 -0
  180. package/src/resources/submodules/appium/packages/appium/docs/zh/blog/posts/announcing-sponsorship-program.md +48 -0
  181. package/src/resources/submodules/appium/packages/appium/docs/zh/blog/posts/appium3.md +40 -0
  182. package/src/resources/submodules/appium/packages/appium/docs/zh/blog/posts/hello-world.md +15 -0
  183. package/src/resources/submodules/appium/packages/appium/docs/zh/contributing/index.md +132 -0
  184. package/src/resources/submodules/appium/packages/appium/docs/zh/developing/build-docs.md +86 -0
  185. package/src/resources/submodules/appium/packages/appium/docs/zh/developing/build-doctor-checks.md +141 -0
  186. package/src/resources/submodules/appium/packages/appium/docs/zh/developing/build-drivers.md +1010 -0
  187. package/src/resources/submodules/appium/packages/appium/docs/zh/developing/build-plugins.md +529 -0
  188. package/src/resources/submodules/appium/packages/appium/docs/zh/developing/config-system.md +468 -0
  189. package/src/resources/submodules/appium/packages/appium/docs/zh/developing/index.md +18 -0
  190. package/src/resources/submodules/appium/packages/appium/docs/zh/developing/sensitive.md +49 -0
  191. package/src/resources/submodules/appium/packages/appium/docs/zh/ecosystem/clients.md +143 -0
  192. package/src/resources/submodules/appium/packages/appium/docs/zh/ecosystem/drivers.md +219 -0
  193. package/src/resources/submodules/appium/packages/appium/docs/zh/ecosystem/index.md +45 -0
  194. package/src/resources/submodules/appium/packages/appium/docs/zh/ecosystem/plugins.md +140 -0
  195. package/src/resources/submodules/appium/packages/appium/docs/zh/ecosystem/tools.md +115 -0
  196. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/branch-testing.md +57 -0
  197. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/caching.md +78 -0
  198. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/caps.md +279 -0
  199. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/config.md +102 -0
  200. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/context.md +44 -0
  201. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/event-timing.md +75 -0
  202. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/execute-methods.md +142 -0
  203. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/grid.md +178 -0
  204. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/headers.md +17 -0
  205. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/log-filters.md +86 -0
  206. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/managing-exts.md +89 -0
  207. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/migrating-1-to-2.md +410 -0
  208. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/migrating-2-to-3.md +459 -0
  209. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/security.md +89 -0
  210. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/settings.md +70 -0
  211. package/src/resources/submodules/appium/packages/appium/docs/zh/guides/tls.md +43 -0
  212. package/src/resources/submodules/appium/packages/appium/docs/zh/index.md +54 -0
  213. package/src/resources/submodules/appium/packages/appium/docs/zh/intro/appium.md +91 -0
  214. package/src/resources/submodules/appium/packages/appium/docs/zh/intro/clients.md +100 -0
  215. package/src/resources/submodules/appium/packages/appium/docs/zh/intro/drivers.md +101 -0
  216. package/src/resources/submodules/appium/packages/appium/docs/zh/intro/history.md +72 -0
  217. package/src/resources/submodules/appium/packages/appium/docs/zh/intro/index.md +36 -0
  218. package/src/resources/submodules/appium/packages/appium/docs/zh/quickstart/index.md +23 -0
  219. package/src/resources/submodules/appium/packages/appium/docs/zh/quickstart/install.md +47 -0
  220. package/src/resources/submodules/appium/packages/appium/docs/zh/quickstart/next-steps.md +19 -0
  221. package/src/resources/submodules/appium/packages/appium/docs/zh/quickstart/requirements.md +21 -0
  222. package/src/resources/submodules/appium/packages/appium/docs/zh/quickstart/test-dotnet.md +99 -0
  223. package/src/resources/submodules/appium/packages/appium/docs/zh/quickstart/test-java.md +20 -0
  224. package/src/resources/submodules/appium/packages/appium/docs/zh/quickstart/test-js.md +62 -0
  225. package/src/resources/submodules/appium/packages/appium/docs/zh/quickstart/test-py.md +57 -0
  226. package/src/resources/submodules/appium/packages/appium/docs/zh/quickstart/test-rb.md +80 -0
  227. package/src/resources/submodules/appium/packages/appium/docs/zh/quickstart/uiauto2-driver.md +119 -0
  228. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/api/appium.md +395 -0
  229. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/api/bidi.md +71 -0
  230. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/api/index.md +30 -0
  231. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/api/jsonwp.md +215 -0
  232. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/api/mjsonwp.md +152 -0
  233. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/api/others.md +737 -0
  234. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/api/plugins.md +291 -0
  235. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/api/webdriver.md +1114 -0
  236. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/cli/env-vars.md +31 -0
  237. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/cli/extensions.md +247 -0
  238. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/cli/index.md +36 -0
  239. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/cli/insecure-features.md +23 -0
  240. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/cli/server.md +78 -0
  241. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/cli/setup.md +78 -0
  242. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/index.md +31 -0
  243. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/session/caps.md +56 -0
  244. package/src/resources/submodules/appium/packages/appium/docs/zh/reference/session/index.md +23 -0
  245. package/src/resources/submodules/appium/packages/appium/docs/zh/resources/index.md +28 -0
  246. package/src/resources/submodules/appium/packages/appium/docs/zh/sponsors/index.md +66 -0
  247. package/src/resources/submodules/appium/packages/appium/types/manifest/README.md +30 -0
  248. package/src/resources/submodules/appium/packages/base-driver/CHANGELOG.md +1244 -0
  249. package/src/resources/submodules/appium/packages/base-driver/README.md +15 -0
  250. package/src/resources/submodules/appium/packages/base-driver/docs/mjsonwp/errors.md +82 -0
  251. package/src/resources/submodules/appium/packages/base-driver/docs/mjsonwp/protocol-methods.md +182 -0
  252. package/src/resources/submodules/appium/packages/base-driver/static/appium.png +0 -0
  253. package/src/resources/submodules/appium/packages/base-plugin/CHANGELOG.md +764 -0
  254. package/src/resources/submodules/appium/packages/base-plugin/README.md +15 -0
  255. package/src/resources/submodules/appium/packages/docutils/CHANGELOG.md +1038 -0
  256. package/src/resources/submodules/appium/packages/docutils/README.md +27 -0
  257. package/src/resources/submodules/appium/packages/driver-test-support/CHANGELOG.md +790 -0
  258. package/src/resources/submodules/appium/packages/driver-test-support/README.md +103 -0
  259. package/src/resources/submodules/appium/packages/eslint-config-appium-ts/CHANGELOG.md +256 -0
  260. package/src/resources/submodules/appium/packages/eslint-config-appium-ts/README.md +47 -0
  261. package/src/resources/submodules/appium/packages/execute-driver-plugin/CHANGELOG.md +671 -0
  262. package/src/resources/submodules/appium/packages/execute-driver-plugin/README.md +55 -0
  263. package/src/resources/submodules/appium/packages/fake-driver/CHANGELOG.md +603 -0
  264. package/src/resources/submodules/appium/packages/fake-driver/README.md +7 -0
  265. package/src/resources/submodules/appium/packages/fake-driver/lib/screen.png +0 -0
  266. package/src/resources/submodules/appium/packages/fake-plugin/CHANGELOG.md +780 -0
  267. package/src/resources/submodules/appium/packages/fake-plugin/README.md +7 -0
  268. package/src/resources/submodules/appium/packages/images-plugin/CHANGELOG.md +691 -0
  269. package/src/resources/submodules/appium/packages/images-plugin/README.md +27 -0
  270. package/src/resources/submodules/appium/packages/images-plugin/docs/find-by-image.md +65 -0
  271. package/src/resources/submodules/appium/packages/images-plugin/docs/image-comparison.md +203 -0
  272. package/src/resources/submodules/appium/packages/images-plugin/test/fixtures/appstore.png +0 -0
  273. package/src/resources/submodules/appium/packages/images-plugin/test/fixtures/img1.png +0 -0
  274. package/src/resources/submodules/appium/packages/images-plugin/test/fixtures/img2.png +0 -0
  275. package/src/resources/submodules/appium/packages/images-plugin/test/fixtures/img2_part.png +0 -0
  276. package/src/resources/submodules/appium/packages/logger/CHANGELOG.md +212 -0
  277. package/src/resources/submodules/appium/packages/logger/README.md +31 -0
  278. package/src/resources/submodules/appium/packages/opencv/CHANGELOG.md +446 -0
  279. package/src/resources/submodules/appium/packages/opencv/README.md +68 -0
  280. package/src/resources/submodules/appium/packages/opencv/test/e2e/images/appium-diagram.jpg +0 -0
  281. package/src/resources/submodules/appium/packages/opencv/test/e2e/images/cc1.png +0 -0
  282. package/src/resources/submodules/appium/packages/opencv/test/e2e/images/cc2.png +0 -0
  283. package/src/resources/submodules/appium/packages/opencv/test/e2e/images/cc_rotated.png +0 -0
  284. package/src/resources/submodules/appium/packages/opencv/test/e2e/images/findwaldo.jpg +0 -0
  285. package/src/resources/submodules/appium/packages/opencv/test/e2e/images/number5.png +0 -0
  286. package/src/resources/submodules/appium/packages/opencv/test/e2e/images/waldo.jpg +0 -0
  287. package/src/resources/submodules/appium/packages/plugin-test-support/CHANGELOG.md +610 -0
  288. package/src/resources/submodules/appium/packages/plugin-test-support/README.md +49 -0
  289. package/src/resources/submodules/appium/packages/relaxed-caps-plugin/CHANGELOG.md +209 -0
  290. package/src/resources/submodules/appium/packages/relaxed-caps-plugin/README.md +35 -0
  291. package/src/resources/submodules/appium/packages/schema/CHANGELOG.md +308 -0
  292. package/src/resources/submodules/appium/packages/schema/README.md +50 -0
  293. package/src/resources/submodules/appium/packages/storage-plugin/CHANGELOG.md +157 -0
  294. package/src/resources/submodules/appium/packages/storage-plugin/README.md +83 -0
  295. package/src/resources/submodules/appium/packages/strongbox/CHANGELOG.md +129 -0
  296. package/src/resources/submodules/appium/packages/strongbox/README.md +110 -0
  297. package/src/resources/submodules/appium/packages/support/CHANGELOG.md +1147 -0
  298. package/src/resources/submodules/appium/packages/support/README.md +161 -0
  299. package/src/resources/submodules/appium/packages/tsconfig/CHANGELOG.md +147 -0
  300. package/src/resources/submodules/appium/packages/tsconfig/README.md +19 -0
  301. package/src/resources/submodules/appium/packages/types/CHANGELOG.md +871 -0
  302. package/src/resources/submodules/appium/packages/types/README.md +21 -0
  303. package/src/resources/submodules/appium/packages/universal-xml-plugin/CHANGELOG.md +502 -0
  304. package/src/resources/submodules/appium/packages/universal-xml-plugin/README.md +53 -0
  305. package/src/resources/submodules/appium/renovate/README.md +55 -0
  306. package/src/resources/submodules/appium-skills/.github/dependabot.yml +11 -0
  307. package/src/resources/submodules/appium-skills/.github/workflows/pr-title.yml +10 -0
  308. package/src/resources/submodules/appium-skills/AGENTS.md +214 -0
  309. package/src/resources/submodules/appium-skills/LICENSE +201 -0
  310. package/src/resources/submodules/appium-skills/README.md +33 -0
  311. package/src/resources/submodules/appium-skills/skills/appium-troubleshooting/SKILL.md +66 -0
  312. package/src/resources/submodules/appium-skills/skills/appium-troubleshooting/references/community-search.md +51 -0
  313. package/src/resources/submodules/appium-skills/skills/appium-troubleshooting/references/uiautomator2-locators.md +34 -0
  314. package/src/resources/submodules/appium-skills/skills/appium-troubleshooting/references/uiautomator2-session-startup.md +53 -0
  315. package/src/resources/submodules/appium-skills/skills/appium-troubleshooting/references/xcuitest-element-lookup.md +23 -0
  316. package/src/resources/submodules/appium-skills/skills/appium-troubleshooting/references/xcuitest-locators.md +16 -0
  317. package/src/resources/submodules/appium-skills/skills/appium-troubleshooting/references/xcuitest-troubleshooting.md +52 -0
  318. package/src/resources/submodules/appium-skills/skills/environment-setup-android/SKILL.md +346 -0
  319. package/src/resources/submodules/appium-skills/skills/environment-setup-bundletool/SKILL.md +91 -0
  320. package/src/resources/submodules/appium-skills/skills/environment-setup-chromium/SKILL.md +260 -0
  321. package/src/resources/submodules/appium-skills/skills/environment-setup-espresso/SKILL.md +216 -0
  322. package/src/resources/submodules/appium-skills/skills/environment-setup-ffmpeg/SKILL.md +91 -0
  323. package/src/resources/submodules/appium-skills/skills/environment-setup-node/SKILL.md +128 -0
  324. package/src/resources/submodules/appium-skills/skills/environment-setup-uiautomator2/SKILL.md +225 -0
  325. package/src/resources/submodules/appium-skills/skills/environment-setup-xcuitest/SKILL.md +153 -0
  326. package/src/resources/submodules/appium-skills/skills/xcuitest-real-device-config/SKILL.md +488 -0
  327. package/src/resources/submodules/appium-uiautomator2-driver/CHANGELOG.md +1506 -0
  328. package/src/resources/submodules/appium-uiautomator2-driver/README.md +2253 -0
  329. package/src/resources/submodules/appium-uiautomator2-driver/docs/actions.md +72 -0
  330. package/src/resources/submodules/appium-uiautomator2-driver/docs/activity-startup.md +47 -0
  331. package/src/resources/submodules/appium-uiautomator2-driver/docs/android-appbundle.md +69 -0
  332. package/src/resources/submodules/appium-uiautomator2-driver/docs/android-mobile-gestures.md +352 -0
  333. package/src/resources/submodules/appium-uiautomator2-driver/docs/android-multiwindow.md +872 -0
  334. package/src/resources/submodules/appium-uiautomator2-driver/docs/architecture.md +34 -0
  335. package/src/resources/submodules/appium-uiautomator2-driver/docs/bidi.md +50 -0
  336. package/src/resources/submodules/appium-uiautomator2-driver/docs/capability-sets.md +136 -0
  337. package/src/resources/submodules/appium-uiautomator2-driver/docs/mjpeg.md +111 -0
  338. package/src/resources/submodules/appium-uiautomator2-driver/docs/scheduled-actions.md +155 -0
  339. package/src/resources/submodules/appium-uiautomator2-driver/docs/uiautomator-uiselector.md +51 -0
  340. package/src/resources/submodules/appium-uiautomator2-driver/docs/unlock/main.md +95 -0
  341. package/src/resources/submodules/appium-uiautomator2-driver/docs/unlock/screen1.png +0 -0
  342. package/src/resources/submodules/appium-uiautomator2-driver/docs/unlock/screen2.png +0 -0
  343. package/src/resources/submodules/appium-uiautomator2-driver/test/functional/assets/checkered-squares.png +0 -0
  344. package/src/resources/submodules/appium-uiautomator2-driver/test/functional/assets/start-button.png +0 -0
  345. package/src/resources/submodules/appium-uiautomator2-driver/test/functional/assets/stop-button.png +0 -0
  346. package/src/resources/submodules/appium-xcuitest-driver/.github/ISSUE_TEMPLATE.md +4 -0
  347. package/src/resources/submodules/appium-xcuitest-driver/CHANGELOG.md +3373 -0
  348. package/src/resources/submodules/appium-xcuitest-driver/README.md +55 -0
  349. package/src/resources/submodules/appium-xcuitest-driver/docs/assets/images/appium-logo-white.png +0 -0
  350. package/src/resources/submodules/appium-xcuitest-driver/docs/assets/images/appium-logo.png +0 -0
  351. package/src/resources/submodules/appium-xcuitest-driver/docs/assets/images/appium-plus-xctest.png +0 -0
  352. package/src/resources/submodules/appium-xcuitest-driver/docs/contributing.md +45 -0
  353. package/src/resources/submodules/appium-xcuitest-driver/docs/endpoints-wda.md +61 -0
  354. package/src/resources/submodules/appium-xcuitest-driver/docs/endpoints.md +95 -0
  355. package/src/resources/submodules/appium-xcuitest-driver/docs/getting-started/device-setup.md +81 -0
  356. package/src/resources/submodules/appium-xcuitest-driver/docs/getting-started/index.md +36 -0
  357. package/src/resources/submodules/appium-xcuitest-driver/docs/getting-started/installation.md +38 -0
  358. package/src/resources/submodules/appium-xcuitest-driver/docs/getting-started/provisioning-profile/assets/images/check-prov-prof.png +0 -0
  359. package/src/resources/submodules/appium-xcuitest-driver/docs/getting-started/provisioning-profile/assets/images/create-new-project.png +0 -0
  360. package/src/resources/submodules/appium-xcuitest-driver/docs/getting-started/provisioning-profile/assets/images/create-single-page.png +0 -0
  361. package/src/resources/submodules/appium-xcuitest-driver/docs/getting-started/provisioning-profile/assets/images/no-prov-prof.png +0 -0
  362. package/src/resources/submodules/appium-xcuitest-driver/docs/getting-started/provisioning-profile/assets/images/project-prov-prof.png +0 -0
  363. package/src/resources/submodules/appium-xcuitest-driver/docs/getting-started/provisioning-profile/assets/images/set-up-bundle.png +0 -0
  364. package/src/resources/submodules/appium-xcuitest-driver/docs/getting-started/provisioning-profile/assets/images/untrusted-dev.png +0 -0
  365. package/src/resources/submodules/appium-xcuitest-driver/docs/getting-started/provisioning-profile/assets/images/xcode-bundle-id.png +0 -0
  366. package/src/resources/submodules/appium-xcuitest-driver/docs/getting-started/provisioning-profile/assets/images/xcode-config.png +0 -0
  367. package/src/resources/submodules/appium-xcuitest-driver/docs/getting-started/provisioning-profile/assets/images/xcode-facebook-fail.png +0 -0
  368. package/src/resources/submodules/appium-xcuitest-driver/docs/getting-started/provisioning-profile/assets/images/xcode-facebook-succeed.png +0 -0
  369. package/src/resources/submodules/appium-xcuitest-driver/docs/getting-started/provisioning-profile/auto-config.md +54 -0
  370. package/src/resources/submodules/appium-xcuitest-driver/docs/getting-started/provisioning-profile/basic-manual-config.md +40 -0
  371. package/src/resources/submodules/appium-xcuitest-driver/docs/getting-started/provisioning-profile/full-manual-config.md +49 -0
  372. package/src/resources/submodules/appium-xcuitest-driver/docs/getting-started/provisioning-profile/generic-device-config.md +75 -0
  373. package/src/resources/submodules/appium-xcuitest-driver/docs/getting-started/provisioning-profile/index.md +117 -0
  374. package/src/resources/submodules/appium-xcuitest-driver/docs/getting-started/system-requirements.md +131 -0
  375. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/assets/images/ios-xctest-file-movement/keynote.png +0 -0
  376. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/assets/images/ios-xctest-file-movement/on_my_iphone.png +0 -0
  377. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/assets/images/ios-xctest-file-movement/top_files.png +0 -0
  378. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/attach-to-running-wda.md +43 -0
  379. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/audio-capture.md +78 -0
  380. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/biometric-auth.md +29 -0
  381. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/capability-sets.md +169 -0
  382. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/ci-setup.md +47 -0
  383. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/clipboard.md +47 -0
  384. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/file-transfer.md +147 -0
  385. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/gestures.md +55 -0
  386. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/hybrid.md +137 -0
  387. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/input-events.md +67 -0
  388. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/install-certificate.md +20 -0
  389. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/mjpeg.md +98 -0
  390. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/multiple-xcode-versions.md +37 -0
  391. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/parallel-tests.md +39 -0
  392. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/remotexpc-tunnels-real-devices.md +148 -0
  393. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/run-prebuilt-wda.md +147 -0
  394. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/run-preinstalled-wda.md +177 -0
  395. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/tvos.md +246 -0
  396. package/src/resources/submodules/appium-xcuitest-driver/docs/guides/wda-custom-server.md +283 -0
  397. package/src/resources/submodules/appium-xcuitest-driver/docs/index.md +36 -0
  398. package/src/resources/submodules/appium-xcuitest-driver/docs/overview.md +137 -0
  399. package/src/resources/submodules/appium-xcuitest-driver/docs/reference/assets/images/useXctestrunFile.png +0 -0
  400. package/src/resources/submodules/appium-xcuitest-driver/docs/reference/bidi.md +192 -0
  401. package/src/resources/submodules/appium-xcuitest-driver/docs/reference/capabilities.md +164 -0
  402. package/src/resources/submodules/appium-xcuitest-driver/docs/reference/commands.md +468 -0
  403. package/src/resources/submodules/appium-xcuitest-driver/docs/reference/element-attributes.md +157 -0
  404. package/src/resources/submodules/appium-xcuitest-driver/docs/reference/env-vars.md +18 -0
  405. package/src/resources/submodules/appium-xcuitest-driver/docs/reference/execute-methods.md +2269 -0
  406. package/src/resources/submodules/appium-xcuitest-driver/docs/reference/ios-predicate.md +196 -0
  407. package/src/resources/submodules/appium-xcuitest-driver/docs/reference/locator-strategies.md +107 -0
  408. package/src/resources/submodules/appium-xcuitest-driver/docs/reference/scripts.md +555 -0
  409. package/src/resources/submodules/appium-xcuitest-driver/docs/reference/security-flags.md +28 -0
  410. package/src/resources/submodules/appium-xcuitest-driver/docs/reference/server-args.md +19 -0
  411. package/src/resources/submodules/appium-xcuitest-driver/docs/reference/settings.md +467 -0
  412. package/src/resources/submodules/appium-xcuitest-driver/docs/reference/xpath-extensions.md +167 -0
  413. package/src/resources/submodules/appium-xcuitest-driver/docs/troubleshooting/element-lookup.md +202 -0
  414. package/src/resources/submodules/appium-xcuitest-driver/docs/troubleshooting/index.md +204 -0
  415. package/src/resources/submodules/appium-xcuitest-driver/docs/troubleshooting/wda-slowness.md +206 -0
  416. package/src/resources/submodules/appium-xcuitest-driver/test/assets/test.png +0 -0
  417. package/src/resources/submodules.zip +0 -0
@@ -0,0 +1,1506 @@
1
+ ## [7.6.0](https://github.com/appium/appium-uiautomator2-driver/compare/v7.5.2...v7.6.0) (2026-06-04)
2
+
3
+ ### Features
4
+
5
+ * Automatically terminate obsolete sessions using device id to be claimed by the current one ([#1006](https://github.com/appium/appium-uiautomator2-driver/issues/1006)) ([9f71e9f](https://github.com/appium/appium-uiautomator2-driver/commit/9f71e9f0d072dce2ec049fa219f57feb660c8bf6))
6
+
7
+ ## [7.5.2](https://github.com/appium/appium-uiautomator2-driver/compare/v7.5.1...v7.5.2) (2026-05-24)
8
+
9
+ ### Miscellaneous Chores
10
+
11
+ * Bump uia2-server ([#1004](https://github.com/appium/appium-uiautomator2-driver/issues/1004)) ([ce0d583](https://github.com/appium/appium-uiautomator2-driver/commit/ce0d5836c1ccd9f79335112c7b19b68e2502298c))
12
+
13
+ ## [7.5.1](https://github.com/appium/appium-uiautomator2-driver/compare/v7.5.0...v7.5.1) (2026-05-21)
14
+
15
+ ### Miscellaneous Chores
16
+
17
+ * Bump appium-adb to version 15 ([#1003](https://github.com/appium/appium-uiautomator2-driver/issues/1003)) ([64c39df](https://github.com/appium/appium-uiautomator2-driver/commit/64c39df963f7e0339b8445c5af3cc28a4643d647))
18
+
19
+ ## [7.5.0](https://github.com/appium/appium-uiautomator2-driver/compare/v7.4.0...v7.5.0) (2026-05-19)
20
+
21
+ ### Features
22
+
23
+ * Refactor driver helpers to mixins ([#1002](https://github.com/appium/appium-uiautomator2-driver/issues/1002)) ([32de026](https://github.com/appium/appium-uiautomator2-driver/commit/32de0263706566a47d10870a97080186a87ffdcd))
24
+
25
+ ## [7.4.0](https://github.com/appium/appium-uiautomator2-driver/compare/v7.3.0...v7.4.0) (2026-05-14)
26
+
27
+ ### Features
28
+
29
+ * Ditch lodash ([#1001](https://github.com/appium/appium-uiautomator2-driver/issues/1001)) ([d89d7ae](https://github.com/appium/appium-uiautomator2-driver/commit/d89d7ae774f4f2895d06dd704284828e35f88691))
30
+
31
+ ## [7.3.0](https://github.com/appium/appium-uiautomator2-driver/compare/v7.2.3...v7.3.0) (2026-05-13)
32
+
33
+ ### Features
34
+
35
+ * Enable strict TS mode ([#1000](https://github.com/appium/appium-uiautomator2-driver/issues/1000)) ([6f6cde0](https://github.com/appium/appium-uiautomator2-driver/commit/6f6cde08efb6b7f5669850a83c8115fd0cc363f2))
36
+
37
+ ## [7.2.3](https://github.com/appium/appium-uiautomator2-driver/compare/v7.2.2...v7.2.3) (2026-05-11)
38
+
39
+ ### Miscellaneous Chores
40
+
41
+ * **deps:** bump appium-uiautomator2-server from 9.11.2 to 10.0.1 ([#999](https://github.com/appium/appium-uiautomator2-driver/issues/999)) ([396be93](https://github.com/appium/appium-uiautomator2-driver/commit/396be93562fd24518a4e43c402daf4aa81640cff))
42
+
43
+ ## [7.2.2](https://github.com/appium/appium-uiautomator2-driver/compare/v7.2.1...v7.2.2) (2026-05-07)
44
+
45
+ ### Miscellaneous Chores
46
+
47
+ * add new line in readme to kick a new release with the latest deps ([66a5302](https://github.com/appium/appium-uiautomator2-driver/commit/66a53027cbbbd7b4ab1335f58c43ecc38e81a0c7))
48
+
49
+ ## [7.2.1](https://github.com/appium/appium-uiautomator2-driver/compare/v7.2.0...v7.2.1) (2026-05-06)
50
+
51
+ ### Miscellaneous Chores
52
+
53
+ * **deps-dev:** bump sinon from 21.1.2 to 22.0.0 ([#997](https://github.com/appium/appium-uiautomator2-driver/issues/997)) ([2ba9f36](https://github.com/appium/appium-uiautomator2-driver/commit/2ba9f36a05f6f56b8a951055fcfaa0320a67832b))
54
+
55
+ ## [7.2.0](https://github.com/appium/appium-uiautomator2-driver/compare/v7.1.2...v7.2.0) (2026-05-03)
56
+
57
+ ### Features
58
+
59
+ * Ditch bluebird ([#996](https://github.com/appium/appium-uiautomator2-driver/issues/996)) ([68a290e](https://github.com/appium/appium-uiautomator2-driver/commit/68a290e08967430665077c0fa7aef75cc3a49323))
60
+
61
+ ## [7.1.2](https://github.com/appium/appium-uiautomator2-driver/compare/v7.1.1...v7.1.2) (2026-04-10)
62
+
63
+ ### Miscellaneous Chores
64
+
65
+ * **deps-dev:** bump typescript from 5.9.3 to 6.0.2 ([#991](https://github.com/appium/appium-uiautomator2-driver/issues/991)) ([5fbcd6f](https://github.com/appium/appium-uiautomator2-driver/commit/5fbcd6f4d1d8bb3cc9d61208707eccd627b14042))
66
+
67
+ ## [7.1.1](https://github.com/appium/appium-uiautomator2-driver/compare/v7.1.0...v7.1.1) (2026-04-09)
68
+
69
+ ### Bug Fixes
70
+
71
+ * build ([#994](https://github.com/appium/appium-uiautomator2-driver/issues/994)) ([061384e](https://github.com/appium/appium-uiautomator2-driver/commit/061384e962887d0af211deab694d8acad988829c))
72
+
73
+ ### Miscellaneous Chores
74
+
75
+ * Bump android driver ([c4f0ac1](https://github.com/appium/appium-uiautomator2-driver/commit/c4f0ac1979878991aa9d4b5b9414a3de4c73b0ef))
76
+
77
+ ## [7.1.0](https://github.com/appium/appium-uiautomator2-driver/compare/v7.0.0...v7.1.0) (2026-03-24)
78
+
79
+ ### Features
80
+
81
+ * add mobile: setStylusHandwriting behind a security flag ([#990](https://github.com/appium/appium-uiautomator2-driver/issues/990)) ([0c42ef6](https://github.com/appium/appium-uiautomator2-driver/commit/0c42ef6230cb0889f3e08789c7bcff92031dafc0))
82
+
83
+ ## [7.0.0](https://github.com/appium/appium-uiautomator2-driver/compare/v6.9.3...v7.0.0) (2026-02-20)
84
+
85
+ ### ⚠ BREAKING CHANGES
86
+
87
+ * modify the mobile:listApps style to follow XCUITest driver format
88
+
89
+ ### Bug Fixes
90
+
91
+ * modify the format of listApps to follow xcuitest format ([#986](https://github.com/appium/appium-uiautomator2-driver/issues/986)) ([f163507](https://github.com/appium/appium-uiautomator2-driver/commit/f1635079e3c495e7f5b68850781f907ed7fccae6))
92
+
93
+ ## [6.9.3](https://github.com/appium/appium-uiautomator2-driver/compare/v6.9.2...v6.9.3) (2026-02-20)
94
+
95
+ ### Reverts
96
+
97
+ * Revert "fix: modify the format of listApps to follow xcuitest format ([#983](https://github.com/appium/appium-uiautomator2-driver/issues/983))" ([#985](https://github.com/appium/appium-uiautomator2-driver/issues/985)) ([d5574c9](https://github.com/appium/appium-uiautomator2-driver/commit/d5574c9b522f1adf5cabdc3baed73bfbac1582cb))
98
+
99
+ ## [6.9.2](https://github.com/appium/appium-uiautomator2-driver/compare/v6.9.1...v6.9.2) (2026-02-20)
100
+
101
+ ### Bug Fixes
102
+
103
+ * modify the format of listApps to follow xcuitest format ([#983](https://github.com/appium/appium-uiautomator2-driver/issues/983)) ([d1e3528](https://github.com/appium/appium-uiautomator2-driver/commit/d1e35280ba392de0e491bbe3f5143ec3adefaebe))
104
+
105
+ ## [6.9.1](https://github.com/appium/appium-uiautomator2-driver/compare/v6.9.0...v6.9.1) (2026-02-19)
106
+
107
+ ### Miscellaneous Chores
108
+
109
+ * Set minimum axios dependency version to 1.13.5 ([f05897e](https://github.com/appium/appium-uiautomator2-driver/commit/f05897ee49bc23c9f0789b86b17eed3d5f934cb5))
110
+
111
+ ## [6.9.0](https://github.com/appium/appium-uiautomator2-driver/compare/v6.8.2...v6.9.0) (2026-02-18)
112
+
113
+ ### Features
114
+
115
+ * add mobile:listApps ([#982](https://github.com/appium/appium-uiautomator2-driver/issues/982)) ([b98268c](https://github.com/appium/appium-uiautomator2-driver/commit/b98268cfdb8cfd6bf1c8230576af732a2f343ebc))
116
+
117
+ ## [6.8.2](https://github.com/appium/appium-uiautomator2-driver/compare/v6.8.1...v6.8.2) (2026-02-16)
118
+
119
+ ### Bug Fixes
120
+
121
+ * format ([#981](https://github.com/appium/appium-uiautomator2-driver/issues/981)) ([d5bcefc](https://github.com/appium/appium-uiautomator2-driver/commit/d5bcefcfcf746eeadda7a249ac2ccdb03d58ccc8))
122
+
123
+ ## [6.8.1](https://github.com/appium/appium-uiautomator2-driver/compare/v6.8.0...v6.8.1) (2026-02-13)
124
+
125
+ ### Miscellaneous Chores
126
+
127
+ * Update appium-uiautomator2-server version to 9.11.1 ([87016a1](https://github.com/appium/appium-uiautomator2-driver/commit/87016a172143346a284f3a1ff2c47a8e7dc7d20b))
128
+
129
+ ## [6.8.0](https://github.com/appium/appium-uiautomator2-driver/compare/v6.7.15...v6.8.0) (2026-02-02)
130
+
131
+ ### Features
132
+
133
+ * Add `source` param to `mobile: pressKey` extension method ([#979](https://github.com/appium/appium-uiautomator2-driver/issues/979)) ([b1d0b21](https://github.com/appium/appium-uiautomator2-driver/commit/b1d0b2121f32dcfe561abfa4db0f627155c36274))
134
+
135
+ ## [6.7.15](https://github.com/appium/appium-uiautomator2-driver/compare/v6.7.14...v6.7.15) (2026-01-30)
136
+
137
+ ### Miscellaneous Chores
138
+
139
+ * Update appium-uiautomator2-server ([77f970c](https://github.com/appium/appium-uiautomator2-driver/commit/77f970c96d97c998792bb6586faa29790cb673f7))
140
+
141
+ ## [6.7.14](https://github.com/appium/appium-uiautomator2-driver/compare/v6.7.13...v6.7.14) (2026-01-30)
142
+
143
+ ### Miscellaneous Chores
144
+
145
+ * Update appium-uiautomator2-server version ([a06f196](https://github.com/appium/appium-uiautomator2-driver/commit/a06f196b22c326e7f23c8795fb270f6430756b96))
146
+
147
+ ## [6.7.13](https://github.com/appium/appium-uiautomator2-driver/compare/v6.7.12...v6.7.13) (2026-01-28)
148
+
149
+ ### Miscellaneous Chores
150
+
151
+ * **deps-dev:** bump @appium/eslint-config-appium-ts from 2.0.5 to 3.0.0 ([#978](https://github.com/appium/appium-uiautomator2-driver/issues/978)) ([09109a9](https://github.com/appium/appium-uiautomator2-driver/commit/09109a9f380d754551009498949197f256c117c1))
152
+
153
+ ## [6.7.12](https://github.com/appium/appium-uiautomator2-driver/compare/v6.7.11...v6.7.12) (2026-01-27)
154
+
155
+ ### Miscellaneous Chores
156
+
157
+ * **deps:** bump asyncbox from 4.1.1 to 6.0.1 ([#977](https://github.com/appium/appium-uiautomator2-driver/issues/977)) ([042c71b](https://github.com/appium/appium-uiautomator2-driver/commit/042c71b3afff181eacf1cd16c76a7f547221a605))
158
+
159
+ ## [6.7.11](https://github.com/appium/appium-uiautomator2-driver/compare/v6.7.10...v6.7.11) (2026-01-23)
160
+
161
+ ### Miscellaneous Chores
162
+
163
+ * Exclude tests from published dist ([4f2cf50](https://github.com/appium/appium-uiautomator2-driver/commit/4f2cf50716c87956d9b8654cca453dbbfb63b640))
164
+
165
+ ## [6.7.10](https://github.com/appium/appium-uiautomator2-driver/compare/v6.7.9...v6.7.10) (2026-01-16)
166
+
167
+ ### Miscellaneous Chores
168
+
169
+ * Update appium-android-driver to version 12.6.4 ([a67b51a](https://github.com/appium/appium-uiautomator2-driver/commit/a67b51a9c2f827c93bcee4af6de6b54f8a345598))
170
+
171
+ ## [6.7.9](https://github.com/appium/appium-uiautomator2-driver/compare/v6.7.8...v6.7.9) (2026-01-13)
172
+
173
+ ### Miscellaneous Chores
174
+
175
+ * Bump appium-android-driver ([92ff8c7](https://github.com/appium/appium-uiautomator2-driver/commit/92ff8c7cc94aa6dd595d40cfc97055998503f4a1))
176
+
177
+ ## [6.7.8](https://github.com/appium/appium-uiautomator2-driver/compare/v6.7.7...v6.7.8) (2025-12-25)
178
+
179
+ ### Miscellaneous Chores
180
+
181
+ * Migrate index to typescript ([#972](https://github.com/appium/appium-uiautomator2-driver/issues/972)) ([381fadd](https://github.com/appium/appium-uiautomator2-driver/commit/381fadd7b3e53ad7fa9bd16e8e60d563ebfc8c24))
182
+
183
+ ## [6.7.7](https://github.com/appium/appium-uiautomator2-driver/compare/v6.7.6...v6.7.7) (2025-12-24)
184
+
185
+ ### Miscellaneous Chores
186
+
187
+ * Migrate the rest of command modules to typescript ([#971](https://github.com/appium/appium-uiautomator2-driver/issues/971)) ([1e7606c](https://github.com/appium/appium-uiautomator2-driver/commit/1e7606ccc41b19ace7b7ced898329f84a4774280))
188
+
189
+ ## [6.7.6](https://github.com/appium/appium-uiautomator2-driver/compare/v6.7.5...v6.7.6) (2025-12-23)
190
+
191
+ ### Miscellaneous Chores
192
+
193
+ * Migrate various command modules to typescript (part 2) ([#970](https://github.com/appium/appium-uiautomator2-driver/issues/970)) ([976d79d](https://github.com/appium/appium-uiautomator2-driver/commit/976d79dcb122f5ba28128d16c7b90a5d37dc868f))
194
+
195
+ ## [6.7.5](https://github.com/appium/appium-uiautomator2-driver/compare/v6.7.4...v6.7.5) (2025-12-22)
196
+
197
+ ### Miscellaneous Chores
198
+
199
+ * **deps:** bump teen_process from 3.0.6 to 4.0.4 ([#969](https://github.com/appium/appium-uiautomator2-driver/issues/969)) ([ff5d39f](https://github.com/appium/appium-uiautomator2-driver/commit/ff5d39f24bba4295729e5ff3a1ed114dd6a349c0))
200
+
201
+ ## [6.7.4](https://github.com/appium/appium-uiautomator2-driver/compare/v6.7.3...v6.7.4) (2025-12-22)
202
+
203
+ ### Miscellaneous Chores
204
+
205
+ * Migrate various .js modules to typescript (part 1) ([#968](https://github.com/appium/appium-uiautomator2-driver/issues/968)) ([999aa17](https://github.com/appium/appium-uiautomator2-driver/commit/999aa17f09fc246c99d332583f6d55bd47df5e57))
206
+
207
+ ## [6.7.3](https://github.com/appium/appium-uiautomator2-driver/compare/v6.7.2...v6.7.3) (2025-12-18)
208
+
209
+ ### Miscellaneous Chores
210
+
211
+ * **deps:** bump asyncbox from 3.0.0 to 4.0.1 ([#967](https://github.com/appium/appium-uiautomator2-driver/issues/967)) ([38d3274](https://github.com/appium/appium-uiautomator2-driver/commit/38d3274969194660bbfb5fef5245f9aef0ca49c9))
212
+
213
+ ## [6.7.2](https://github.com/appium/appium-uiautomator2-driver/compare/v6.7.1...v6.7.2) (2025-12-17)
214
+
215
+ ### Miscellaneous Chores
216
+
217
+ * **deps-dev:** bump @types/node from 24.10.4 to 25.0.3 ([#966](https://github.com/appium/appium-uiautomator2-driver/issues/966)) ([d1c5007](https://github.com/appium/appium-uiautomator2-driver/commit/d1c5007adc2157145bfbabd8dd07c66b646460a9))
218
+
219
+ ## [6.7.1](https://github.com/appium/appium-uiautomator2-driver/compare/v6.7.0...v6.7.1) (2025-12-12)
220
+
221
+ ### Miscellaneous Chores
222
+
223
+ * **deps:** remove `source-map-support` ([#962](https://github.com/appium/appium-uiautomator2-driver/issues/962)) ([2bd655d](https://github.com/appium/appium-uiautomator2-driver/commit/2bd655d577a41885f3b910d6405d6826c16b7b67))
224
+
225
+ ## [6.7.0](https://github.com/appium/appium-uiautomator2-driver/compare/v6.6.3...v6.7.0) (2025-12-09)
226
+
227
+ ### Features
228
+
229
+ * add appium:adbListenAllNetwork with uiautomator2:adb_listen_all_network flag to add -a option for adb ([#955](https://github.com/appium/appium-uiautomator2-driver/issues/955)) ([5b0fa8b](https://github.com/appium/appium-uiautomator2-driver/commit/5b0fa8b61b41b9273f272c9a426b048463b51ddc))
230
+
231
+ ## [6.6.3](https://github.com/appium/appium-uiautomator2-driver/compare/v6.6.2...v6.6.3) (2025-12-08)
232
+
233
+ ### Miscellaneous Chores
234
+
235
+ * Ditch usage of @appium/test-support ([#954](https://github.com/appium/appium-uiautomator2-driver/issues/954)) ([9351cfc](https://github.com/appium/appium-uiautomator2-driver/commit/9351cfc9ef911155634abc06d28b497e182657c2))
236
+
237
+ ## [6.6.2](https://github.com/appium/appium-uiautomator2-driver/compare/v6.6.1...v6.6.2) (2025-12-03)
238
+
239
+ ### Bug Fixes
240
+
241
+ * Update mobile: screenshots endpoint to properly handle virtual display ids ([#951](https://github.com/appium/appium-uiautomator2-driver/issues/951)) ([5e96d51](https://github.com/appium/appium-uiautomator2-driver/commit/5e96d518372c332b108d28f96a0303ac6f97a1e9))
242
+
243
+ ## [6.6.1](https://github.com/appium/appium-uiautomator2-driver/compare/v6.6.0...v6.6.1) (2025-12-02)
244
+
245
+ ### Miscellaneous Chores
246
+
247
+ * Document new properties on list.. methods ([#950](https://github.com/appium/appium-uiautomator2-driver/issues/950)) ([1c74692](https://github.com/appium/appium-uiautomator2-driver/commit/1c7469240bd1be919bf017ea682806288eb7b526))
248
+
249
+ ## [6.6.0](https://github.com/appium/appium-uiautomator2-driver/compare/v6.5.0...v6.6.0) (2025-12-01)
250
+
251
+ ### Features
252
+
253
+ * Add documentation for 'mobile: listDisplays' API ([#948](https://github.com/appium/appium-uiautomator2-driver/issues/948)) ([df7ca78](https://github.com/appium/appium-uiautomator2-driver/commit/df7ca7816da2f4dd71482cfaabd9d51ba86a2206))
254
+
255
+ ## [6.5.0](https://github.com/appium/appium-uiautomator2-driver/compare/v6.4.1...v6.5.0) (2025-12-01)
256
+
257
+ ### Features
258
+
259
+ * Add 'mobile: listWindows' execute method ([#945](https://github.com/appium/appium-uiautomator2-driver/issues/945)) ([78ef335](https://github.com/appium/appium-uiautomator2-driver/commit/78ef335b7c3f7193f3e93f99250041f3747ccb13))
260
+
261
+ ## [6.4.1](https://github.com/appium/appium-uiautomator2-driver/compare/v6.4.0...v6.4.1) (2025-11-30)
262
+
263
+ ### Bug Fixes
264
+
265
+ * Add missing /appium prefix to the custom endpoint ([#944](https://github.com/appium/appium-uiautomator2-driver/issues/944)) ([deed050](https://github.com/appium/appium-uiautomator2-driver/commit/deed050054bc93e98cc24dc28710902589475c29))
266
+
267
+ ## [6.4.0](https://github.com/appium/appium-uiautomator2-driver/compare/v6.3.0...v6.4.0) (2025-11-30)
268
+
269
+ ### Features
270
+
271
+ * Add 'mobile: resetAccessibilityCache' API ([#943](https://github.com/appium/appium-uiautomator2-driver/issues/943)) ([97fceda](https://github.com/appium/appium-uiautomator2-driver/commit/97fceda17ee59fd45df7fe1c285d3e60399bebd3))
272
+
273
+ ## [6.3.0](https://github.com/appium/appium-uiautomator2-driver/compare/v6.2.1...v6.3.0) (2025-11-21)
274
+
275
+ ### Features
276
+
277
+ * add context for BiDi - log.entryAdded event ([#941](https://github.com/appium/appium-uiautomator2-driver/issues/941)) ([ec14146](https://github.com/appium/appium-uiautomator2-driver/commit/ec14146cd288d4eaf4ad259aed5019532531ff51))
278
+
279
+ ## [6.2.1](https://github.com/appium/appium-uiautomator2-driver/compare/v6.2.0...v6.2.1) (2025-11-17)
280
+
281
+ ### Miscellaneous Chores
282
+
283
+ * Bump android driver ([18df1b5](https://github.com/appium/appium-uiautomator2-driver/commit/18df1b512455a5b9207fb603f2db7551e7560a5e))
284
+
285
+ ## [6.2.0](https://github.com/appium/appium-uiautomator2-driver/compare/v6.1.2...v6.2.0) (2025-11-16)
286
+
287
+ ### Features
288
+
289
+ * Document 'mobile: getChromeCapabilities' extension ([#938](https://github.com/appium/appium-uiautomator2-driver/issues/938)) ([2adb038](https://github.com/appium/appium-uiautomator2-driver/commit/2adb03869d3e5d97e065446b75bfe0c7b641ba67))
290
+
291
+ ## [6.1.2](https://github.com/appium/appium-uiautomator2-driver/compare/v6.1.1...v6.1.2) (2025-11-15)
292
+
293
+ ### Miscellaneous Chores
294
+
295
+ * publish via trusted publisher ([#937](https://github.com/appium/appium-uiautomator2-driver/issues/937)) ([a04f3d4](https://github.com/appium/appium-uiautomator2-driver/commit/a04f3d4d902ffb67d3156d3f71d9d72e6e4286d7))
296
+
297
+ ## [6.1.1](https://github.com/appium/appium-uiautomator2-driver/compare/v6.1.0...v6.1.1) (2025-11-09)
298
+
299
+ ### Miscellaneous Chores
300
+
301
+ * Migrate UiAutomator2Server class to typescript ([#936](https://github.com/appium/appium-uiautomator2-driver/issues/936)) ([ed22e9a](https://github.com/appium/appium-uiautomator2-driver/commit/ed22e9aff54f991b2a81b6c4aab7baba878ef638))
302
+
303
+ ## [6.1.0](https://github.com/appium/appium-uiautomator2-driver/compare/v6.0.2...v6.1.0) (2025-10-30)
304
+
305
+ ### Features
306
+
307
+ * Document the chromedriverForwardBiDi capability ([#934](https://github.com/appium/appium-uiautomator2-driver/issues/934)) ([83db68c](https://github.com/appium/appium-uiautomator2-driver/commit/83db68c1916b75e707591b15654da507fe6e0a03))
308
+
309
+ ## [6.0.2](https://github.com/appium/appium-uiautomator2-driver/compare/v6.0.1...v6.0.2) (2025-10-28)
310
+
311
+ ### Miscellaneous Chores
312
+
313
+ * bump io.appium.settings to 7.0.1 basis ([#932](https://github.com/appium/appium-uiautomator2-driver/issues/932)) ([9a11765](https://github.com/appium/appium-uiautomator2-driver/commit/9a11765f89c9897cd6ae119623c61582770d3ea6))
314
+
315
+ ## [6.0.1](https://github.com/appium/appium-uiautomator2-driver/compare/v6.0.0...v6.0.1) (2025-10-28)
316
+
317
+ ### Miscellaneous Chores
318
+
319
+ * **deps:** bump io.appium.settings from 6.0.8 to 7.0.0 and appium-android-driver to 12 ([#931](https://github.com/appium/appium-uiautomator2-driver/issues/931)) ([01a7b6a](https://github.com/appium/appium-uiautomator2-driver/commit/01a7b6a5cae92f9a72f5c79ae1adba2aee528cb2))
320
+
321
+ ## [6.0.0](https://github.com/appium/appium-uiautomator2-driver/compare/v5.0.7...v6.0.0) (2025-10-24)
322
+
323
+ ### ⚠ BREAKING CHANGES
324
+
325
+ * Dropped support of older Android API levels below 26 (Oreo)
326
+
327
+ ### Features
328
+
329
+ * Bump server version ([#929](https://github.com/appium/appium-uiautomator2-driver/issues/929)) ([d459273](https://github.com/appium/appium-uiautomator2-driver/commit/d459273422c336ad933f26699fac679f488d24e8))
330
+
331
+ ## [5.0.7](https://github.com/appium/appium-uiautomator2-driver/compare/v5.0.6...v5.0.7) (2025-10-24)
332
+
333
+ ### Miscellaneous Chores
334
+
335
+ * Bump various dependencies ([#928](https://github.com/appium/appium-uiautomator2-driver/issues/928)) ([435c838](https://github.com/appium/appium-uiautomator2-driver/commit/435c838e7b2b58819b46054ca67054f06a0cf44f))
336
+
337
+ ## [5.0.6](https://github.com/appium/appium-uiautomator2-driver/compare/v5.0.5...v5.0.6) (2025-10-22)
338
+
339
+ ### Miscellaneous Chores
340
+
341
+ * Bump android driver ([7730ccb](https://github.com/appium/appium-uiautomator2-driver/commit/7730ccb9970260bc217b8d1f10e1ee9e818e6941))
342
+
343
+ ## [5.0.5](https://github.com/appium/appium-uiautomator2-driver/compare/v5.0.4...v5.0.5) (2025-10-08)
344
+
345
+ ### Miscellaneous Chores
346
+
347
+ * Bump android driver ([885b8b6](https://github.com/appium/appium-uiautomator2-driver/commit/885b8b6191863a4536a511efc662a36486614a76))
348
+
349
+ ## [5.0.4](https://github.com/appium/appium-uiautomator2-driver/compare/v5.0.3...v5.0.4) (2025-10-03)
350
+
351
+ ### Miscellaneous Chores
352
+
353
+ * Bump dependencies ([5444a24](https://github.com/appium/appium-uiautomator2-driver/commit/5444a2421c1f462d6ce03fb1738432250fb0d2d0))
354
+
355
+ ## [5.0.3](https://github.com/appium/appium-uiautomator2-driver/compare/v5.0.2...v5.0.3) (2025-09-17)
356
+
357
+ ### Miscellaneous Chores
358
+
359
+ * Bump server version ([db099b5](https://github.com/appium/appium-uiautomator2-driver/commit/db099b5767c1b4340642c7ca6e90293006d39df7))
360
+
361
+ ## [5.0.2](https://github.com/appium/appium-uiautomator2-driver/compare/v5.0.1...v5.0.2) (2025-09-16)
362
+
363
+ ### Miscellaneous Chores
364
+
365
+ * bump appium-android-driver to 11.0.4 ([#921](https://github.com/appium/appium-uiautomator2-driver/issues/921)) ([0079706](https://github.com/appium/appium-uiautomator2-driver/commit/007970682b7db125397c7369e6203a4048180d8c))
366
+
367
+ ## [5.0.1](https://github.com/appium/appium-uiautomator2-driver/compare/v5.0.0...v5.0.1) (2025-09-11)
368
+
369
+ ### Bug Fixes
370
+
371
+ * Build ([3168daa](https://github.com/appium/appium-uiautomator2-driver/commit/3168daacbd94078e608a3eeafb4b864748a308fa))
372
+ * Missing await ([9d81a48](https://github.com/appium/appium-uiautomator2-driver/commit/9d81a4874ad19de85abdcc67cc6556d672442d7a))
373
+
374
+ ### Miscellaneous Chores
375
+
376
+ * Update android driver ([b4d5f19](https://github.com/appium/appium-uiautomator2-driver/commit/b4d5f19560c3d51d7215f96f6d0b8863c1d82e93))
377
+
378
+ ## [5.0.0](https://github.com/appium/appium-uiautomator2-driver/compare/v4.2.9...v5.0.0) (2025-08-19)
379
+
380
+ ### ⚠ BREAKING CHANGES
381
+
382
+ * Required Node.js version has been bumped to ^20.19.0 || ^22.12.0 || >=24.0.0
383
+ * Required npm version has been bumped to >=10
384
+ * Required Appium server version has been bumped to >=3.0.0-rc.2
385
+
386
+ ### Features
387
+
388
+ * Update server compatibility for appium 3 ([#915](https://github.com/appium/appium-uiautomator2-driver/issues/915)) ([fab8535](https://github.com/appium/appium-uiautomator2-driver/commit/fab8535bde0b1904cfa44afbe08e2d9a61560f55))
389
+
390
+ ## [4.2.9](https://github.com/appium/appium-uiautomator2-driver/compare/v4.2.8...v4.2.9) (2025-08-17)
391
+
392
+ ### Miscellaneous Chores
393
+
394
+ * remove no reference dev deps rimraf ([#914](https://github.com/appium/appium-uiautomator2-driver/issues/914)) ([f19349f](https://github.com/appium/appium-uiautomator2-driver/commit/f19349fb5a7ee9b1e131a5aa52a40e5ab9ded190))
395
+
396
+ ## [4.2.8](https://github.com/appium/appium-uiautomator2-driver/compare/v4.2.7...v4.2.8) (2025-08-06)
397
+
398
+ ### Miscellaneous Chores
399
+
400
+ * bump appium-android-driver to 10.3.11 ([#913](https://github.com/appium/appium-uiautomator2-driver/issues/913)) ([88d6cab](https://github.com/appium/appium-uiautomator2-driver/commit/88d6cab34eb1927787236b8e6d3b8114d6412a0d))
401
+
402
+ ## [4.2.7](https://github.com/appium/appium-uiautomator2-driver/compare/v4.2.6...v4.2.7) (2025-07-23)
403
+
404
+ ### Miscellaneous Chores
405
+
406
+ * docs for tooltip-text and text-has-clickable-span fields ([#912](https://github.com/appium/appium-uiautomator2-driver/issues/912)) ([fa77432](https://github.com/appium/appium-uiautomator2-driver/commit/fa7743205cb22f7144a12fd0ce5f76064819aa7d))
407
+
408
+ ## [4.2.6](https://github.com/appium/appium-uiautomator2-driver/compare/v4.2.5...v4.2.6) (2025-07-20)
409
+
410
+ ### Bug Fixes
411
+
412
+ * do not proxy commands for retrieving session data ([#911](https://github.com/appium/appium-uiautomator2-driver/issues/911)) ([3f86b10](https://github.com/appium/appium-uiautomator2-driver/commit/3f86b103a60fc3ff471bdd7e0f5c94711891aa21))
413
+
414
+ ## [4.2.5](https://github.com/appium/appium-uiautomator2-driver/compare/v4.2.4...v4.2.5) (2025-07-06)
415
+
416
+ ### Miscellaneous Chores
417
+
418
+ * Bump android driver ([01fe469](https://github.com/appium/appium-uiautomator2-driver/commit/01fe46943b875f7b00737bde911932e9bb876118))
419
+
420
+ ## [4.2.4](https://github.com/appium/appium-uiautomator2-driver/compare/v4.2.3...v4.2.4) (2025-06-24)
421
+
422
+ ### Miscellaneous Chores
423
+
424
+ * Bump android driver ([64c28f2](https://github.com/appium/appium-uiautomator2-driver/commit/64c28f24495028b975e9b33e719c38d6642ff6c8))
425
+
426
+ ## [4.2.3](https://github.com/appium/appium-uiautomator2-driver/compare/v4.2.2...v4.2.3) (2025-04-25)
427
+
428
+ ### Miscellaneous Chores
429
+
430
+ * add deprecated: true for get clipboard ([#887](https://github.com/appium/appium-uiautomator2-driver/issues/887)) ([19c6417](https://github.com/appium/appium-uiautomator2-driver/commit/19c6417ccfc336899d09d6bdf9b4532ad625babe))
431
+
432
+ ## [4.2.2](https://github.com/appium/appium-uiautomator2-driver/compare/v4.2.1...v4.2.2) (2025-04-23)
433
+
434
+ ### Miscellaneous Chores
435
+
436
+ * Bump android driver ([d52988e](https://github.com/appium/appium-uiautomator2-driver/commit/d52988ee20cba853d83218fee8cedbdc33c8a91c))
437
+
438
+ ## [4.2.1](https://github.com/appium/appium-uiautomator2-driver/compare/v4.2.0...v4.2.1) (2025-04-16)
439
+
440
+ ### Bug Fixes
441
+
442
+ * Update deprecated constant usage ([#885](https://github.com/appium/appium-uiautomator2-driver/issues/885)) ([9719cb5](https://github.com/appium/appium-uiautomator2-driver/commit/9719cb5bcffb55f0fd805eadfabf8804dad5c533))
443
+
444
+ ## [4.2.0](https://github.com/appium/appium-uiautomator2-driver/compare/v4.1.5...v4.2.0) (2025-04-08)
445
+
446
+ ### Features
447
+
448
+ * document the new currentDisplayId setting ([#882](https://github.com/appium/appium-uiautomator2-driver/issues/882)) ([cbb8d93](https://github.com/appium/appium-uiautomator2-driver/commit/cbb8d9305aba36bb5decc03445d596cfb095d6fa))
449
+
450
+ ## [4.1.5](https://github.com/appium/appium-uiautomator2-driver/compare/v4.1.4...v4.1.5) (2025-03-21)
451
+
452
+ ### Miscellaneous Chores
453
+
454
+ * Bump server version ([#874](https://github.com/appium/appium-uiautomator2-driver/issues/874)) ([b3b0898](https://github.com/appium/appium-uiautomator2-driver/commit/b3b089896e664efa50b0388e44ce1aa0e6af16bd))
455
+
456
+ ## [4.1.4](https://github.com/appium/appium-uiautomator2-driver/compare/v4.1.3...v4.1.4) (2025-03-20)
457
+
458
+ ### Bug Fixes
459
+
460
+ * Explicitly wait for the server shutdown before killing it forcefully ([#873](https://github.com/appium/appium-uiautomator2-driver/issues/873)) ([d3f50ef](https://github.com/appium/appium-uiautomator2-driver/commit/d3f50efc8d5b73451a1d105b5b684b67d7857326))
461
+
462
+ ## [4.1.3](https://github.com/appium/appium-uiautomator2-driver/compare/v4.1.2...v4.1.3) (2025-03-17)
463
+
464
+ ### Miscellaneous Chores
465
+
466
+ * remove duplicated mobile: backgroundApp definition from uia2 ([#871](https://github.com/appium/appium-uiautomator2-driver/issues/871)) ([1602c51](https://github.com/appium/appium-uiautomator2-driver/commit/1602c51d94084556fb3b1f2c2bba9e2605d7927a))
467
+
468
+ ## [4.1.2](https://github.com/appium/appium-uiautomator2-driver/compare/v4.1.1...v4.1.2) (2025-03-14)
469
+
470
+ ### Bug Fixes
471
+
472
+ * the return value of getConnectivity to follow the description ([e36a3cd](https://github.com/appium/appium-uiautomator2-driver/commit/e36a3cd2368459be44a0be76553b0024ba0ce060))
473
+
474
+ ## [4.1.1](https://github.com/appium/appium-uiautomator2-driver/compare/v4.1.0...v4.1.1) (2025-03-10)
475
+
476
+ ### Miscellaneous Chores
477
+
478
+ * bump io.appium.settings ([#870](https://github.com/appium/appium-uiautomator2-driver/issues/870)) ([3a999e7](https://github.com/appium/appium-uiautomator2-driver/commit/3a999e79ec610f1f3a28bcdb8bebb42ace093ce1))
479
+
480
+ ## [4.1.0](https://github.com/appium/appium-uiautomator2-driver/compare/v4.0.3...v4.1.0) (2025-02-26)
481
+
482
+ ### Features
483
+
484
+ * add more params in mobile: setGeolocation ([#867](https://github.com/appium/appium-uiautomator2-driver/issues/867)) ([8ead690](https://github.com/appium/appium-uiautomator2-driver/commit/8ead690dc9e8da1571604c4aba146644d6a1c2ab))
485
+
486
+ ## [4.0.3](https://github.com/appium/appium-uiautomator2-driver/compare/v4.0.2...v4.0.3) (2025-02-22)
487
+
488
+ ### Miscellaneous Chores
489
+
490
+ * Bumo android driver ([b28baaa](https://github.com/appium/appium-uiautomator2-driver/commit/b28baaa668b27d0496dad26cb69991be3b632e3f))
491
+
492
+ ## [4.0.2](https://github.com/appium/appium-uiautomator2-driver/compare/v4.0.1...v4.0.2) (2025-02-21)
493
+
494
+ ### Bug Fixes
495
+
496
+ * Add base path to proxy options ([#865](https://github.com/appium/appium-uiautomator2-driver/issues/865)) ([30a6ac3](https://github.com/appium/appium-uiautomator2-driver/commit/30a6ac3656b3ae28a07f4e6465fd630de88c16ca))
497
+
498
+ ## [4.0.1](https://github.com/appium/appium-uiautomator2-driver/compare/v4.0.0...v4.0.1) (2025-02-10)
499
+
500
+ ### Miscellaneous Chores
501
+
502
+ * docs for the new fields from AccessibilityNodeInfo ([#862](https://github.com/appium/appium-uiautomator2-driver/issues/862)) ([815c247](https://github.com/appium/appium-uiautomator2-driver/commit/815c247000e03cceac683e7a4122156e3ea5e2ea))
503
+
504
+ ## [4.0.0](https://github.com/appium/appium-uiautomator2-driver/compare/v3.10.0...v4.0.0) (2025-02-01)
505
+
506
+ ### ⚠ BREAKING CHANGES
507
+
508
+ * The following methods and properties were **removed**:
509
+ - mobileSetClipboard -> replaced by setClipboard
510
+ - mobileGetClipboard -> replaced by getClipboard
511
+ - executeMobile -> replaced by execute (the` script` argument must also be changed to start with `mobile: `)
512
+ - mobileCommandsMapping -> replaced by executeMethodsMap
513
+ - mobileGetAppStrings -> replaced by getStrings
514
+ * The following methods were **changed**:
515
+ - mobileDragGesture
516
+ - mobileFlingGesture
517
+ - mobileDoubleClickGesture
518
+ - mobileClickGesture
519
+ - mobilePinchOpenGesture
520
+ - mobilePinchCloseGesture
521
+ - mobileSwipeGesture
522
+ - mobileScrollGesture
523
+ - mobileScrollBackTo
524
+ - mobileScroll
525
+ - mobileDeepLink
526
+ - mobileAcceptAlert
527
+ - mobileDismissAlert
528
+ - mobileType
529
+ - mobileReplaceElementValue
530
+ - mobileInstallMultipleApks
531
+ - mobileBackgroundApp
532
+ - mobilePressKey
533
+ - mobileScreenshots
534
+ - mobileScheduleAction
535
+ - mobileUnscheduleAction
536
+ - mobileGetActionHistory
537
+ * The following obsolete type definitions were **removed**:
538
+ - DragOptions
539
+ - FlingOptions
540
+ - ClickOptions
541
+ - LongClickOptions
542
+ - PinchOptions
543
+ - SwipeOptions
544
+ - ScrollGestureOptions
545
+ - ScrollElementToElementOpts
546
+ - ScrollOptions
547
+ - DeepLinkOpts
548
+ - AcceptAlertOptions
549
+ - DismissAlertOptions
550
+ - TypingOptions
551
+ - ReplaceValueOptions
552
+ - InstallMultipleApksOptions
553
+ - BackgroundAppOptions
554
+ - PressKeyOptions
555
+ - ScreenshotsOpts
556
+ - ActionArgs
557
+ - SetClipboardOpts
558
+ - GetAppStringsOptions
559
+
560
+
561
+ Based on https://github.com/appium/appium-android-driver/pull/982
562
+
563
+ ### Features
564
+
565
+ * Add support of executeMethodMap ([#863](https://github.com/appium/appium-uiautomator2-driver/issues/863)) ([4c45c3a](https://github.com/appium/appium-uiautomator2-driver/commit/4c45c3a85a574cb4d207ab827ce98421812d99f2))
566
+
567
+ ## [3.10.0](https://github.com/appium/appium-uiautomator2-driver/compare/v3.9.9...v3.10.0) (2025-01-24)
568
+
569
+ ### Features
570
+
571
+ * bump appium-adb to handle screenState=SCREEN_STATE_OFF as locked ([#861](https://github.com/appium/appium-uiautomator2-driver/issues/861)) ([fdd362a](https://github.com/appium/appium-uiautomator2-driver/commit/fdd362a8087c66aa6a0825bb18865a43e2ee5288))
572
+
573
+ ## [3.9.9](https://github.com/appium/appium-uiautomator2-driver/compare/v3.9.8...v3.9.9) (2025-01-16)
574
+
575
+ ### Miscellaneous Chores
576
+
577
+ * bump io.appium.settings to include the broad cast receiver update ([#858](https://github.com/appium/appium-uiautomator2-driver/issues/858)) ([bd8cfe7](https://github.com/appium/appium-uiautomator2-driver/commit/bd8cfe77da8ab3f47a80af7550c0f8ebb9abb695))
578
+
579
+ ## [3.9.8](https://github.com/appium/appium-uiautomator2-driver/compare/v3.9.7...v3.9.8) (2025-01-09)
580
+
581
+ ### Miscellaneous Chores
582
+
583
+ * Add closing log quote ([2398564](https://github.com/appium/appium-uiautomator2-driver/commit/2398564421a8a05490cf077b8f32b8f6ddfb5f32))
584
+ * Bump adb ([#857](https://github.com/appium/appium-uiautomator2-driver/issues/857)) ([b443c0a](https://github.com/appium/appium-uiautomator2-driver/commit/b443c0ac13930ea9a0f9008a07538632bbb6e81f))
585
+
586
+ ## [3.9.7](https://github.com/appium/appium-uiautomator2-driver/compare/v3.9.6...v3.9.7) (2025-01-05)
587
+
588
+ ### Miscellaneous Chores
589
+
590
+ * Bump android driver ([f5a326e](https://github.com/appium/appium-uiautomator2-driver/commit/f5a326e385e782f1298d03901b8d4f3168ff0b90))
591
+
592
+ ## [3.9.6](https://github.com/appium/appium-uiautomator2-driver/compare/v3.9.5...v3.9.6) (2024-12-27)
593
+
594
+ ### Bug Fixes
595
+
596
+ * Tune retrieval of package launch info ([#853](https://github.com/appium/appium-uiautomator2-driver/issues/853)) ([90a68b1](https://github.com/appium/appium-uiautomator2-driver/commit/90a68b1d9cba41c28b198a4ee9aa4fa55379acb3))
597
+
598
+ ## [3.9.5](https://github.com/appium/appium-uiautomator2-driver/compare/v3.9.4...v3.9.5) (2024-12-14)
599
+
600
+ ### Miscellaneous Chores
601
+
602
+ * Tune contextUpdated event generation ([#850](https://github.com/appium/appium-uiautomator2-driver/issues/850)) ([324d094](https://github.com/appium/appium-uiautomator2-driver/commit/324d0940767e201e4675f31c2fbca0d34ed7da22))
603
+
604
+ ## [3.9.4](https://github.com/appium/appium-uiautomator2-driver/compare/v3.9.3...v3.9.4) (2024-12-13)
605
+
606
+ ### Miscellaneous Chores
607
+
608
+ * Replace occurrences of the deprecated errorAndThrow API ([#849](https://github.com/appium/appium-uiautomator2-driver/issues/849)) ([c562ca5](https://github.com/appium/appium-uiautomator2-driver/commit/c562ca58897e4df84e78a199b40a552b5659e026))
609
+
610
+ ## [3.9.3](https://github.com/appium/appium-uiautomator2-driver/compare/v3.9.2...v3.9.3) (2024-12-11)
611
+
612
+ ### Bug Fixes
613
+
614
+ * Make package parameter of deep link command optional ([#847](https://github.com/appium/appium-uiautomator2-driver/issues/847)) ([ddc7477](https://github.com/appium/appium-uiautomator2-driver/commit/ddc7477b6c62b93469364ed433b88cbdbb91e4b7))
615
+
616
+ ## [3.9.2](https://github.com/appium/appium-uiautomator2-driver/compare/v3.9.1...v3.9.2) (2024-12-09)
617
+
618
+ ### Miscellaneous Chores
619
+
620
+ * allow compatibility with appium 3 beta ([471e156](https://github.com/appium/appium-uiautomator2-driver/commit/471e156b9b537465b6a0d49cd92c0431be57fd64))
621
+
622
+ ## [3.9.1](https://github.com/appium/appium-uiautomator2-driver/compare/v3.9.0...v3.9.1) (2024-11-27)
623
+
624
+ ### Miscellaneous Chores
625
+
626
+ * Bump android driver ([1bea8e7](https://github.com/appium/appium-uiautomator2-driver/commit/1bea8e761d941fd2e7c4d4cc1a84570d1786f327))
627
+
628
+ ## [3.9.0](https://github.com/appium/appium-uiautomator2-driver/compare/v3.8.3...v3.9.0) (2024-11-18)
629
+
630
+ ### Features
631
+
632
+ * Add a BiDi event upon context change ([#838](https://github.com/appium/appium-uiautomator2-driver/issues/838)) ([fabbc8d](https://github.com/appium/appium-uiautomator2-driver/commit/fabbc8dad628fe0c9d776a542180711d836ff3be))
633
+
634
+ ## [3.8.3](https://github.com/appium/appium-uiautomator2-driver/compare/v3.8.2...v3.8.3) (2024-11-14)
635
+
636
+ ### Miscellaneous Chores
637
+
638
+ * Bump android driver ([728270f](https://github.com/appium/appium-uiautomator2-driver/commit/728270f90f6f82e37edb831a4b7e3832a5ea43eb))
639
+
640
+ ## [3.8.2](https://github.com/appium/appium-uiautomator2-driver/compare/v3.8.1...v3.8.2) (2024-11-11)
641
+
642
+ ### Miscellaneous Chores
643
+
644
+ * bump adb to include supporting activities with unicode chars ([#836](https://github.com/appium/appium-uiautomator2-driver/issues/836)) ([c36962e](https://github.com/appium/appium-uiautomator2-driver/commit/c36962ebc135a1d8f761aa4e1a9bada3488408c0))
645
+
646
+ ## [3.8.1](https://github.com/appium/appium-uiautomator2-driver/compare/v3.8.0...v3.8.1) (2024-10-31)
647
+
648
+ ### Miscellaneous Chores
649
+
650
+ * Bump android driver ([aeb5809](https://github.com/appium/appium-uiautomator2-driver/commit/aeb58092119ac58a7ff1c761332dd75f028f3e0a))
651
+
652
+ ## [3.8.0](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.11...v3.8.0) (2024-09-17)
653
+
654
+ ### Features
655
+
656
+ * Bump appium-chromedriver ([#828](https://github.com/appium/appium-uiautomator2-driver/issues/828)) ([653b140](https://github.com/appium/appium-uiautomator2-driver/commit/653b140b639c03ea8573efc2d3fe0662f60df681))
657
+
658
+ ## [3.7.11](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.10...v3.7.11) (2024-09-13)
659
+
660
+ ### Miscellaneous Chores
661
+
662
+ * Bump android driver ([c62ae8c](https://github.com/appium/appium-uiautomator2-driver/commit/c62ae8c632fb343e0d724a444994625c6b9a2f94))
663
+
664
+ ## [3.7.10](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.9...v3.7.10) (2024-09-12)
665
+
666
+ ### Miscellaneous Chores
667
+
668
+ * Bump android driver ([2b9ed23](https://github.com/appium/appium-uiautomator2-driver/commit/2b9ed23bec173c9c8b7683c5de42c04c7256a6f8))
669
+
670
+ ## [3.7.9](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.8...v3.7.9) (2024-09-03)
671
+
672
+ ### Miscellaneous Chores
673
+
674
+ * Bump server version ([716d364](https://github.com/appium/appium-uiautomator2-driver/commit/716d36404915c8b867b1b90fc9f986f681162357))
675
+
676
+ ## [3.7.8](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.7...v3.7.8) (2024-08-29)
677
+
678
+ ### Miscellaneous Chores
679
+
680
+ * bump android driver ([3b6b270](https://github.com/appium/appium-uiautomator2-driver/commit/3b6b270150221f84498824bd31904c91c2fafb20))
681
+
682
+ ## [3.7.7](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.6...v3.7.7) (2024-08-14)
683
+
684
+ ### Bug Fixes
685
+
686
+ * apply the latest io.appium.settings ([a1dfde4](https://github.com/appium/appium-uiautomator2-driver/commit/a1dfde4b3d9ffcfcdd89caa0e9382231970359bb))
687
+
688
+ ## [3.7.6](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.5...v3.7.6) (2024-08-06)
689
+
690
+ ### Miscellaneous Chores
691
+
692
+ * Bump adb ([36b265e](https://github.com/appium/appium-uiautomator2-driver/commit/36b265e9a39cf089936a145e7fc251a23423fbdb))
693
+
694
+ ## [3.7.5](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.4...v3.7.5) (2024-08-02)
695
+
696
+ ### Miscellaneous Chores
697
+
698
+ * Replace fancy-log dependency with appium logger ([#809](https://github.com/appium/appium-uiautomator2-driver/issues/809)) ([8ec7aa7](https://github.com/appium/appium-uiautomator2-driver/commit/8ec7aa7eff586a0b3ee898bb20dbded8ed44bc34))
699
+
700
+ ## [3.7.4](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.3...v3.7.4) (2024-07-23)
701
+
702
+ ### Bug Fixes
703
+
704
+ * stop uia2 process as well in cleanupAutomationLeftovers ([#807](https://github.com/appium/appium-uiautomator2-driver/issues/807)) ([69abc42](https://github.com/appium/appium-uiautomator2-driver/commit/69abc425ff36359ac7b58bead82ece0e0fdd1ab3))
705
+
706
+ ## [3.7.3](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.2...v3.7.3) (2024-07-15)
707
+
708
+ ### Miscellaneous Chores
709
+
710
+ * Bump android driver ([#806](https://github.com/appium/appium-uiautomator2-driver/issues/806)) ([b109867](https://github.com/appium/appium-uiautomator2-driver/commit/b109867e7e2a06fc301c9e82596d698979a338ee))
711
+
712
+ ## [3.7.2](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.1...v3.7.2) (2024-07-09)
713
+
714
+ ### Miscellaneous Chores
715
+
716
+ * Remove extra import ([9f2d42d](https://github.com/appium/appium-uiautomator2-driver/commit/9f2d42da50a444cd77d4432151656b2252e2c941))
717
+
718
+ ## [3.7.1](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.0...v3.7.1) (2024-07-03)
719
+
720
+ ### Bug Fixes
721
+
722
+ * Update instrumentation process handling logic ([#801](https://github.com/appium/appium-uiautomator2-driver/issues/801)) ([75da896](https://github.com/appium/appium-uiautomator2-driver/commit/75da896701399420b4880a71d0d28db59fa5d322))
723
+
724
+ ## [3.7.0](https://github.com/appium/appium-uiautomator2-driver/compare/v3.6.1...v3.7.0) (2024-06-27)
725
+
726
+ ### Features
727
+
728
+ * Add mobile: wrappers for clipboard APIs ([#800](https://github.com/appium/appium-uiautomator2-driver/issues/800)) ([7789b1d](https://github.com/appium/appium-uiautomator2-driver/commit/7789b1d4636c4ade8a6f28e759acccdfb25b53f8))
729
+
730
+ ## [3.6.1](https://github.com/appium/appium-uiautomator2-driver/compare/v3.6.0...v3.6.1) (2024-06-23)
731
+
732
+ ### Miscellaneous Chores
733
+
734
+ * Bump chai and chai-as-promised ([#799](https://github.com/appium/appium-uiautomator2-driver/issues/799)) ([35734db](https://github.com/appium/appium-uiautomator2-driver/commit/35734db0225b5d4af3d2aa72c2160149c94b954b))
735
+
736
+ ## [3.6.0](https://github.com/appium/appium-uiautomator2-driver/compare/v3.5.7...v3.6.0) (2024-06-22)
737
+
738
+ ### Features
739
+
740
+ * Document injectedImageProperties capability ([#798](https://github.com/appium/appium-uiautomator2-driver/issues/798)) ([48e3255](https://github.com/appium/appium-uiautomator2-driver/commit/48e3255eff9c3c0a6cd075f2a279ed1937664844))
741
+
742
+ ## [3.5.7](https://github.com/appium/appium-uiautomator2-driver/compare/v3.5.6...v3.5.7) (2024-06-22)
743
+
744
+ ### Bug Fixes
745
+
746
+ * uninstall installed uia2 servers if they were greater than on-going session ([#796](https://github.com/appium/appium-uiautomator2-driver/issues/796)) ([62b9056](https://github.com/appium/appium-uiautomator2-driver/commit/62b9056f4002d42d16a469709e03f43af6aec5a5))
747
+
748
+ ## [3.5.6](https://github.com/appium/appium-uiautomator2-driver/compare/v3.5.5...v3.5.6) (2024-06-18)
749
+
750
+ ### Miscellaneous Chores
751
+
752
+ * Bump server version ([91c7707](https://github.com/appium/appium-uiautomator2-driver/commit/91c770761cc5e33f153be8ec18591bc1cd07135f))
753
+
754
+ ## [3.5.5](https://github.com/appium/appium-uiautomator2-driver/compare/v3.5.4...v3.5.5) (2024-06-16)
755
+
756
+ ### Miscellaneous Chores
757
+
758
+ * bump server version ([8e6ec16](https://github.com/appium/appium-uiautomator2-driver/commit/8e6ec166ce99d65bee84182c5fee1a326460d71f))
759
+
760
+ ## [3.5.4](https://github.com/appium/appium-uiautomator2-driver/compare/v3.5.3...v3.5.4) (2024-06-14)
761
+
762
+ ### Bug Fixes
763
+
764
+ * Add a workaround for wrong adb exit code on service stop ([#794](https://github.com/appium/appium-uiautomator2-driver/issues/794)) ([31e79ab](https://github.com/appium/appium-uiautomator2-driver/commit/31e79ab059700c2b09297a705ac3b03268ec6b84))
765
+
766
+ ## [3.5.3](https://github.com/appium/appium-uiautomator2-driver/compare/v3.5.2...v3.5.3) (2024-06-10)
767
+
768
+ ### Miscellaneous Chores
769
+
770
+ * use latest io.appium.settings ([#789](https://github.com/appium/appium-uiautomator2-driver/issues/789)) ([13104ba](https://github.com/appium/appium-uiautomator2-driver/commit/13104ba69d55def1540c782425e62bac9050f8fa))
771
+
772
+ ## [3.5.2](https://github.com/appium/appium-uiautomator2-driver/compare/v3.5.1...v3.5.2) (2024-05-21)
773
+
774
+
775
+ ### Bug Fixes
776
+
777
+ * bring mobile: backgroundApp back ([#783](https://github.com/appium/appium-uiautomator2-driver/issues/783)) ([fcd7033](https://github.com/appium/appium-uiautomator2-driver/commit/fcd70333c5a94c3210f38d01039d2577d24f7b99))
778
+
779
+ ## [3.5.1](https://github.com/appium/appium-uiautomator2-driver/compare/v3.5.0...v3.5.1) (2024-05-16)
780
+
781
+
782
+ ### Miscellaneous Chores
783
+
784
+ * Update dev dependencies ([4224eaa](https://github.com/appium/appium-uiautomator2-driver/commit/4224eaab352a43bef0bbc5e50942c3d1af340cd7))
785
+
786
+ ## [3.5.0](https://github.com/appium/appium-uiautomator2-driver/compare/v3.4.0...v3.5.0) (2024-05-12)
787
+
788
+
789
+ ### Features
790
+
791
+ * Align the implementation of execute method map with other android drivers ([#780](https://github.com/appium/appium-uiautomator2-driver/issues/780)) ([d376a9b](https://github.com/appium/appium-uiautomator2-driver/commit/d376a9b344c2138fe89403640733dd489e965606))
792
+
793
+ ## [3.4.0](https://github.com/appium/appium-uiautomator2-driver/compare/v3.3.0...v3.4.0) (2024-05-11)
794
+
795
+
796
+ ### Features
797
+
798
+ * Add helpers to control bluetooth and nfc adapters ([#779](https://github.com/appium/appium-uiautomator2-driver/issues/779)) ([a9403ff](https://github.com/appium/appium-uiautomator2-driver/commit/a9403ffcd58560be6af0f8c80b302cf750789a98))
799
+
800
+ ## [3.3.0](https://github.com/appium/appium-uiautomator2-driver/compare/v3.2.0...v3.3.0) (2024-05-09)
801
+
802
+
803
+ ### Features
804
+
805
+ * add user option for mobile: isAppInstalled ([#778](https://github.com/appium/appium-uiautomator2-driver/issues/778)) ([2a0e9a5](https://github.com/appium/appium-uiautomator2-driver/commit/2a0e9a5d98a0f14bb69914136df24ff2c7633c02))
806
+
807
+ ## [3.2.0](https://github.com/appium/appium-uiautomator2-driver/compare/v3.1.0...v3.2.0) (2024-05-03)
808
+
809
+
810
+ ### Features
811
+
812
+ * Add `mobile: injectEmulatorCameraImage` extension ([#772](https://github.com/appium/appium-uiautomator2-driver/issues/772)) ([768a629](https://github.com/appium/appium-uiautomator2-driver/commit/768a629b1d24e7c96ffc28c9068f4bfe5a2393b4))
813
+
814
+ ## [3.1.0](https://github.com/appium/appium-uiautomator2-driver/compare/v3.0.8...v3.1.0) (2024-04-10)
815
+
816
+
817
+ ### Features
818
+
819
+ * Add the support of `timeZone` capability ([#761](https://github.com/appium/appium-uiautomator2-driver/issues/761)) ([f2039d3](https://github.com/appium/appium-uiautomator2-driver/commit/f2039d30c0df22f4720b285c9ca262e2d3f9d24f))
820
+
821
+ ## [3.0.8](https://github.com/appium/appium-uiautomator2-driver/compare/v3.0.7...v3.0.8) (2024-04-09)
822
+
823
+
824
+ ### Miscellaneous Chores
825
+
826
+ * Remove extra imports ([11aea03](https://github.com/appium/appium-uiautomator2-driver/commit/11aea03218fcb2e59e07bfcff25ddca86846a36f))
827
+
828
+ ## [3.0.7](https://github.com/appium/appium-uiautomator2-driver/compare/v3.0.6...v3.0.7) (2024-04-09)
829
+
830
+
831
+ ### Miscellaneous Chores
832
+
833
+ * Skip signature checks of server packages ([#759](https://github.com/appium/appium-uiautomator2-driver/issues/759)) ([6e43272](https://github.com/appium/appium-uiautomator2-driver/commit/6e4327213d8519f6a0768c2b0516ea01638a70b3))
834
+
835
+ ## [3.0.6](https://github.com/appium/appium-uiautomator2-driver/compare/v3.0.5...v3.0.6) (2024-04-08)
836
+
837
+
838
+ ### Miscellaneous Chores
839
+
840
+ * Bump android driver ([1cf44c6](https://github.com/appium/appium-uiautomator2-driver/commit/1cf44c6840f82de9ba59ee5c333b55fb24be70a2))
841
+
842
+ ## [3.0.5](https://github.com/appium/appium-uiautomator2-driver/compare/v3.0.4...v3.0.5) (2024-04-01)
843
+
844
+
845
+ ### Miscellaneous Chores
846
+
847
+ * bump appium-android-driver ([2683085](https://github.com/appium/appium-uiautomator2-driver/commit/2683085a2f412673b6ef6721e9b1632d2e5c505c))
848
+
849
+ ## [3.0.4](https://github.com/appium/appium-uiautomator2-driver/compare/v3.0.3...v3.0.4) (2024-03-20)
850
+
851
+
852
+ ### Bug Fixes
853
+
854
+ * Skip chromedriver proxy suspend if the proxy is not initialized yet ([#754](https://github.com/appium/appium-uiautomator2-driver/issues/754)) ([a6d9146](https://github.com/appium/appium-uiautomator2-driver/commit/a6d91468dc409bfdac017695ca4fb52a600d15a5))
855
+
856
+ ## [3.0.3](https://github.com/appium/appium-uiautomator2-driver/compare/v3.0.2...v3.0.3) (2024-03-18)
857
+
858
+
859
+ ### Miscellaneous Chores
860
+
861
+ * bump android driver ([decda6d](https://github.com/appium/appium-uiautomator2-driver/commit/decda6db2583dcf8d9c290df0f546278f4bca398))
862
+
863
+ ## [3.0.2](https://github.com/appium/appium-uiautomator2-driver/compare/v3.0.1...v3.0.2) (2024-03-07)
864
+
865
+
866
+ ### Miscellaneous Chores
867
+
868
+ * bump typescript ([b6f4cec](https://github.com/appium/appium-uiautomator2-driver/commit/b6f4cec5e95ef0d8196ad3134784c9e85cd0363c))
869
+
870
+ ## [3.0.1](https://github.com/appium/appium-uiautomator2-driver/compare/v3.0.0...v3.0.1) (2024-02-23)
871
+
872
+
873
+ ### Miscellaneous Chores
874
+
875
+ * bump uia2 server that has androidx.test.uiautomator:uiautomator:2.3.0 ([#744](https://github.com/appium/appium-uiautomator2-driver/issues/744)) ([56dab5d](https://github.com/appium/appium-uiautomator2-driver/commit/56dab5d4081bf9ca64b8736be636c5210965dc34))
876
+
877
+ ## [3.0.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.45.1...v3.0.0) (2024-02-10)
878
+
879
+
880
+ ### ⚠ BREAKING CHANGES
881
+
882
+ * Removed obsolete MJSONWP touch route handlers. Use W3C actions or gesture shortcuts instead:
883
+
884
+ - doSwipe
885
+ - doDrag
886
+ - touchDown
887
+ - touchLongClick
888
+ - touchMove
889
+ - touchUp
890
+ - tap
891
+ - doPerformMultiAction
892
+
893
+ ### Features
894
+
895
+ * Removed obsolete MJSONWP touch actions ([#738](https://github.com/appium/appium-uiautomator2-driver/issues/738)) ([520fe26](https://github.com/appium/appium-uiautomator2-driver/commit/520fe262c70883ba18aa01b2a34873516fbc8557))
896
+
897
+ ## [2.45.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.45.0...v2.45.1) (2024-02-10)
898
+
899
+
900
+ ### Bug Fixes
901
+
902
+ * Argument type for performActions API ([#735](https://github.com/appium/appium-uiautomator2-driver/issues/735)) ([d0e7c2f](https://github.com/appium/appium-uiautomator2-driver/commit/d0e7c2f9859de4382cd35366915b1b4a3af34514))
903
+
904
+ ## [2.45.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.44.3...v2.45.0) (2024-02-08)
905
+
906
+
907
+ ### Features
908
+
909
+ * add checkVersion option for mobile:installApp ([#736](https://github.com/appium/appium-uiautomator2-driver/issues/736)) ([95d46f4](https://github.com/appium/appium-uiautomator2-driver/commit/95d46f47cb738a6087da2d5262c0c7b6af1fedd1))
910
+
911
+ ## [2.44.3](https://github.com/appium/appium-uiautomator2-driver/compare/v2.44.2...v2.44.3) (2024-02-07)
912
+
913
+
914
+ ### Bug Fixes
915
+
916
+ * Init adb as the first step upon session creation ([#733](https://github.com/appium/appium-uiautomator2-driver/issues/733)) ([fbe80e9](https://github.com/appium/appium-uiautomator2-driver/commit/fbe80e9df51b84da115184ebe1974760cdd47d67))
917
+
918
+ ## [2.44.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.44.1...v2.44.2) (2024-02-06)
919
+
920
+
921
+ ### Bug Fixes
922
+
923
+ * Detect the browser activity dynamically ([#730](https://github.com/appium/appium-uiautomator2-driver/issues/730)) ([9cc4116](https://github.com/appium/appium-uiautomator2-driver/commit/9cc4116759f0e8d4975c92a6667660bea38609d9))
924
+
925
+ ## [2.44.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.44.0...v2.44.1) (2024-02-06)
926
+
927
+
928
+ ### Bug Fixes
929
+
930
+ * fix mobile: screenshots for WDIO ([#731](https://github.com/appium/appium-uiautomator2-driver/issues/731)) ([ac28c0c](https://github.com/appium/appium-uiautomator2-driver/commit/ac28c0cde3716dd684e088b4d12ca823b4316aaf))
931
+
932
+ ## [2.44.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.43.4...v2.44.0) (2024-02-02)
933
+
934
+
935
+ ### Features
936
+
937
+ * Paralellize session setup steps ([#729](https://github.com/appium/appium-uiautomator2-driver/issues/729)) ([b11356f](https://github.com/appium/appium-uiautomator2-driver/commit/b11356fa075aa71003bc363df050286ee738f4b8))
938
+
939
+ ## [2.43.4](https://github.com/appium/appium-uiautomator2-driver/compare/v2.43.3...v2.43.4) (2024-01-30)
940
+
941
+
942
+ ### Miscellaneous Chores
943
+
944
+ * Bump server version ([f0b0b84](https://github.com/appium/appium-uiautomator2-driver/commit/f0b0b8448e97465921f16064fd14b7cbc9eb4fa6))
945
+
946
+ ## [2.43.3](https://github.com/appium/appium-uiautomator2-driver/compare/v2.43.2...v2.43.3) (2024-01-29)
947
+
948
+
949
+ ### Miscellaneous Chores
950
+
951
+ * Bump android driver ([ffd126d](https://github.com/appium/appium-uiautomator2-driver/commit/ffd126d5eef1d89622b93785348279042c4f832d))
952
+
953
+ ## [2.43.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.43.1...v2.43.2) (2024-01-27)
954
+
955
+
956
+ ### Miscellaneous Chores
957
+
958
+ * Remove husky and commitlint ([#726](https://github.com/appium/appium-uiautomator2-driver/issues/726)) ([e9147ee](https://github.com/appium/appium-uiautomator2-driver/commit/e9147ee98d8e751414cd8c3c3a9986256e66641a))
959
+
960
+ ## [2.43.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.43.0...v2.43.1) (2024-01-26)
961
+
962
+
963
+ ### Bug Fixes
964
+
965
+ * createADB ([#724](https://github.com/appium/appium-uiautomator2-driver/issues/724)) ([fef068a](https://github.com/appium/appium-uiautomator2-driver/commit/fef068a4c5d4513223c1f9e3a5f1ba53c32adec6))
966
+
967
+ ## [2.43.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.42.2...v2.43.0) (2024-01-25)
968
+
969
+
970
+ ### Features
971
+
972
+ * Update android-driver ([#720](https://github.com/appium/appium-uiautomator2-driver/issues/720)) ([f352359](https://github.com/appium/appium-uiautomator2-driver/commit/f35235970904fd89f736b4fdd9a8635858719edb))
973
+
974
+ ## [2.42.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.42.1...v2.42.2) (2024-01-23)
975
+
976
+
977
+ ### Bug Fixes
978
+
979
+ * bump appium android driver to 7.8.3 (for getContexts) ([#718](https://github.com/appium/appium-uiautomator2-driver/issues/718)) ([1bd9358](https://github.com/appium/appium-uiautomator2-driver/commit/1bd9358566a902dcd7062e0f0667a724cc1a1c26))
980
+
981
+ ## [2.42.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.42.0...v2.42.1) (2024-01-14)
982
+
983
+
984
+ ### Miscellaneous Chores
985
+
986
+ * Bump appium-adb ([#716](https://github.com/appium/appium-uiautomator2-driver/issues/716)) ([598f137](https://github.com/appium/appium-uiautomator2-driver/commit/598f137c7bcde8694a189f161397f6cb70c7277c))
987
+
988
+ ## [2.42.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.41.0...v2.42.0) (2024-01-12)
989
+
990
+
991
+ ### Features
992
+
993
+ * Use APIs imported from the io.appium.settings package ([#715](https://github.com/appium/appium-uiautomator2-driver/issues/715)) ([f55625a](https://github.com/appium/appium-uiautomator2-driver/commit/f55625a32afc174cec6d92178ef15bcc0bb0d79f))
994
+
995
+ ## [2.41.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.40.2...v2.41.0) (2024-01-11)
996
+
997
+
998
+ ### Features
999
+
1000
+ * Document the helper method to simulate the low-memory event ([#714](https://github.com/appium/appium-uiautomator2-driver/issues/714)) ([d9c9863](https://github.com/appium/appium-uiautomator2-driver/commit/d9c98638296c4d770f9e50d86ec6775cd4b00c2a))
1001
+
1002
+ ## [2.40.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.40.1...v2.40.2) (2024-01-10)
1003
+
1004
+
1005
+ ### Miscellaneous Chores
1006
+
1007
+ * Bump server version ([48b6914](https://github.com/appium/appium-uiautomator2-driver/commit/48b691423db1100787ee033a225a7f5211906f8a))
1008
+
1009
+ ## [2.40.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.40.0...v2.40.1) (2024-01-10)
1010
+
1011
+
1012
+ ### Bug Fixes
1013
+
1014
+ * io.appium.settings process check as the foreground service check ([#713](https://github.com/appium/appium-uiautomator2-driver/issues/713)) ([4fcdd7b](https://github.com/appium/appium-uiautomator2-driver/commit/4fcdd7b4f96f8fae7f658340c5e228fb85c210cf))
1015
+
1016
+ ## [2.40.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.39.0...v2.40.0) (2024-01-07)
1017
+
1018
+
1019
+ ### Features
1020
+
1021
+ * update io.appium.settings to use newer location deps ([#712](https://github.com/appium/appium-uiautomator2-driver/issues/712)) ([0d595aa](https://github.com/appium/appium-uiautomator2-driver/commit/0d595aac2bbadd3756a9ff58f7906ea57da078f1))
1022
+
1023
+ ## [2.39.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.38.0...v2.39.0) (2024-01-05)
1024
+
1025
+
1026
+ ### Features
1027
+
1028
+ * Add doctor checks ([#711](https://github.com/appium/appium-uiautomator2-driver/issues/711)) ([0e6c8fe](https://github.com/appium/appium-uiautomator2-driver/commit/0e6c8fed60345125f8ca78d70bb8e934cd50a6bc))
1029
+
1030
+ ## [2.38.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.37.1...v2.38.0) (2024-01-05)
1031
+
1032
+
1033
+ ### Features
1034
+
1035
+ * Bump the server version ([#710](https://github.com/appium/appium-uiautomator2-driver/issues/710)) ([4ee3b7e](https://github.com/appium/appium-uiautomator2-driver/commit/4ee3b7eeac77fa53d3e437bc311e31a1d057176e))
1036
+
1037
+ ## [2.37.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.37.0...v2.37.1) (2024-01-03)
1038
+
1039
+
1040
+ ### Bug Fixes
1041
+
1042
+ * minor fixes for upcoming androidx.test.uiautomator:uiautomator:2.3.0 ([#708](https://github.com/appium/appium-uiautomator2-driver/issues/708)) ([166ab62](https://github.com/appium/appium-uiautomator2-driver/commit/166ab623e99b02e06b423d1737814896ee685cba))
1043
+
1044
+ ## [2.37.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.36.0...v2.37.0) (2023-12-30)
1045
+
1046
+
1047
+ ### Features
1048
+
1049
+ * bump the server's targetSdkVersion from 32 to 33 ([#705](https://github.com/appium/appium-uiautomator2-driver/issues/705)) ([8fda76d](https://github.com/appium/appium-uiautomator2-driver/commit/8fda76d2900d63b51b08c0e3aa912bb11ee8992d))
1050
+
1051
+ ## [2.36.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.35.0...v2.36.0) (2023-12-26)
1052
+
1053
+
1054
+ ### Features
1055
+
1056
+ * bump server's targetSdkVersion from 30 to 32 ([#702](https://github.com/appium/appium-uiautomator2-driver/issues/702)) ([e49b991](https://github.com/appium/appium-uiautomator2-driver/commit/e49b991a3be7872f61def86c8c3f1d4815678736))
1057
+
1058
+ ## [2.35.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.34.2...v2.35.0) (2023-12-18)
1059
+
1060
+
1061
+ ### Features
1062
+
1063
+ * let mobile: getContexts gives waitForWebviewMs ([#699](https://github.com/appium/appium-uiautomator2-driver/issues/699)) ([c0f90cf](https://github.com/appium/appium-uiautomator2-driver/commit/c0f90cfd8c01d3852fbc3786c6458290441f18ae))
1064
+
1065
+ ## [2.34.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.34.1...v2.34.2) (2023-12-02)
1066
+
1067
+
1068
+ ### Miscellaneous Chores
1069
+
1070
+ * update publish.js.yml ([#696](https://github.com/appium/appium-uiautomator2-driver/issues/696)) ([2af984f](https://github.com/appium/appium-uiautomator2-driver/commit/2af984f3d5d289c25d0b4a694f8a057db068c48a))
1071
+
1072
+ ## [2.34.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.34.0...v2.34.1) (2023-11-08)
1073
+
1074
+
1075
+ ### Miscellaneous Chores
1076
+
1077
+ * use omit to prune dev and peer ([#693](https://github.com/appium/appium-uiautomator2-driver/issues/693)) ([712cfce](https://github.com/appium/appium-uiautomator2-driver/commit/712cfce64767ae0d0785da49248f9d35bcf15015))
1078
+
1079
+ ## [2.34.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.33.1...v2.34.0) (2023-11-03)
1080
+
1081
+
1082
+ ### Features
1083
+
1084
+ * Add support of UiModeManager service commands ([#691](https://github.com/appium/appium-uiautomator2-driver/issues/691)) ([89303f0](https://github.com/appium/appium-uiautomator2-driver/commit/89303f0e77dc7bbc6c7a3e685efd3ecb63370c94))
1085
+
1086
+ ## [2.33.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.33.0...v2.33.1) (2023-10-31)
1087
+
1088
+
1089
+ ### Bug Fixes
1090
+
1091
+ * Properly read systemPort value from capabilities ([#689](https://github.com/appium/appium-uiautomator2-driver/issues/689)) ([cfaccb5](https://github.com/appium/appium-uiautomator2-driver/commit/cfaccb528c8a42c4185ca88c2dafbcbbc4ee80c2))
1092
+
1093
+ ## [2.33.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.32.3...v2.33.0) (2023-10-30)
1094
+
1095
+
1096
+ ### Features
1097
+
1098
+ * Add hideKeyboard capability ([#686](https://github.com/appium/appium-uiautomator2-driver/issues/686)) ([708f41c](https://github.com/appium/appium-uiautomator2-driver/commit/708f41c087f64f32a022dd34715dc68b4004a852))
1099
+
1100
+ ## [2.32.3](https://github.com/appium/appium-uiautomator2-driver/compare/v2.32.2...v2.32.3) (2023-10-19)
1101
+
1102
+
1103
+ ### Miscellaneous Chores
1104
+
1105
+ * Always use latest types ([19754b2](https://github.com/appium/appium-uiautomator2-driver/commit/19754b2b0043b03df729e588a62eec0e571557b3))
1106
+
1107
+ ## [2.32.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.32.1...v2.32.2) (2023-10-18)
1108
+
1109
+
1110
+ ### Miscellaneous Chores
1111
+
1112
+ * Remove the obsolete coverage-related stuff ([#677](https://github.com/appium/appium-uiautomator2-driver/issues/677)) ([977816e](https://github.com/appium/appium-uiautomator2-driver/commit/977816e6eaed4780a91225178d0d98aa8fa5c5b5))
1113
+
1114
+ ## [2.32.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.32.0...v2.32.1) (2023-10-17)
1115
+
1116
+
1117
+ ### Miscellaneous Chores
1118
+
1119
+ * Remove obsolete driver options ([#676](https://github.com/appium/appium-uiautomator2-driver/issues/676)) ([2a296dc](https://github.com/appium/appium-uiautomator2-driver/commit/2a296dc7a82e686f7cf811db72fe02bd143fca7b))
1120
+
1121
+ ## [2.32.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.31.4...v2.32.0) (2023-10-17)
1122
+
1123
+
1124
+ ### Features
1125
+
1126
+ * Add 'mobile: deviceidle' extension ([#673](https://github.com/appium/appium-uiautomator2-driver/issues/673)) ([5c59c10](https://github.com/appium/appium-uiautomator2-driver/commit/5c59c10488a216c3c526c9a1c3326a9aea6d31de))
1127
+
1128
+ ## [2.31.4](https://github.com/appium/appium-uiautomator2-driver/compare/v2.31.3...v2.31.4) (2023-10-16)
1129
+
1130
+
1131
+ ### Miscellaneous Chores
1132
+
1133
+ * Normalize execute script names ([#672](https://github.com/appium/appium-uiautomator2-driver/issues/672)) ([ca1d6e9](https://github.com/appium/appium-uiautomator2-driver/commit/ca1d6e94c058cc9ae8511c7b45e4f0c577b83de8))
1134
+
1135
+ ## [2.31.3](https://github.com/appium/appium-uiautomator2-driver/compare/v2.31.2...v2.31.3) (2023-10-15)
1136
+
1137
+
1138
+ ### Bug Fixes
1139
+
1140
+ * Make app not required ([#664](https://github.com/appium/appium-uiautomator2-driver/issues/664)) ([636391e](https://github.com/appium/appium-uiautomator2-driver/commit/636391e53313f6c612a87beacfb15d7fdd1fa439))
1141
+
1142
+ ## [2.31.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.31.1...v2.31.2) (2023-10-15)
1143
+
1144
+
1145
+ ### Miscellaneous Chores
1146
+
1147
+ * bump css-selector-parser to v3 ([#663](https://github.com/appium/appium-uiautomator2-driver/issues/663)) ([179670e](https://github.com/appium/appium-uiautomator2-driver/commit/179670e152c6c01c88183f539902220b775ff0c4))
1148
+
1149
+ ## [2.31.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.31.0...v2.31.1) (2023-10-14)
1150
+
1151
+
1152
+ ### Miscellaneous Chores
1153
+
1154
+ * add error log for this.adb.setHiddenApiPolicy error ([#656](https://github.com/appium/appium-uiautomator2-driver/issues/656)) ([5c076c5](https://github.com/appium/appium-uiautomator2-driver/commit/5c076c5c4ffb565a4d8f44f8f0595e2b19c2e99c))
1155
+
1156
+ ## [2.31.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.30.0...v2.31.0) (2023-10-14)
1157
+
1158
+
1159
+ ### Features
1160
+
1161
+ * Bump android driver to v7 ([#662](https://github.com/appium/appium-uiautomator2-driver/issues/662)) ([a54bc4a](https://github.com/appium/appium-uiautomator2-driver/commit/a54bc4a2d45bed3ddd0f632048f928b76609e0b2))
1162
+
1163
+ ## [2.30.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.11...v2.30.0) (2023-10-13)
1164
+
1165
+
1166
+ ### Features
1167
+
1168
+ * add all the types ([#635](https://github.com/appium/appium-uiautomator2-driver/issues/635)) ([623f49b](https://github.com/appium/appium-uiautomator2-driver/commit/623f49ba363bcfd930021fb5fa7cfe030b5683fb))
1169
+
1170
+ ## [2.29.11](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.10...v2.29.11) (2023-10-08)
1171
+
1172
+
1173
+ ### Miscellaneous Chores
1174
+
1175
+ * Bump appium-adb ([92e9884](https://github.com/appium/appium-uiautomator2-driver/commit/92e98841a2bb5c6dfd7924d55a82bb65194c8b11))
1176
+
1177
+ ## [2.29.10](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.9...v2.29.10) (2023-09-24)
1178
+
1179
+
1180
+ ### Bug Fixes
1181
+
1182
+ * release package ([#658](https://github.com/appium/appium-uiautomator2-driver/issues/658)) ([ef483e3](https://github.com/appium/appium-uiautomator2-driver/commit/ef483e34ec9a23c3b63ab76d849b25403435a58e))
1183
+
1184
+ ## [2.29.9](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.8...v2.29.9) (2023-09-21)
1185
+
1186
+
1187
+ ### Bug Fixes
1188
+
1189
+ * check if the instrumentation process stops by sending a request ([#655](https://github.com/appium/appium-uiautomator2-driver/issues/655)) ([d42950a](https://github.com/appium/appium-uiautomator2-driver/commit/d42950acb44ad8458932f4617cf110825dab8737))
1190
+
1191
+ ## [2.29.8](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.7...v2.29.8) (2023-09-14)
1192
+
1193
+
1194
+ ### Miscellaneous Chores
1195
+
1196
+ * Bump android driver ([a69ca17](https://github.com/appium/appium-uiautomator2-driver/commit/a69ca17842d315751af5cf25b1589148a3d41e2a))
1197
+
1198
+ ## [2.29.7](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.6...v2.29.7) (2023-09-12)
1199
+
1200
+
1201
+ ### Miscellaneous Chores
1202
+
1203
+ * Bump modules ([fcb6a3a](https://github.com/appium/appium-uiautomator2-driver/commit/fcb6a3ac19cd8f685a82cb8288879d74368e7f5e))
1204
+
1205
+ ## [2.29.6](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.5...v2.29.6) (2023-09-07)
1206
+
1207
+
1208
+ ### Bug Fixes
1209
+
1210
+ * Add missing command accessors ([#652](https://github.com/appium/appium-uiautomator2-driver/issues/652)) ([8e39019](https://github.com/appium/appium-uiautomator2-driver/commit/8e39019f869f9ec520ffe5cf886aa46fe2be487e))
1211
+
1212
+ ## [2.29.5](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.4...v2.29.5) (2023-08-21)
1213
+
1214
+
1215
+ ### Bug Fixes
1216
+
1217
+ * upgrade appium-chromedriver to latest ([ecfecbf](https://github.com/appium/appium-uiautomator2-driver/commit/ecfecbf75dce2f037a4344bed065fb538be64cda))
1218
+
1219
+ ## [2.29.4](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.3...v2.29.4) (2023-08-09)
1220
+
1221
+
1222
+ ### Miscellaneous Chores
1223
+
1224
+ * Disable app capability presence validation ([#641](https://github.com/appium/appium-uiautomator2-driver/issues/641)) ([7c78543](https://github.com/appium/appium-uiautomator2-driver/commit/7c7854360c142fa8dc846795a13f62203b572b02))
1225
+
1226
+ ## [2.29.3](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.2...v2.29.3) (2023-07-29)
1227
+
1228
+
1229
+ ### Miscellaneous Chores
1230
+
1231
+ * Bump chromedriver ([4ec1624](https://github.com/appium/appium-uiautomator2-driver/commit/4ec162400ac02a9ed4720608f0d11d239e9aa9d7))
1232
+
1233
+ ## [2.29.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.1...v2.29.2) (2023-07-03)
1234
+
1235
+
1236
+ ### Miscellaneous Chores
1237
+
1238
+ * Bump server version ([583630f](https://github.com/appium/appium-uiautomator2-driver/commit/583630f8d8f9b3f0259a362b50a04313e966631a))
1239
+
1240
+ ## [2.29.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.29.0...v2.29.1) (2023-06-29)
1241
+
1242
+
1243
+ ### Miscellaneous Chores
1244
+
1245
+ * Bump the server version ([c202967](https://github.com/appium/appium-uiautomator2-driver/commit/c202967482a3748a12be70edec87fb518766a638))
1246
+
1247
+ ## [2.29.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.28.1...v2.29.0) (2023-06-25)
1248
+
1249
+
1250
+ ### Features
1251
+
1252
+ * Allow to take screenshots of multiple Android displays ([#628](https://github.com/appium/appium-uiautomator2-driver/issues/628)) ([3501892](https://github.com/appium/appium-uiautomator2-driver/commit/3501892dcea9fec90dfedb38700888542e3f96f3))
1253
+
1254
+ ## [2.28.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.28.0...v2.28.1) (2023-06-23)
1255
+
1256
+
1257
+ ### Miscellaneous Chores
1258
+
1259
+ * Bump appium-adb version ([#632](https://github.com/appium/appium-uiautomator2-driver/issues/632)) ([2897505](https://github.com/appium/appium-uiautomator2-driver/commit/28975051d10dbaf5316a60ab3ed237dd4edb2d4c))
1260
+
1261
+ ## [2.28.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.27.0...v2.28.0) (2023-06-22)
1262
+
1263
+
1264
+ ### Features
1265
+
1266
+ * Optimize server packages installation ([#631](https://github.com/appium/appium-uiautomator2-driver/issues/631)) ([ddfceab](https://github.com/appium/appium-uiautomator2-driver/commit/ddfceab31ac64afe67219537f7fe3f8d03bbfb28))
1267
+
1268
+ ## [2.27.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.26.3...v2.27.0) (2023-06-21)
1269
+
1270
+
1271
+ ### Features
1272
+
1273
+ * add the description of setting API snapshotMaxDepth ([#629](https://github.com/appium/appium-uiautomator2-driver/issues/629)) ([c74ad63](https://github.com/appium/appium-uiautomator2-driver/commit/c74ad638af2bddd107bb774c76f2683acb7a8a07))
1274
+
1275
+ ## [2.26.3](https://github.com/appium/appium-uiautomator2-driver/compare/v2.26.2...v2.26.3) (2023-06-21)
1276
+
1277
+
1278
+ ### Bug Fixes
1279
+
1280
+ * mobila: lock ([#630](https://github.com/appium/appium-uiautomator2-driver/issues/630)) ([de15791](https://github.com/appium/appium-uiautomator2-driver/commit/de157919d02cafdb85218be957b9b7e390efcd78))
1281
+
1282
+ ## [2.26.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.26.1...v2.26.2) (2023-06-16)
1283
+
1284
+
1285
+ ### Miscellaneous Chores
1286
+
1287
+ * bump android driver ([ad80174](https://github.com/appium/appium-uiautomator2-driver/commit/ad8017480bba8e3024da87a7ff9a891618fb5e3f))
1288
+
1289
+ ## [2.26.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.26.0...v2.26.1) (2023-06-13)
1290
+
1291
+
1292
+ ### Bug Fixes
1293
+
1294
+ * make releaseActions to a no-op ([#625](https://github.com/appium/appium-uiautomator2-driver/issues/625)) ([740f90a](https://github.com/appium/appium-uiautomator2-driver/commit/740f90ae41ad761de6dfab92ef61b279fcad2cef))
1295
+
1296
+ ## [2.26.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.25.3...v2.26.0) (2023-06-11)
1297
+
1298
+
1299
+ ### Features
1300
+
1301
+ * Add extensions for scheduled actions ([#616](https://github.com/appium/appium-uiautomator2-driver/issues/616)) ([3e1c24d](https://github.com/appium/appium-uiautomator2-driver/commit/3e1c24da84d7bc2084b32addad305575c252f43b))
1302
+
1303
+ ## [2.25.3](https://github.com/appium/appium-uiautomator2-driver/compare/v2.25.2...v2.25.3) (2023-06-08)
1304
+
1305
+
1306
+ ### Miscellaneous Chores
1307
+
1308
+ * add logging for mjpeg broadcast request ([#622](https://github.com/appium/appium-uiautomator2-driver/issues/622)) ([da64bf5](https://github.com/appium/appium-uiautomator2-driver/commit/da64bf5ba2ed1ea95a6c2292d9ea557bd8229f4f))
1309
+
1310
+ ## [2.25.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.25.1...v2.25.2) (2023-06-02)
1311
+
1312
+
1313
+ ### Miscellaneous Chores
1314
+
1315
+ * Bump appium-adb ([30ea8ae](https://github.com/appium/appium-uiautomator2-driver/commit/30ea8ae511e241743b5787cc157467eb87a38b1e))
1316
+
1317
+ ## [2.25.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.25.0...v2.25.1) (2023-05-24)
1318
+
1319
+
1320
+ ### Bug Fixes
1321
+
1322
+ * Update extension command name ([0e488f4](https://github.com/appium/appium-uiautomator2-driver/commit/0e488f4615ea2dbc9744b6be8ae08faa82eed49e))
1323
+
1324
+ ## [2.25.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.24.2...v2.25.0) (2023-05-22)
1325
+
1326
+
1327
+ ### Features
1328
+
1329
+ * Add a wrapper over status bar commands ([#615](https://github.com/appium/appium-uiautomator2-driver/issues/615)) ([7ec9f8c](https://github.com/appium/appium-uiautomator2-driver/commit/7ec9f8c3582820ea37322113024d758b8752b3e5))
1330
+
1331
+ ## [2.24.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.24.1...v2.24.2) (2023-05-22)
1332
+
1333
+
1334
+ ### Bug Fixes
1335
+
1336
+ * Mobile method name ([896ade4](https://github.com/appium/appium-uiautomator2-driver/commit/896ade4bc74f049dda813a6ed675141919d25437))
1337
+
1338
+ ## [2.24.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.24.0...v2.24.1) (2023-05-16)
1339
+
1340
+
1341
+ ### Miscellaneous Chores
1342
+
1343
+ * Bump android-driver component ([e416860](https://github.com/appium/appium-uiautomator2-driver/commit/e4168608bcfc56440937b1f3bdb10a154392d51b))
1344
+
1345
+ ## [2.24.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.23.0...v2.24.0) (2023-05-05)
1346
+
1347
+
1348
+ ### Features
1349
+
1350
+ * Add mobile wrapper for performance data collectors ([#613](https://github.com/appium/appium-uiautomator2-driver/issues/613)) ([cfd13f8](https://github.com/appium/appium-uiautomator2-driver/commit/cfd13f8e3d2cec60c0c0379e8336f3a62753cd96))
1351
+
1352
+ ## [2.23.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.22.1...v2.23.0) (2023-04-30)
1353
+
1354
+
1355
+ ### Features
1356
+
1357
+ * Add mobile wrappers for GPS and notification helpers ([#608](https://github.com/appium/appium-uiautomator2-driver/issues/608)) ([97c2989](https://github.com/appium/appium-uiautomator2-driver/commit/97c2989bcf469bb45e735237fe91c4797f2403ea))
1358
+
1359
+ ## [2.22.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.22.0...v2.22.1) (2023-04-28)
1360
+
1361
+
1362
+ ### Bug Fixes
1363
+
1364
+ * Extension name ([4804648](https://github.com/appium/appium-uiautomator2-driver/commit/48046485c9b54108310bbcfe85710f6737b2fe3e))
1365
+
1366
+ ## [2.22.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.21.0...v2.22.0) (2023-04-28)
1367
+
1368
+
1369
+ ### Features
1370
+
1371
+ * Add more mobile extensions ([#606](https://github.com/appium/appium-uiautomator2-driver/issues/606)) ([55a1e79](https://github.com/appium/appium-uiautomator2-driver/commit/55a1e798ac73c812ad7cc0d8897d330f9d51c2b0))
1372
+
1373
+ ## [2.21.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.20.0...v2.21.0) (2023-04-27)
1374
+
1375
+
1376
+ ### Features
1377
+
1378
+ * Add mobile wrappers for getDisplayDensity and getSystemBars extensions ([#605](https://github.com/appium/appium-uiautomator2-driver/issues/605)) ([0e8a4cf](https://github.com/appium/appium-uiautomator2-driver/commit/0e8a4cf24540ec44569422c60c50367c3cc69888))
1379
+
1380
+ ## [2.20.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.19.0...v2.20.0) (2023-04-26)
1381
+
1382
+
1383
+ ### Features
1384
+
1385
+ * Add mobile wrappers for returning the current package and activity names ([#604](https://github.com/appium/appium-uiautomator2-driver/issues/604)) ([ad9f21a](https://github.com/appium/appium-uiautomator2-driver/commit/ad9f21a3eeedc75346059306de02a64234fd76ad))
1386
+
1387
+ ## [2.19.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.18.0...v2.19.0) (2023-04-25)
1388
+
1389
+
1390
+ ### Features
1391
+
1392
+ * Add mobile wrapper for backgroundApp ([#603](https://github.com/appium/appium-uiautomator2-driver/issues/603)) ([925f775](https://github.com/appium/appium-uiautomator2-driver/commit/925f77598db5a0edd3d253cf0d3477e6ebddbca6))
1393
+
1394
+ ## [2.18.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.17.0...v2.18.0) (2023-04-20)
1395
+
1396
+
1397
+ ### Features
1398
+
1399
+ * Add mobile methods for lock and isLocked ([#600](https://github.com/appium/appium-uiautomator2-driver/issues/600)) ([24e90b2](https://github.com/appium/appium-uiautomator2-driver/commit/24e90b217e0e2ab807184c9e28a82e55027e9e65))
1400
+
1401
+ ## [2.17.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.16.0...v2.17.0) (2023-04-20)
1402
+
1403
+
1404
+ ### Features
1405
+
1406
+ * Add mobile extension for pressKey action ([#597](https://github.com/appium/appium-uiautomator2-driver/issues/597)) ([093edec](https://github.com/appium/appium-uiautomator2-driver/commit/093edecacb7750f2d74b9abf6d54e20bbd76c1c1))
1407
+
1408
+ ## [2.16.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.15.0...v2.16.0) (2023-04-20)
1409
+
1410
+
1411
+ ### Features
1412
+
1413
+ * Add mobile extensions for on-screen keyboard ([#594](https://github.com/appium/appium-uiautomator2-driver/issues/594)) ([09e839e](https://github.com/appium/appium-uiautomator2-driver/commit/09e839e7d85b3845de4f6d3fa12896144e01caa2))
1414
+
1415
+ ## [2.15.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.14.0...v2.15.0) (2023-04-15)
1416
+
1417
+
1418
+ ### Features
1419
+
1420
+ * Add 'mobile: getAppStrings' extension ([#593](https://github.com/appium/appium-uiautomator2-driver/issues/593)) ([0705269](https://github.com/appium/appium-uiautomator2-driver/commit/07052696f9926b24a0343e2ab7aa7656cffc860b))
1421
+
1422
+ ## [2.14.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.13.0...v2.14.0) (2023-04-04)
1423
+
1424
+
1425
+ ### Features
1426
+
1427
+ * add shouldTerminateApp capability ([#591](https://github.com/appium/appium-uiautomator2-driver/issues/591)) ([853acb3](https://github.com/appium/appium-uiautomator2-driver/commit/853acb3d9848361a86b9d3246fada138f07434ce))
1428
+
1429
+ ## [2.13.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.12.7...v2.13.0) (2023-04-04)
1430
+
1431
+
1432
+ ### Features
1433
+
1434
+ * Add setConnectivity and getConnectivity extensions ([#590](https://github.com/appium/appium-uiautomator2-driver/issues/590)) ([f281a40](https://github.com/appium/appium-uiautomator2-driver/commit/f281a400c0097abe20fc8a852f244af775b112b1))
1435
+
1436
+ ## [2.12.7](https://github.com/appium/appium-uiautomator2-driver/compare/v2.12.6...v2.12.7) (2023-03-24)
1437
+
1438
+
1439
+ ### Bug Fixes
1440
+
1441
+ * chromedriver version comparison in the chromedriver download ([#587](https://github.com/appium/appium-uiautomator2-driver/issues/587)) ([3aa3c84](https://github.com/appium/appium-uiautomator2-driver/commit/3aa3c848012149d0997b5c0f70e8bcf9daba0328))
1442
+
1443
+ ## [2.12.6](https://github.com/appium/appium-uiautomator2-driver/compare/v2.12.5...v2.12.6) (2023-02-22)
1444
+
1445
+
1446
+ ### Miscellaneous Chores
1447
+
1448
+ * Bump android-driver ([77b3120](https://github.com/appium/appium-uiautomator2-driver/commit/77b3120d03c6d8e275f0a43c6f322c79619d5fb6))
1449
+
1450
+ ## [2.12.5](https://github.com/appium/appium-uiautomator2-driver/compare/v2.12.4...v2.12.5) (2023-02-21)
1451
+
1452
+
1453
+ ### Bug Fixes
1454
+
1455
+ * actually publish reset script ([a2bc02f](https://github.com/appium/appium-uiautomator2-driver/commit/a2bc02f8956590e3e02b22d75ca412174e6341f9)), closes [appium/appium#501](https://github.com/appium/appium/issues/501)
1456
+
1457
+ ## [2.12.4](https://github.com/appium/appium-uiautomator2-driver/compare/v2.12.3...v2.12.4) (2023-02-16)
1458
+
1459
+
1460
+ ### Miscellaneous Chores
1461
+
1462
+ * remove unused unicodeKeyboard as uia2 ([#581](https://github.com/appium/appium-uiautomator2-driver/issues/581)) ([605383f](https://github.com/appium/appium-uiautomator2-driver/commit/605383f581919ab546e62368937295b48a97521e))
1463
+
1464
+ ## [2.12.3](https://github.com/appium/appium-uiautomator2-driver/compare/v2.12.2...v2.12.3) (2023-02-02)
1465
+
1466
+
1467
+ ### Miscellaneous Chores
1468
+
1469
+ * bump chromedriver ([21003b3](https://github.com/appium/appium-uiautomator2-driver/commit/21003b30905778b770536bf950b7eebc8a9decf3))
1470
+
1471
+ ## [2.12.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.12.1...v2.12.2) (2023-01-12)
1472
+
1473
+
1474
+ ### Bug Fixes
1475
+
1476
+ * specify supported non-standard commands in newMethodMap ([8a51004](https://github.com/appium/appium-uiautomator2-driver/commit/8a5100486cc3d39c0a8f0e77b2eb574ce1a01e04))
1477
+
1478
+ ## [2.12.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.12.0...v2.12.1) (2022-12-24)
1479
+
1480
+
1481
+ ### Miscellaneous Chores
1482
+
1483
+ * Bump android-driver ([1527434](https://github.com/appium/appium-uiautomator2-driver/commit/152743477f7968724598b5b80dd06cf01f30d21f))
1484
+
1485
+ ## [2.12.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.11.1...v2.12.0) (2022-12-08)
1486
+
1487
+
1488
+ ### Features
1489
+
1490
+ * Add forceAppLaunch capability ([#569](https://github.com/appium/appium-uiautomator2-driver/issues/569)) ([8af938e](https://github.com/appium/appium-uiautomator2-driver/commit/8af938e361ed7f2821756fd3466ea97761714104))
1491
+
1492
+ ## [2.11.1](https://github.com/appium/appium-uiautomator2-driver/compare/v2.11.0...v2.11.1) (2022-12-01)
1493
+
1494
+
1495
+ ### Miscellaneous Chores
1496
+
1497
+ * update releaserc ([#566](https://github.com/appium/appium-uiautomator2-driver/issues/566)) ([ffb04bd](https://github.com/appium/appium-uiautomator2-driver/commit/ffb04bda088bb9b21e4b179c985245c1c72da577))
1498
+
1499
+ # [2.11.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.10.2...v2.11.0) (2022-11-30)
1500
+
1501
+
1502
+ ### Features
1503
+
1504
+ * Add support of updated changePermissions args ([#565](https://github.com/appium/appium-uiautomator2-driver/issues/565)) ([df51a96](https://github.com/appium/appium-uiautomator2-driver/commit/df51a9610c4c33f99feaabe29793003063a26f95))
1505
+
1506
+ ## [2.10.2](https://github.com/appium/appium-uiautomator2-driver/compare/v2.10.1...v2.10.2) (2022-11-06)