appium-espresso-driver 8.6.0 → 8.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [8.6.1](https://github.com/appium/appium-espresso-driver/compare/v8.6.0...v8.6.1) (2026-06-19)
2
+
3
+ ### Miscellaneous Chores
4
+
5
+ * **deps:** bump composeUiTest in /espresso-server ([#1179](https://github.com/appium/appium-espresso-driver/issues/1179)) ([931be2d](https://github.com/appium/appium-espresso-driver/commit/931be2de4873b81dcee5771a98a0bbbaec179ae6))
6
+
1
7
  ## [8.6.0](https://github.com/appium/appium-espresso-driver/compare/v8.5.6...v8.6.0) (2026-05-24)
2
8
 
3
9
  ### Features
package/README.md CHANGED
@@ -13,6 +13,8 @@ The Espresso package consists of two main parts:
13
13
  - The driver part (written in Node.js) ensures the communication between the Espresso server and Appium. Also includes several handlers that directly use ADB and/or other system tools without a need to talk to the server.
14
14
  - The server part (written in Kotlin with some parts of Java), which is running on the device under test and transforms REST API calls into low-level Espresso commands.
15
15
 
16
+ See the [end-to-end architecture diagram](./docs/architecture.md).
17
+
16
18
  > [!IMPORTANT]
17
19
  > Since major version *5.0.0*, this driver is only compatible with Appium 3. Use the `appium driver install espresso`
18
20
  > command to add it to your distribution.
@@ -1,2 +1,2 @@
1
- #Sun May 24 16:52:48 UTC 2026
1
+ #Fri Jun 19 05:54:14 UTC 2026
2
2
  gradle.version=9.5.1
@@ -3,7 +3,7 @@ androidGradlePlugin = "9.2.1"
3
3
  kotlin = "2.3.21"
4
4
  androidxTest = "1.7.0"
5
5
  annotation = "1.10.0"
6
- composeUiTest = "1.11.2"
6
+ composeUiTest = "1.11.3"
7
7
  gson = "2.14.0"
8
8
  espresso = "3.7.0"
9
9
  nanohttpd = "2.3.1"
@@ -2,6 +2,6 @@ package io.appium.espressoserver.lib.helpers
2
2
 
3
3
  // This value is updated automatically by the NPM versioning script
4
4
  // It should be in sync with the NPM module version from package.json
5
- private const val VERSION = "8.6.0"
5
+ private const val VERSION = "8.6.1"
6
6
 
7
7
  fun getEspressoServerVersion() = VERSION