appium-espresso-driver 6.0.8 → 6.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/README.md +2 -1
- package/build/lib/constraints.d.ts +3 -0
- package/build/lib/constraints.d.ts.map +1 -1
- package/espresso-server/library/src/main/java/io/appium/espressoserver/lib/helpers/Version.kt +1 -1
- package/npm-shrinkwrap.json +288 -423
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [6.2.0](https://github.com/appium/appium-espresso-driver/compare/v6.1.0...v6.2.0) (2025-12-09)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* add appium:adbListenAllNetwork with espresso:adb_listen_all_network flag to add -a option for adb ([#1114](https://github.com/appium/appium-espresso-driver/issues/1114)) ([ba48baa](https://github.com/appium/appium-espresso-driver/commit/ba48baac72a78cfbafe410f27b651e76431b3d53))
|
|
6
|
+
|
|
7
|
+
## [6.1.0](https://github.com/appium/appium-espresso-driver/compare/v6.0.8...v6.1.0) (2025-11-21)
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* add context for BiDi - log.entryAdded event ([#1110](https://github.com/appium/appium-espresso-driver/issues/1110)) ([074654b](https://github.com/appium/appium-espresso-driver/commit/074654ba142e2a10095117fd7b42fe28d5789046))
|
|
12
|
+
|
|
1
13
|
## [6.0.8](https://github.com/appium/appium-espresso-driver/compare/v6.0.7...v6.0.8) (2025-11-21)
|
|
2
14
|
|
|
3
15
|
### Miscellaneous Chores
|
package/README.md
CHANGED
|
@@ -136,6 +136,7 @@ appium:mockLocationApp | Sets the package identifier of the app, which is used a
|
|
|
136
136
|
appium:logcatFormat | The log print format, where `format` is one of: `brief` `process` `tag` `thread` `raw` `time` `threadtime` `long`. `threadtime` is the default value.
|
|
137
137
|
appium:logcatFilterSpecs | Series of `tag[:priority]` where `tag` is a log component tag (or * for all) and priority is: `V Verbose`, `D Debug`, `I Info`, `W Warn`, `E Error`, `F Fatal`, `S Silent (suppress all output)`. '*' means '*:d' and `tag` by itself means `tag:v`. If not specified on the commandline, filterspec is set from ANDROID_LOG_TAGS. If no filterspec is found, filter defaults to '*:I'.
|
|
138
138
|
appium:allowDelayAdb | Being set to `false` prevents emulator to use `-delay-adb` feature to detect its startup. See https://github.com/appium/appium/issues/14773 for more details.
|
|
139
|
+
appium:adbListenAllNetwork | Being set to `true` adds `-a` ADB command line global option. Requires `uiautomator2:adb_listen_all_network` [security feature](https://github.com/appium/appium/blob/master/packages/appium/docs/en/guides/security.md) to be enabled. Unset by default. Available since the driver version 6.2.0.
|
|
139
140
|
|
|
140
141
|
### Emulator (Android Virtual Device)
|
|
141
142
|
|
|
@@ -465,7 +466,7 @@ object result = driver.ExecuteScript("mobile: <methodName>", new Dictionary<stri
|
|
|
465
466
|
|
|
466
467
|
### mobile: shell
|
|
467
468
|
|
|
468
|
-
Executes the given shell command on the device under test via ADB connection. This extension exposes a potential security risk and thus is only enabled when explicitly activated by the `adb_shell` server command line feature specifier
|
|
469
|
+
Executes the given shell command on the device under test via ADB connection. This extension exposes a potential security risk and thus is only enabled when explicitly activated by the `espresso:adb_shell` server command line feature specifier
|
|
469
470
|
|
|
470
471
|
#### Arguments
|
|
471
472
|
|
|
@@ -252,6 +252,9 @@ export declare const ESPRESSO_CONSTRAINTS: {
|
|
|
252
252
|
readonly allowDelayAdb: {
|
|
253
253
|
readonly isBoolean: true;
|
|
254
254
|
};
|
|
255
|
+
readonly adbListenAllNetwork: {
|
|
256
|
+
readonly isBoolean: true;
|
|
257
|
+
};
|
|
255
258
|
readonly ignoreUnimportantViews: {
|
|
256
259
|
readonly isBoolean: true;
|
|
257
260
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constraints.d.ts","sourceRoot":"","sources":["../../lib/constraints.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,oBAAoB
|
|
1
|
+
{"version":3,"file":"constraints.d.ts","sourceRoot":"","sources":["../../lib/constraints.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmCD,CAAC;AAEjC,MAAM,MAAM,mBAAmB,GAAG,OAAO,oBAAoB,CAAC"}
|
package/espresso-server/library/src/main/java/io/appium/espressoserver/lib/helpers/Version.kt
CHANGED
|
@@ -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 = "6.0
|
|
5
|
+
private const val VERSION = "6.2.0"
|
|
6
6
|
|
|
7
7
|
fun getEspressoServerVersion() = VERSION
|