appium-webdriveragent 5.12.3 → 5.13.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,17 @@
1
+ ## [5.13.1](https://github.com/appium/WebDriverAgent/compare/v5.13.0...v5.13.1) (2023-11-01)
2
+
3
+
4
+ ### Miscellaneous Chores
5
+
6
+ * **deps:** bump asyncbox from 2.9.4 to 3.0.0 ([#803](https://github.com/appium/WebDriverAgent/issues/803)) ([0f2305d](https://github.com/appium/WebDriverAgent/commit/0f2305d2559dc0807d7df0d0e06f7fc3c549701c))
7
+
8
+ ## [5.13.0](https://github.com/appium/WebDriverAgent/compare/v5.12.3...v5.13.0) (2023-10-31)
9
+
10
+
11
+ ### Features
12
+
13
+ * Add "elementDescription" property to audit issues containing the debug description of an element ([#802](https://github.com/appium/WebDriverAgent/issues/802)) ([9925af4](https://github.com/appium/WebDriverAgent/commit/9925af44ec5fbfb66e6f034dfd93a6c25de48661))
14
+
1
15
  ## [5.12.3](https://github.com/appium/WebDriverAgent/compare/v5.12.2...v5.12.3) (2023-10-31)
2
16
 
3
17
 
@@ -374,6 +374,7 @@ NSDictionary<NSNumber *, NSString *> *auditTypeValuesToNames(void) {
374
374
  @"compactDescription": extractIssueProperty(issue, @"compactDescription") ?: @"",
375
375
  @"auditType": auditType,
376
376
  @"element": [extractIssueProperty(issue, @"element") description] ?: @"",
377
+ @"elementDescription": [extractIssueProperty(issue, @"element") debugDescription] ?: @"",
377
378
  }];
378
379
  return YES;
379
380
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appium-webdriveragent",
3
- "version": "5.12.3",
3
+ "version": "5.13.1",
4
4
  "description": "Package bundling WebDriverAgent",
5
5
  "main": "./build/index.js",
6
6
  "scripts": {
@@ -99,7 +99,7 @@
99
99
  "appium-ios-device": "^2.5.0",
100
100
  "appium-ios-simulator": "^5.0.1",
101
101
  "async-lock": "^1.0.0",
102
- "asyncbox": "^2.5.3",
102
+ "asyncbox": "^3.0.0",
103
103
  "axios": "^1.4.0",
104
104
  "bluebird": "^3.5.5",
105
105
  "lodash": "^4.17.11",