appium-espresso-driver 4.1.0 → 4.1.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
|
+
## [4.1.1](https://github.com/appium/appium-espresso-driver/compare/v4.1.0...v4.1.1) (2025-03-10)
|
|
2
|
+
|
|
3
|
+
### Miscellaneous Chores
|
|
4
|
+
|
|
5
|
+
* bump io.appium.settings ([#1054](https://github.com/appium/appium-espresso-driver/issues/1054)) ([769d392](https://github.com/appium/appium-espresso-driver/commit/769d39201eedd5297c189b1cf1d641ed06cf050e))
|
|
6
|
+
|
|
1
7
|
## [4.1.0](https://github.com/appium/appium-espresso-driver/compare/v4.0.5...v4.1.0) (2025-02-27)
|
|
2
8
|
|
|
3
9
|
### Features
|
package/README.md
CHANGED
|
@@ -131,7 +131,7 @@ appium:buildToolsVersion | The version of Android build tools to use. By default
|
|
|
131
131
|
appium:skipLogcatCapture | Being set to `true` disables automatic logcat output collection during the test run. `false` by default
|
|
132
132
|
appium:suppressKillServer | Being set to `true` prevents the driver from ever killing the ADB server explicitly. Could be useful if ADB is connected wirelessly. `false` by default
|
|
133
133
|
appium:ignoreHiddenApiPolicyError | Being set to `true` ignores a failure while changing hidden API access policies to [enable access to non-SDK interfaces](https://developer.android.com/guide/app-compatibility/restrictions-non-sdk-interfaces#how_can_i_enable_access_to_non-sdk_interfaces). Could be useful on some devices, where access to these policies has been locked by its vendor. `false` by default.
|
|
134
|
-
|
|
134
|
+
appium:hideKeyboard | Being set to `true` hides the on-screen keyboard while the session is running. Use it instead of the legacy `appium:unicodeKeyboard` one (which will be dropped in the future). This effect is achieved by assigning a custom "artificial" [input method](https://developer.android.com/develop/ui/views/touch-and-input/creating-input-method). Only use this feature for special/exploratory cases as it violates the way your application under test is normally interacted with by a human. Setting this capability explicitly to `false` enforces `adb shell ime reset` call on session startup, which resets the currently selected/enabled IMEs to the default ones as if the device is initially booted with the current locale. `undefined` by default.
|
|
135
135
|
appium:mockLocationApp | Sets the package identifier of the app, which is used as a system mock location provider since Appium 1.18.0+. This capability has no effect on emulators. If the value is set to `null` or an empty string, then Appium will skip the mocked location provider setup procedure. Defaults to Appium Setting package identifier (`io.appium.settings`).
|
|
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 (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'.
|
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 = "4.1.
|
|
5
|
+
private const val VERSION = "4.1.1"
|
|
6
6
|
|
|
7
7
|
fun getEspressoServerVersion() = VERSION
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appium-espresso-driver",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.1",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "appium-espresso-driver",
|
|
9
|
-
"version": "4.1.
|
|
9
|
+
"version": "4.1.1",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"appium-adb": "^12.12.0",
|
|
13
|
-
"appium-android-driver": "^10.2.
|
|
13
|
+
"appium-android-driver": "^10.2.1",
|
|
14
14
|
"asyncbox": "^3.0.0",
|
|
15
15
|
"axios": "^1.7.2",
|
|
16
16
|
"bluebird": "^3.5.0",
|
|
17
|
-
"io.appium.settings": "^5.14.
|
|
17
|
+
"io.appium.settings": "^5.14.3",
|
|
18
18
|
"lodash": "^4.17.11",
|
|
19
19
|
"portscanner": "^2.1.1",
|
|
20
20
|
"semver": "^7.6.2",
|
|
@@ -196,6 +196,22 @@
|
|
|
196
196
|
"proxy-from-env": "^1.1.0"
|
|
197
197
|
}
|
|
198
198
|
},
|
|
199
|
+
"node_modules/@appium/support/node_modules/teen_process": {
|
|
200
|
+
"version": "2.2.3",
|
|
201
|
+
"resolved": "https://registry.npmjs.org/teen_process/-/teen_process-2.2.3.tgz",
|
|
202
|
+
"integrity": "sha512-8L540OalWH83qc6LHV5VMr0DjdP7KWUHQwTOImtWaG2ElW8BvLTh6M9871oGmmpOMb2BpOJQn2+09ZHWYsdTUA==",
|
|
203
|
+
"license": "Apache-2.0",
|
|
204
|
+
"dependencies": {
|
|
205
|
+
"bluebird": "^3.7.2",
|
|
206
|
+
"lodash": "^4.17.21",
|
|
207
|
+
"shell-quote": "^1.8.1",
|
|
208
|
+
"source-map-support": "^0.x"
|
|
209
|
+
},
|
|
210
|
+
"engines": {
|
|
211
|
+
"node": "^16.13.0 || >=18.0.0",
|
|
212
|
+
"npm": ">=8"
|
|
213
|
+
}
|
|
214
|
+
},
|
|
199
215
|
"node_modules/@appium/tsconfig": {
|
|
200
216
|
"version": "0.3.4",
|
|
201
217
|
"resolved": "https://registry.npmjs.org/@appium/tsconfig/-/tsconfig-0.3.4.tgz",
|
|
@@ -364,9 +380,9 @@
|
|
|
364
380
|
"license": "MIT"
|
|
365
381
|
},
|
|
366
382
|
"node_modules/@xmldom/xmldom": {
|
|
367
|
-
"version": "0.9.
|
|
368
|
-
"resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.9.
|
|
369
|
-
"integrity": "sha512-
|
|
383
|
+
"version": "0.9.8",
|
|
384
|
+
"resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.9.8.tgz",
|
|
385
|
+
"integrity": "sha512-p96FSY54r+WJ50FIOsCOjyj/wavs8921hG5+kVMmZgKcvIKxMXHTrjNJvRgWa/zuX3B6t2lijLNFaOyuxUH+2A==",
|
|
370
386
|
"license": "MIT",
|
|
371
387
|
"engines": {
|
|
372
388
|
"node": ">=14.6"
|
|
@@ -447,9 +463,9 @@
|
|
|
447
463
|
}
|
|
448
464
|
},
|
|
449
465
|
"node_modules/appium-android-driver": {
|
|
450
|
-
"version": "10.2.
|
|
451
|
-
"resolved": "https://registry.npmjs.org/appium-android-driver/-/appium-android-driver-10.2.
|
|
452
|
-
"integrity": "sha512-
|
|
466
|
+
"version": "10.2.1",
|
|
467
|
+
"resolved": "https://registry.npmjs.org/appium-android-driver/-/appium-android-driver-10.2.1.tgz",
|
|
468
|
+
"integrity": "sha512-zRi8tSTvaqh8r14eD8doC/NlGQNdcwXEbMwWhInBGonhbn7HPBgtp9iSFXfStfB0PTJsJnyItuTJDC3iXwoDxw==",
|
|
453
469
|
"license": "Apache-2.0",
|
|
454
470
|
"dependencies": {
|
|
455
471
|
"@appium/support": "^6.0.0",
|
|
@@ -459,7 +475,7 @@
|
|
|
459
475
|
"asyncbox": "^3.0.0",
|
|
460
476
|
"axios": "^1.x",
|
|
461
477
|
"bluebird": "^3.4.7",
|
|
462
|
-
"io.appium.settings": "^5.14.
|
|
478
|
+
"io.appium.settings": "^5.14.3",
|
|
463
479
|
"lodash": "^4.17.4",
|
|
464
480
|
"lru-cache": "^10.0.1",
|
|
465
481
|
"moment": "^2.24.0",
|
|
@@ -480,9 +496,9 @@
|
|
|
480
496
|
}
|
|
481
497
|
},
|
|
482
498
|
"node_modules/appium-chromedriver": {
|
|
483
|
-
"version": "7.0.
|
|
484
|
-
"resolved": "https://registry.npmjs.org/appium-chromedriver/-/appium-chromedriver-7.0.
|
|
485
|
-
"integrity": "sha512-
|
|
499
|
+
"version": "7.0.8",
|
|
500
|
+
"resolved": "https://registry.npmjs.org/appium-chromedriver/-/appium-chromedriver-7.0.8.tgz",
|
|
501
|
+
"integrity": "sha512-X2MfK/xMVoUHFuQHSTuJaEF/ZGmP0tGc/5P6AzCYWdmOUmloxEXTeq+jkodh6/5MAanOcnnI3bhBpqGvwCjqjQ==",
|
|
486
502
|
"license": "Apache-2.0",
|
|
487
503
|
"dependencies": {
|
|
488
504
|
"@appium/base-driver": "^9.1.0",
|
|
@@ -593,9 +609,9 @@
|
|
|
593
609
|
"license": "MIT"
|
|
594
610
|
},
|
|
595
611
|
"node_modules/axios": {
|
|
596
|
-
"version": "1.8.
|
|
597
|
-
"resolved": "https://registry.npmjs.org/axios/-/axios-1.8.
|
|
598
|
-
"integrity": "sha512-
|
|
612
|
+
"version": "1.8.2",
|
|
613
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.8.2.tgz",
|
|
614
|
+
"integrity": "sha512-ls4GYBm5aig9vWx8AWDSGLpnpDQRtWAfrjU+EuytuODrFBkqesN2RkOQCBzrA1RQNHw1SmRMSDDDSwzNAYQ6Rg==",
|
|
599
615
|
"license": "MIT",
|
|
600
616
|
"dependencies": {
|
|
601
617
|
"follow-redirects": "^1.15.6",
|
|
@@ -789,13 +805,13 @@
|
|
|
789
805
|
}
|
|
790
806
|
},
|
|
791
807
|
"node_modules/call-bound": {
|
|
792
|
-
"version": "1.0.
|
|
793
|
-
"resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.
|
|
794
|
-
"integrity": "sha512
|
|
808
|
+
"version": "1.0.4",
|
|
809
|
+
"resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
|
|
810
|
+
"integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
|
|
795
811
|
"license": "MIT",
|
|
796
812
|
"dependencies": {
|
|
797
|
-
"call-bind-apply-helpers": "^1.0.
|
|
798
|
-
"get-intrinsic": "^1.
|
|
813
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
814
|
+
"get-intrinsic": "^1.3.0"
|
|
799
815
|
},
|
|
800
816
|
"engines": {
|
|
801
817
|
"node": ">= 0.4"
|
|
@@ -1886,9 +1902,9 @@
|
|
|
1886
1902
|
}
|
|
1887
1903
|
},
|
|
1888
1904
|
"node_modules/io.appium.settings": {
|
|
1889
|
-
"version": "5.14.
|
|
1890
|
-
"resolved": "https://registry.npmjs.org/io.appium.settings/-/io.appium.settings-5.14.
|
|
1891
|
-
"integrity": "sha512-
|
|
1905
|
+
"version": "5.14.4",
|
|
1906
|
+
"resolved": "https://registry.npmjs.org/io.appium.settings/-/io.appium.settings-5.14.4.tgz",
|
|
1907
|
+
"integrity": "sha512-6W+sGscwQUtF55ffbSI/1jSoycPD081hQs4bARE3ojGLlOQBPcYVfqUDXyubr0FViqyqk5my/rEHv4mTShOaSQ==",
|
|
1892
1908
|
"license": "Apache-2.0",
|
|
1893
1909
|
"dependencies": {
|
|
1894
1910
|
"@appium/logger": "^1.3.0",
|
|
@@ -3587,9 +3603,9 @@
|
|
|
3587
3603
|
}
|
|
3588
3604
|
},
|
|
3589
3605
|
"node_modules/teen_process": {
|
|
3590
|
-
"version": "2.
|
|
3591
|
-
"resolved": "https://registry.npmjs.org/teen_process/-/teen_process-2.
|
|
3592
|
-
"integrity": "sha512-
|
|
3606
|
+
"version": "2.3.1",
|
|
3607
|
+
"resolved": "https://registry.npmjs.org/teen_process/-/teen_process-2.3.1.tgz",
|
|
3608
|
+
"integrity": "sha512-duT4gPj7HxEYy+AR4bJ9MNwf8GMLpJd+sNRAK2PTx53FpCcaiXVft3ePZh3hO6PY8NFWZMxTC3ZAtxyztScEsw==",
|
|
3593
3609
|
"license": "Apache-2.0",
|
|
3594
3610
|
"dependencies": {
|
|
3595
3611
|
"bluebird": "^3.7.2",
|
|
@@ -3668,9 +3684,9 @@
|
|
|
3668
3684
|
}
|
|
3669
3685
|
},
|
|
3670
3686
|
"node_modules/typescript": {
|
|
3671
|
-
"version": "5.
|
|
3672
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.
|
|
3673
|
-
"integrity": "sha512-
|
|
3687
|
+
"version": "5.8.2",
|
|
3688
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz",
|
|
3689
|
+
"integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==",
|
|
3674
3690
|
"dev": true,
|
|
3675
3691
|
"license": "Apache-2.0",
|
|
3676
3692
|
"bin": {
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"automated testing",
|
|
8
8
|
"android"
|
|
9
9
|
],
|
|
10
|
-
"version": "4.1.
|
|
10
|
+
"version": "4.1.1",
|
|
11
11
|
"author": "Appium Contributors",
|
|
12
12
|
"license": "Apache-2.0",
|
|
13
13
|
"repository": {
|
|
@@ -75,11 +75,11 @@
|
|
|
75
75
|
],
|
|
76
76
|
"dependencies": {
|
|
77
77
|
"appium-adb": "^12.12.0",
|
|
78
|
-
"appium-android-driver": "^10.2.
|
|
78
|
+
"appium-android-driver": "^10.2.1",
|
|
79
79
|
"asyncbox": "^3.0.0",
|
|
80
80
|
"axios": "^1.7.2",
|
|
81
81
|
"bluebird": "^3.5.0",
|
|
82
|
-
"io.appium.settings": "^5.14.
|
|
82
|
+
"io.appium.settings": "^5.14.3",
|
|
83
83
|
"lodash": "^4.17.11",
|
|
84
84
|
"portscanner": "^2.1.1",
|
|
85
85
|
"semver": "^7.6.2",
|