appium-webdriveragent 5.8.4 → 5.8.6
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,17 @@
|
|
|
1
|
+
## [5.8.6](https://github.com/appium/WebDriverAgent/compare/v5.8.5...v5.8.6) (2023-09-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Miscellaneous Chores
|
|
5
|
+
|
|
6
|
+
* add log to leave it in the system log ([#772](https://github.com/appium/WebDriverAgent/issues/772)) ([012af21](https://github.com/appium/WebDriverAgent/commit/012af21383829397c7265daa0513829cc4e93aee))
|
|
7
|
+
|
|
8
|
+
## [5.8.5](https://github.com/appium/WebDriverAgent/compare/v5.8.4...v5.8.5) (2023-09-15)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Miscellaneous Chores
|
|
12
|
+
|
|
13
|
+
* **deps-dev:** bump sinon from 15.2.0 to 16.0.0 ([#766](https://github.com/appium/WebDriverAgent/issues/766)) ([2ffd187](https://github.com/appium/WebDriverAgent/commit/2ffd187b2e8b3c1ed04537320179bdfe9f9635df))
|
|
14
|
+
|
|
1
15
|
## [5.8.4](https://github.com/appium/WebDriverAgent/compare/v5.8.3...v5.8.4) (2023-09-14)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -421,6 +421,8 @@
|
|
|
421
421
|
+ (NSDictionary *)currentCapabilities
|
|
422
422
|
{
|
|
423
423
|
FBApplication *application = [FBSession activeSession].activeApplication;
|
|
424
|
+
// to log the info in the system
|
|
425
|
+
[FBLogger logFmt:@"Current active application bundle id is %@", application.bundleID];
|
|
424
426
|
return
|
|
425
427
|
@{
|
|
426
428
|
@"device": ([UIDevice currentDevice].userInterfaceIdiom == UIUserInterfaceIdiomPad) ? @"ipad" : @"iphone",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appium-webdriveragent",
|
|
3
|
-
"version": "5.8.
|
|
3
|
+
"version": "5.8.6",
|
|
4
4
|
"description": "Package bundling WebDriverAgent",
|
|
5
5
|
"main": "./build/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"pre-commit": "^1.2.2",
|
|
89
89
|
"prettier": "^3.0.0",
|
|
90
90
|
"semantic-release": "^21.1.0",
|
|
91
|
-
"sinon": "^
|
|
91
|
+
"sinon": "^16.0.0",
|
|
92
92
|
"ts-node": "^10.9.1",
|
|
93
93
|
"typescript": "^5.1.6"
|
|
94
94
|
},
|