appium-espresso-driver 8.6.0 → 8.6.2

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,16 @@
1
+ ## [8.6.2](https://github.com/appium/appium-espresso-driver/compare/v8.6.1...v8.6.2) (2026-06-19)
2
+
3
+ ### Miscellaneous Chores
4
+
5
+ * **deps-dev:** bump @types/node from 25.9.4 to 26.0.0 ([#1181](https://github.com/appium/appium-espresso-driver/issues/1181)) ([357ec3c](https://github.com/appium/appium-espresso-driver/commit/357ec3cbf5ec36b93b777e027230c23a5ba0c193))
6
+ * **deps:** bump gradle-wrapper from 9.5.1 to 9.6.0 in /espresso-server ([#1182](https://github.com/appium/appium-espresso-driver/issues/1182)) ([b28e5d5](https://github.com/appium/appium-espresso-driver/commit/b28e5d597b37c2705fa5228adfaf883dc4c1020f))
7
+
8
+ ## [8.6.1](https://github.com/appium/appium-espresso-driver/compare/v8.6.0...v8.6.1) (2026-06-19)
9
+
10
+ ### Miscellaneous Chores
11
+
12
+ * **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))
13
+
1
14
  ## [8.6.0](https://github.com/appium/appium-espresso-driver/compare/v8.5.6...v8.6.0) (2026-05-24)
2
15
 
3
16
  ### 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
2
- gradle.version=9.5.1
1
+ #Fri Jun 19 14:23:10 UTC 2026
2
+ gradle.version=9.6.0
@@ -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"
@@ -1,6 +1,6 @@
1
1
  distributionBase=GRADLE_USER_HOME
2
2
  distributionPath=wrapper/dists
3
- distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.1-bin.zip
3
+ distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.0-bin.zip
4
4
  networkTimeout=10000
5
5
  retries=0
6
6
  retryBackOffMs=500
@@ -20,7 +20,7 @@
20
20
 
21
21
  ##############################################################################
22
22
  #
23
- # Gradle start up script for POSIX generated by Gradle.
23
+ # gradlew start up script for POSIX generated by Gradle.
24
24
  #
25
25
  # Important for running:
26
26
  #
@@ -29,7 +29,7 @@
29
29
  # bash, then to run this script, type that shell name before the whole
30
30
  # command line, like:
31
31
  #
32
- # ksh Gradle
32
+ # ksh gradlew
33
33
  #
34
34
  # Busybox and similar reduced shells will NOT work, because this script
35
35
  # requires all of these POSIX shell features:
@@ -19,7 +19,7 @@
19
19
  @if "%DEBUG%"=="" @echo off
20
20
  @rem ##########################################################################
21
21
  @rem
22
- @rem Gradle startup script for Windows
22
+ @rem gradlew startup script for Windows
23
23
  @rem
24
24
  @rem ##########################################################################
25
25
 
@@ -72,7 +72,7 @@ echo location of your Java installation. 1>&2
72
72
 
73
73
 
74
74
 
75
- @rem Execute Gradle
75
+ @rem Execute gradlew
76
76
  @rem endlocal doesn't take effect until after the line is parsed and variables are expanded
77
77
  @rem which allows us to clear the local environment before executing the java command
78
78
  endlocal & "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %* & call :exitWithErrorLevel
@@ -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.2"
6
6
 
7
7
  fun getEspressoServerVersion() = VERSION