appium-webdriveragent 10.1.1 → 10.1.2

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
+ ## [10.1.2](https://github.com/appium/WebDriverAgent/compare/v10.1.1...v10.1.2) (2025-10-08)
2
+
3
+ ### Miscellaneous Chores
4
+
5
+ * Skip staleness checks for subelement lookups ([#1063](https://github.com/appium/WebDriverAgent/issues/1063)) ([ada7760](https://github.com/appium/WebDriverAgent/commit/ada77604f9fa9bfc85c61cabbd2a9f4de00aceb9))
6
+
1
7
  ## [10.1.1](https://github.com/appium/WebDriverAgent/compare/v10.1.0...v10.1.1) (2025-09-12)
2
8
 
3
9
  ### Miscellaneous Chores
@@ -94,7 +94,7 @@ static id<FBResponsePayload> FBNoSuchElementErrorResponseForRequest(FBRouteReque
94
94
  {
95
95
  FBElementCache *elementCache = request.session.elementCache;
96
96
  XCUIElement *element = [elementCache elementForUUID:(NSString *)request.parameters[@"uuid"]
97
- checkStaleness:YES];
97
+ checkStaleness:NO];
98
98
  XCUIElement *foundElement = [self.class elementUsing:request.arguments[@"using"]
99
99
  withValue:request.arguments[@"value"]
100
100
  under:element];
@@ -108,7 +108,7 @@ static id<FBResponsePayload> FBNoSuchElementErrorResponseForRequest(FBRouteReque
108
108
  {
109
109
  FBElementCache *elementCache = request.session.elementCache;
110
110
  XCUIElement *element = [elementCache elementForUUID:(NSString *)request.parameters[@"uuid"]
111
- checkStaleness:YES];
111
+ checkStaleness:NO];
112
112
  NSArray *foundElements = [self.class elementsUsing:request.arguments[@"using"]
113
113
  withValue:request.arguments[@"value"]
114
114
  under:element
@@ -15,11 +15,11 @@
15
15
  <key>CFBundlePackageType</key>
16
16
  <string>FMWK</string>
17
17
  <key>CFBundleShortVersionString</key>
18
- <string>10.1.1</string>
18
+ <string>10.1.2</string>
19
19
  <key>CFBundleSignature</key>
20
20
  <string>????</string>
21
21
  <key>CFBundleVersion</key>
22
- <string>10.1.1</string>
22
+ <string>10.1.2</string>
23
23
  <key>NSPrincipalClass</key>
24
24
  <string/>
25
25
  </dict>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appium-webdriveragent",
3
- "version": "10.1.1",
3
+ "version": "10.1.2",
4
4
  "description": "Package bundling WebDriverAgent",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",