appium-uiautomator2-driver 6.7.0 → 6.7.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
+ ## [6.7.1](https://github.com/appium/appium-uiautomator2-driver/compare/v6.7.0...v6.7.1) (2025-12-12)
2
+
3
+ ### Miscellaneous Chores
4
+
5
+ * **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))
6
+
1
7
  ## [6.7.0](https://github.com/appium/appium-uiautomator2-driver/compare/v6.6.3...v6.7.0) (2025-12-09)
2
8
 
3
9
  ### Features
package/README.md CHANGED
@@ -88,7 +88,7 @@ appium:otherApps | Allows to set one or more comma-separated paths to Android pa
88
88
  appium:uninstallOtherPackages | Allows to set one or more comma-separated package identifiers to be uninstalled from the device before a test starts
89
89
  appium:allowTestPackages | If set to `true` then it would be possible to use packages built with the test flag for the automated testing (literally adds `-t` flag to the `adb install` command). `false` by default
90
90
  appium:remoteAppsCacheLimit | Sets the maximum amount of application packages to be cached on the device under test. This is needed for devices that don't support streamed installs (Android 7 and below), because ADB must push app packages to the device first in order to install them, which takes some time. Setting this capability to zero disables apps caching. `10` by default.
91
- appium:enforceAppInstall | If set to `true` then the application under test is always reinstalled even if a newer version of it already exists on the device under test. This capability has no effect if `appium:noReset` is set to `true`. `false` by default. Since driver version 6.7.0.
91
+ appium:enforceAppInstall | If set to `true` then the application under test is always reinstalled even if a newer version of it already exists on the device under test. This capability has no effect if `appium:noReset` is set to `true`. `false` by default.
92
92
 
93
93
  ### App Localization
94
94
 
@@ -115,7 +115,7 @@ appium:mockLocationApp | Sets the package identifier of the app, which is used a
115
115
  appium:logcatFormat | The log print format, where `format` is one of: `brief` `process` `tag` `thread` `raw` `time` `threadtime` `long`. `threadtime` is the default value.
116
116
  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 (supress 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'.
117
117
  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.
118
- 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
118
+ 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 driver version 6.7.0.
119
119
 
120
120
  ### Emulator (Android Virtual Device)
121
121
 
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.js"],"names":[],"mappings":";;0CAIwC,cAAc"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.js"],"names":[],"mappings":";;0CAAwC,cAAc"}
package/build/index.js CHANGED
@@ -1,8 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.AndroidUiautomator2Driver = void 0;
4
- const source_map_support_1 = require("source-map-support");
5
- (0, source_map_support_1.install)();
6
4
  const driver_1 = require("./lib/driver");
7
5
  Object.defineProperty(exports, "AndroidUiautomator2Driver", { enumerable: true, get: function () { return driver_1.AndroidUiautomator2Driver; } });
8
6
  exports.default = driver_1.AndroidUiautomator2Driver;
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.js"],"names":[],"mappings":";;;AAAA,2DAA2C;AAE3C,IAAA,4BAAO,GAAE,CAAC;AAEV,yCAAuD;AAE/C,0GAFA,kCAAyB,OAEA;AACjC,kBAAe,kCAAyB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.js"],"names":[],"mappings":";;;AAAA,yCAAuD;AAE/C,0GAFA,kCAAyB,OAEA;AACjC,kBAAe,kCAAyB,CAAC"}
@@ -1,4 +1,5 @@
1
1
  export const androidHomeCheck: {
2
+ log: import("@appium/types").AppiumLogger;
2
3
  varName: string;
3
4
  opts: doctor.EnvVarCheckOptions;
4
5
  diagnose(): Promise<import("@appium/types").DoctorCheckResult>;
@@ -7,6 +8,7 @@ export const androidHomeCheck: {
7
8
  isOptional(): boolean;
8
9
  };
9
10
  export const javaHomeCheck: {
11
+ log: import("@appium/types").AppiumLogger;
10
12
  varName: string;
11
13
  opts: doctor.EnvVarCheckOptions;
12
14
  diagnose(): Promise<import("@appium/types").DoctorCheckResult>;
@@ -1 +1 @@
1
- {"version":3,"file":"required-checks.d.ts","sourceRoot":"","sources":["../../../lib/doctor/required-checks.js"],"names":[],"mappings":"AAEA;;;;;;;EAAwD;AACxD;;;;;;;EAAkD;AAClD,2DAA4D;AAC5D,qDAAsD;uBAL/B,uBAAuB"}
1
+ {"version":3,"file":"required-checks.d.ts","sourceRoot":"","sources":["../../../lib/doctor/required-checks.js"],"names":[],"mappings":"AAEA;;;;;;;;EAAwD;AACxD;;;;;;;;EAAkD;AAClD,2DAA4D;AAC5D,qDAAsD;uBAL/B,uBAAuB"}