appium-xcuitest-driver 7.0.0 → 7.1.0

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
+ ## [7.1.0](https://github.com/appium/appium-xcuitest-driver/compare/v7.0.1...v7.1.0) (2024-02-18)
2
+
3
+
4
+ ### Features
5
+
6
+ * return the result of getGeoLocation if available for ios 17+ ([#2329](https://github.com/appium/appium-xcuitest-driver/issues/2329)) ([fc0ba2c](https://github.com/appium/appium-xcuitest-driver/commit/fc0ba2c285cccef6f4f229dc5d27b5b2d0d78569))
7
+
8
+ ## [7.0.1](https://github.com/appium/appium-xcuitest-driver/compare/v7.0.0...v7.0.1) (2024-02-14)
9
+
10
+
11
+ ### Miscellaneous Chores
12
+
13
+ * Bump remote debugger version ([#2328](https://github.com/appium/appium-xcuitest-driver/issues/2328)) ([d12132b](https://github.com/appium/appium-xcuitest-driver/commit/d12132b4c2d0c770e681bdfd339339c23c6f3933))
14
+
1
15
  ## [7.0.0](https://github.com/appium/appium-xcuitest-driver/compare/v6.2.0...v7.0.0) (2024-02-12)
2
16
 
3
17
 
@@ -8,6 +8,10 @@ declare namespace _default {
8
8
  * if the Location Services are set to 'Always', because the device
9
9
  * needs some time to update the location data.
10
10
  *
11
+ * For iOS 17, the return value could be the result of
12
+ * "mobile:getSimulatedLocation" if the simulated location has been previously set
13
+ * "mobile:setSimulatedLocation" already.
14
+ *
11
15
  * @returns {Promise<import('./types').LocationWithAltitude>}
12
16
  * @throws {Error} If the device under test returns an error message.
13
17
  * i.e.: tvOS returns unsupported error
@@ -1 +1 @@
1
- {"version":3,"file":"location.d.ts","sourceRoot":"","sources":["../../../lib/commands/location.js"],"names":[],"mappings":";IAME;;;;;;;;;;;;;OAaG;IACH;;;;OAuBC;IAED;;;;;;;;OAQG;IACH,2JA8BC;IAED;;;;;OAKG;IACH,sFAgBC;;;6BAIU,OAAO,WAAW,EAAE,cAAc;8BAClC,OAAO,SAAS,EAAE,eAAe;uBACjC,OAAO,eAAe,EAAE,QAAQ"}
1
+ {"version":3,"file":"location.d.ts","sourceRoot":"","sources":["../../../lib/commands/location.js"],"names":[],"mappings":";IAME;;;;;;;;;;;;;;;;;OAiBG;IACH;;;;OAoCC;IAED;;;;;;;;OAQG;IACH,2JA8BC;IAED;;;;;OAKG;IACH,sFAgBC;;;6BAIU,OAAO,WAAW,EAAE,cAAc;8BAClC,OAAO,SAAS,EAAE,eAAe;uBACjC,OAAO,eAAe,EAAE,QAAQ"}
@@ -14,12 +14,27 @@ exports.default = {
14
14
  * if the Location Services are set to 'Always', because the device
15
15
  * needs some time to update the location data.
16
16
  *
17
+ * For iOS 17, the return value could be the result of
18
+ * "mobile:getSimulatedLocation" if the simulated location has been previously set
19
+ * "mobile:setSimulatedLocation" already.
20
+ *
17
21
  * @returns {Promise<import('./types').LocationWithAltitude>}
18
22
  * @throws {Error} If the device under test returns an error message.
19
23
  * i.e.: tvOS returns unsupported error
20
24
  * @this {XCUITestDriver}
21
25
  */
22
26
  async getGeoLocation() {
27
+ // Currently we proxy the setGeoLocation to mobile:setSimulatedLocation for iOS 17+.
28
+ // It would be helpful to address to use "mobile:getSimulatedLocation" for iOS 17+.
29
+ if (this.opts.platformVersion && support_1.util.compareVersions(this.opts.platformVersion, '>=', '17.0')) {
30
+ const { latitude, longitude } = await this.mobileGetSimulatedLocation();
31
+ if (latitude && longitude) {
32
+ this.log.debug('Returning the geolocation that has been previously set by mobile:setSimulatedLocation. ' +
33
+ 'mobile:resetSimulatedLocation can reset the location configuration.');
34
+ return { latitude, longitude, altitude: 0 };
35
+ }
36
+ this.log.warn(`No location was set by mobile:setSimulatedLocation. Trying to return the location from the device.`);
37
+ }
23
38
  // Please do not change the way to get the location here with '/wda/simulatedLocation'
24
39
  // endpoint because they could return different value before setting the simulated location.
25
40
  // '/wda/device/location' returns current device location information,
@@ -57,7 +72,7 @@ exports.default = {
57
72
  return /** @type {Location} */ ({ latitude, longitude, altitude: 0 });
58
73
  }
59
74
  if (this.opts.platformVersion && support_1.util.compareVersions(this.opts.platformVersion, '>=', '17.0')) {
60
- this.log.debug(`Proxy mobile:setSimulatedLocation method as iOS 17+ platform version`);
75
+ this.log.info(`Proxying to mobile:setSimulatedLocation method for iOS 17+ platform version`);
61
76
  await this.mobileSetSimulatedLocation(latitude, longitude);
62
77
  }
63
78
  else {
@@ -1 +1 @@
1
- {"version":3,"file":"location.js","sourceRoot":"","sources":["../../../lib/commands/location.js"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"location.js","sourceRoot":"","sources":["../../../lib/commands/location.js"],"names":[],"mappings":";;AAAA,yDAA2C;AAC3C,0CAAqC;AACrC,4CAAoC;AACpC,iCAA2C;AAE3C,kBAAe;IACb;;;;;;;;;;;;;;;;;OAiBG;IACH,KAAK,CAAC,cAAc;QAClB,oFAAoF;QACpF,mFAAmF;QACnF,IAAI,IAAI,CAAC,IAAI,CAAC,eAAe,IAAI,cAAI,CAAC,eAAe,CAAC,IAAI,CAAC,IAAI,CAAC,eAAe,EAAE,IAAI,EAAE,MAAM,CAAC,EAAE;YAC9F,MAAM,EAAC,QAAQ,EAAE,SAAS,EAAC,GAAG,MAAM,IAAI,CAAC,0BAA0B,EAAE,CAAC;YACtE,IAAI,QAAQ,IAAI,SAAS,EAAE;gBACzB,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,yFAAyF;oBACtG,qEAAqE,CAAC,CAAC;gBACzE,OAAO,EAAC,QAAQ,EAAE,SAAS,EAAE,QAAQ,EAAE,CAAC,EAAC,CAAC;aAC3C;YAED,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,oGAAoG,CAAC,CAAC;SACrH;QAED,sFAAsF;QACtF,4FAA4F;QAC5F,sEAAsE;QACtE,2EAA2E;QAC3E,oFAAoF;QACpF,MAAM,EAAC,mBAAmB,EAAE,QAAQ,EAAE,SAAS,EAAE,QAAQ,EAAC,GAAG,8BAA8B,CAAC,CAC1F,MAAM,IAAI,CAAC,YAAY,CAAC,sBAAsB,EAAE,KAAK,CAAC,CACvD,CAAC;QAEF,iCAAiC;QACjC,+EAA+E;QAC/E,IAAI,mBAAmB,KAAK,0BAAmB,CAAC,gBAAgB,EAAE;YAChE,MAAM,IAAI,CAAC,GAAG,CAAC,kBAAkB,CAC/B,uDAAuD;gBACrD,uEAAuE;gBACvE,2EAA2E;gBAC3E,qFAAqF;gBACrF,gCAAgC,CACnC,CAAC;SACH;QAED,OAAO,EAAC,QAAQ,EAAE,SAAS,EAAE,QAAQ,EAAC,CAAC;IACzC,CAAC;IAED;;;;;;;;OAQG;IACH,KAAK,CAAC,cAAc,CAAC,QAAQ;QAC3B,IAAI,EAAC,QAAQ,EAAE,SAAS,EAAC,GAAG,QAAQ,CAAC;QAErC,IAAI,CAAC,cAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,cAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,EAAE;YACzD,MAAM,IAAI,eAAM,CAAC,oBAAoB,CAAC,2CAA2C,CAAC,CAAC;SACpF;QAED,IAAI,IAAI,CAAC,WAAW,EAAE,EAAE;YACtB,uEAAuE;YACvE,MAAM,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,GAAG,QAAQ,EAAE,EAAE,GAAG,SAAS,EAAE,CAAC,CAAC;YACrE,OAAO,uBAAuB,CAAC,CAAC,EAAC,QAAQ,EAAE,SAAS,EAAE,QAAQ,EAAE,CAAC,EAAC,CAAC,CAAC;SACrE;QAED,IAAI,IAAI,CAAC,IAAI,CAAC,eAAe,IAAI,cAAI,CAAC,eAAe,CAAC,IAAI,CAAC,IAAI,CAAC,eAAe,EAAE,IAAI,EAAE,MAAM,CAAC,EAAE;YAC9F,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,6EAA6E,CAAC,CAAC;YAC7F,MAAM,IAAI,CAAC,0BAA0B,CAAC,QAAQ,EAAE,SAAS,CAAC,CAAC;SAC5D;aAAM;YACL,MAAM,OAAO,GAAG,MAAM,4BAAQ,CAAC,4BAA4B,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YAC5E,IAAI;gBACF,OAAO,CAAC,WAAW,CAAC,QAAQ,EAAE,SAAS,CAAC,CAAC;aAC1C;YAAC,OAAO,CAAC,EAAE;gBACV,MAAM,IAAI,CAAC,GAAG,CAAC,kBAAkB,CAC/B,qCAAqC,IAAI,CAAC,IAAI,CAAC,IAAI,sBAAsB,CAAC,CAAC,OAAO,EAAE,CACrF,CAAC;aACH;oBAAS;gBACR,OAAO,CAAC,KAAK,EAAE,CAAC;aACjB;SACF;QAED,OAAO,uBAAuB,CAAC,CAAC,EAAC,QAAQ,EAAE,SAAS,EAAE,QAAQ,EAAE,CAAC,EAAC,CAAC,CAAC;IACtE,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,0BAA0B;QAC9B,IAAI,IAAI,CAAC,WAAW,EAAE,EAAE;YACtB,MAAM,IAAI,eAAM,CAAC,mBAAmB,EAAE,CAAC;SACxC;QAED,MAAM,OAAO,GAAG,MAAM,4BAAQ,CAAC,4BAA4B,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC5E,IAAI;YACF,OAAO,CAAC,aAAa,EAAE,CAAC;SACzB;QAAC,OAAO,GAAG,EAAE;YACZ,MAAM,IAAI,CAAC,GAAG,CAAC,kBAAkB,CAC/B,yDAAyD,IAAI,CAAC,IAAI,CAAC,IAAI,KAAK;gBAC1E,mBAAmB,GAAG,CAAC,OAAO,EAAE,CACnC,CAAC;SACH;gBAAS;YACR,OAAO,CAAC,KAAK,EAAE,CAAC;SACjB;IACH,CAAC;CACF,CAAC;AAEF;;;;GAIG"}
@@ -13,12 +13,29 @@ export default {
13
13
  * if the Location Services are set to 'Always', because the device
14
14
  * needs some time to update the location data.
15
15
  *
16
+ * For iOS 17, the return value could be the result of
17
+ * "mobile:getSimulatedLocation" if the simulated location has been previously set
18
+ * "mobile:setSimulatedLocation" already.
19
+ *
16
20
  * @returns {Promise<import('./types').LocationWithAltitude>}
17
21
  * @throws {Error} If the device under test returns an error message.
18
22
  * i.e.: tvOS returns unsupported error
19
23
  * @this {XCUITestDriver}
20
24
  */
21
25
  async getGeoLocation() {
26
+ // Currently we proxy the setGeoLocation to mobile:setSimulatedLocation for iOS 17+.
27
+ // It would be helpful to address to use "mobile:getSimulatedLocation" for iOS 17+.
28
+ if (this.opts.platformVersion && util.compareVersions(this.opts.platformVersion, '>=', '17.0')) {
29
+ const {latitude, longitude} = await this.mobileGetSimulatedLocation();
30
+ if (latitude && longitude) {
31
+ this.log.debug('Returning the geolocation that has been previously set by mobile:setSimulatedLocation. ' +
32
+ 'mobile:resetSimulatedLocation can reset the location configuration.');
33
+ return {latitude, longitude, altitude: 0};
34
+ }
35
+
36
+ this.log.warn(`No location was set by mobile:setSimulatedLocation. Trying to return the location from the device.`);
37
+ }
38
+
22
39
  // Please do not change the way to get the location here with '/wda/simulatedLocation'
23
40
  // endpoint because they could return different value before setting the simulated location.
24
41
  // '/wda/device/location' returns current device location information,
@@ -66,7 +83,7 @@ export default {
66
83
  }
67
84
 
68
85
  if (this.opts.platformVersion && util.compareVersions(this.opts.platformVersion, '>=', '17.0')) {
69
- this.log.debug(`Proxy mobile:setSimulatedLocation method as iOS 17+ platform version`);
86
+ this.log.info(`Proxying to mobile:setSimulatedLocation method for iOS 17+ platform version`);
70
87
  await this.mobileSetSimulatedLocation(latitude, longitude);
71
88
  } else {
72
89
  const service = await services.startSimulateLocationService(this.opts.udid);
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "appium-xcuitest-driver",
3
- "version": "7.0.0",
3
+ "version": "7.1.0",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "appium-xcuitest-driver",
9
- "version": "7.0.0",
9
+ "version": "7.1.0",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
12
  "@colors/colors": "^1.6.0",
13
13
  "appium-idb": "^1.6.13",
14
14
  "appium-ios-device": "^2.5.4",
15
15
  "appium-ios-simulator": "^5.5.1",
16
- "appium-remote-debugger": "^10.0.0",
16
+ "appium-remote-debugger": "^11.0.0",
17
17
  "appium-webdriveragent": "^7.0.0",
18
18
  "appium-xcode": "^5.1.4",
19
19
  "async-lock": "^1.4.0",
@@ -90,11 +90,11 @@
90
90
  }
91
91
  },
92
92
  "node_modules/@appium/base-driver": {
93
- "version": "9.5.1",
94
- "resolved": "https://registry.npmjs.org/@appium/base-driver/-/base-driver-9.5.1.tgz",
95
- "integrity": "sha512-vOAautLIdNErhUbZFbIC6yo9xSxxK2FTjZfeELUBmPosSKezbRqx8htUt43CkwCr8PMDa5xv/OtYiG6k+bbgpg==",
93
+ "version": "9.5.2",
94
+ "resolved": "https://registry.npmjs.org/@appium/base-driver/-/base-driver-9.5.2.tgz",
95
+ "integrity": "sha512-0e/QYNPwGkcpeZ2ibRApopCrvH+ULeWeptbpVHq/dIAxYQXVs+8C7KgmK6vgf0/zuz6pdCT7jzRIY74nbuwJug==",
96
96
  "dependencies": {
97
- "@appium/support": "^4.2.1",
97
+ "@appium/support": "^4.2.2",
98
98
  "@appium/types": "^0.16.1",
99
99
  "@colors/colors": "1.6.0",
100
100
  "@types/async-lock": "1.4.2",
@@ -168,9 +168,9 @@
168
168
  }
169
169
  },
170
170
  "node_modules/@appium/support": {
171
- "version": "4.2.1",
172
- "resolved": "https://registry.npmjs.org/@appium/support/-/support-4.2.1.tgz",
173
- "integrity": "sha512-9XTkGP7lEs4pUsYqGf59nZwd/WXMzZfrra5SIYD0tzVRVB194fd9DNC5V7aLT0RZJgWZ+e2YJ++gwXvs8B+qwQ==",
171
+ "version": "4.2.2",
172
+ "resolved": "https://registry.npmjs.org/@appium/support/-/support-4.2.2.tgz",
173
+ "integrity": "sha512-sBaBoGCBbW8l7ZMoVL6KkLLqQxxTRzA06iYLUSP77UI4BSIAgT+ZomLNaZisoHw9ioljQyOSJp2QX3OWqxPPIA==",
174
174
  "dependencies": {
175
175
  "@appium/tsconfig": "^0.x",
176
176
  "@appium/types": "^0.16.1",
@@ -185,7 +185,7 @@
185
185
  "@types/ncp": "2.0.8",
186
186
  "@types/npmlog": "7.0.0",
187
187
  "@types/pluralize": "0.0.33",
188
- "@types/semver": "7.5.6",
188
+ "@types/semver": "7.5.7",
189
189
  "@types/shell-quote": "1.7.5",
190
190
  "@types/supports-color": "8.1.3",
191
191
  "@types/teen_process": "2.0.4",
@@ -216,7 +216,7 @@
216
216
  "read-pkg": "5.2.0",
217
217
  "resolve-from": "5.0.0",
218
218
  "sanitize-filename": "1.6.3",
219
- "semver": "7.5.4",
219
+ "semver": "7.6.0",
220
220
  "shell-quote": "1.8.1",
221
221
  "source-map-support": "0.5.21",
222
222
  "supports-color": "8.1.1",
@@ -234,31 +234,6 @@
234
234
  "sharp": "0.33.2"
235
235
  }
236
236
  },
237
- "node_modules/@appium/support/node_modules/lru-cache": {
238
- "version": "6.0.0",
239
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
240
- "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
241
- "dependencies": {
242
- "yallist": "^4.0.0"
243
- },
244
- "engines": {
245
- "node": ">=10"
246
- }
247
- },
248
- "node_modules/@appium/support/node_modules/semver": {
249
- "version": "7.5.4",
250
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
251
- "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
252
- "dependencies": {
253
- "lru-cache": "^6.0.0"
254
- },
255
- "bin": {
256
- "semver": "bin/semver.js"
257
- },
258
- "engines": {
259
- "node": ">=10"
260
- }
261
- },
262
237
  "node_modules/@appium/support/node_modules/type-fest": {
263
238
  "version": "4.10.1",
264
239
  "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.10.1.tgz",
@@ -694,9 +669,9 @@
694
669
  }
695
670
  },
696
671
  "node_modules/@types/node": {
697
- "version": "20.11.17",
698
- "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.17.tgz",
699
- "integrity": "sha512-QmgQZGWu1Yw9TDyAP9ZzpFJKynYNeOvwMJmaxABfieQoVoiVOS6MN1WSpqpRcbeA5+RW82kraAVxCCJg+780Qw==",
672
+ "version": "20.11.19",
673
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.19.tgz",
674
+ "integrity": "sha512-7xMnVEcZFu0DikYjWOlRq7NTPETrm7teqUT2WkQjrTIkEgUyyGdWsj/Zg8bEJt5TNklzbPD1X3fqfsHw3SpapQ==",
700
675
  "dependencies": {
701
676
  "undici-types": "~5.26.4"
702
677
  }
@@ -738,9 +713,9 @@
738
713
  }
739
714
  },
740
715
  "node_modules/@types/semver": {
741
- "version": "7.5.6",
742
- "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz",
743
- "integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A=="
716
+ "version": "7.5.7",
717
+ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.7.tgz",
718
+ "integrity": "sha512-/wdoPq1QqkSj9/QOeKkFquEuPzQbHTWAMPH/PaUMB+JuR31lXhlWXRZ52IpfDYVlDOUBvX09uBrPwxGT1hjNBg=="
744
719
  },
745
720
  "node_modules/@types/send": {
746
721
  "version": "0.17.4",
@@ -907,9 +882,9 @@
907
882
  }
908
883
  },
909
884
  "node_modules/appium-remote-debugger": {
910
- "version": "10.2.2",
911
- "resolved": "https://registry.npmjs.org/appium-remote-debugger/-/appium-remote-debugger-10.2.2.tgz",
912
- "integrity": "sha512-+Lvjp2NkI1m7I987Q/f/zpkY0ocStm3j80Z0q4vLd8zYjVZriuwdfMbKvSWSFYNTMxeBaH2uDGm79Z/1TNcFng==",
885
+ "version": "11.0.3",
886
+ "resolved": "https://registry.npmjs.org/appium-remote-debugger/-/appium-remote-debugger-11.0.3.tgz",
887
+ "integrity": "sha512-Mul8EBDHldRTgbB2QHuZBibWORmHyFGaLLqTExBMPUYuJ4Vd0MpmmUtyKaX7s8amEGJuzucTMssbszRVO5EYOg==",
913
888
  "dependencies": {
914
889
  "@appium/base-driver": "^9.0.0",
915
890
  "@appium/support": "^4.0.0",
@@ -1244,14 +1219,15 @@
1244
1219
  }
1245
1220
  },
1246
1221
  "node_modules/call-bind": {
1247
- "version": "1.0.6",
1248
- "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.6.tgz",
1249
- "integrity": "sha512-Mj50FLHtlsoVfRfnHaZvyrooHcrlceNZdL/QBvJJVd9Ta55qCQK0gs4ss2oZDeV9zFCs6ewzYgVE5yfVmfFpVg==",
1222
+ "version": "1.0.7",
1223
+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz",
1224
+ "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==",
1250
1225
  "dependencies": {
1226
+ "es-define-property": "^1.0.0",
1251
1227
  "es-errors": "^1.3.0",
1252
1228
  "function-bind": "^1.1.2",
1253
- "get-intrinsic": "^1.2.3",
1254
- "set-function-length": "^1.2.0"
1229
+ "get-intrinsic": "^1.2.4",
1230
+ "set-function-length": "^1.2.1"
1255
1231
  },
1256
1232
  "engines": {
1257
1233
  "node": ">= 0.4"
@@ -1493,14 +1469,13 @@
1493
1469
  }
1494
1470
  },
1495
1471
  "node_modules/define-data-property": {
1496
- "version": "1.1.3",
1497
- "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.3.tgz",
1498
- "integrity": "sha512-h3GBouC+RPtNX2N0hHVLo2ZwPYurq8mLmXpOLTsw71gr7lHt5VaI4vVkDUNOfiWmm48JEXe3VM7PmLX45AMmmg==",
1472
+ "version": "1.1.4",
1473
+ "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz",
1474
+ "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==",
1499
1475
  "dependencies": {
1476
+ "es-define-property": "^1.0.0",
1500
1477
  "es-errors": "^1.3.0",
1501
- "get-intrinsic": "^1.2.4",
1502
- "gopd": "^1.0.1",
1503
- "has-property-descriptors": "^1.0.1"
1478
+ "gopd": "^1.0.1"
1504
1479
  },
1505
1480
  "engines": {
1506
1481
  "node": ">= 0.4"
@@ -1593,6 +1568,17 @@
1593
1568
  "is-arrayish": "^0.2.1"
1594
1569
  }
1595
1570
  },
1571
+ "node_modules/es-define-property": {
1572
+ "version": "1.0.0",
1573
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz",
1574
+ "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==",
1575
+ "dependencies": {
1576
+ "get-intrinsic": "^1.2.4"
1577
+ },
1578
+ "engines": {
1579
+ "node": ">= 0.4"
1580
+ }
1581
+ },
1596
1582
  "node_modules/es-errors": {
1597
1583
  "version": "1.3.0",
1598
1584
  "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
@@ -2031,11 +2017,11 @@
2031
2017
  }
2032
2018
  },
2033
2019
  "node_modules/has-property-descriptors": {
2034
- "version": "1.0.1",
2035
- "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz",
2036
- "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==",
2020
+ "version": "1.0.2",
2021
+ "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz",
2022
+ "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==",
2037
2023
  "dependencies": {
2038
- "get-intrinsic": "^1.2.2"
2024
+ "es-define-property": "^1.0.0"
2039
2025
  },
2040
2026
  "funding": {
2041
2027
  "url": "https://github.com/sponsors/ljharb"
@@ -3419,9 +3405,9 @@
3419
3405
  }
3420
3406
  },
3421
3407
  "node_modules/spdx-exceptions": {
3422
- "version": "2.4.0",
3423
- "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.4.0.tgz",
3424
- "integrity": "sha512-hcjppoJ68fhxA/cjbN4T8N6uCUejN8yFw69ttpqtBeCbF3u13n7mb31NB9jKwGTTWWnt9IbRA/mf1FprYS8wfw=="
3408
+ "version": "2.5.0",
3409
+ "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz",
3410
+ "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w=="
3425
3411
  },
3426
3412
  "node_modules/spdx-expression-parse": {
3427
3413
  "version": "3.0.1",
@@ -3493,9 +3479,9 @@
3493
3479
  }
3494
3480
  },
3495
3481
  "node_modules/streamx": {
3496
- "version": "2.15.8",
3497
- "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.15.8.tgz",
3498
- "integrity": "sha512-6pwMeMY/SuISiRsuS8TeIrAzyFbG5gGPHFQsYjUr/pbBadaL1PCWmzKw+CHZSwainfvcF6Si6cVLq4XTEwswFQ==",
3482
+ "version": "2.16.0",
3483
+ "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.16.0.tgz",
3484
+ "integrity": "sha512-a7Fi0PoUeusrUcMS4+HxivnZqYsw2MFEP841TIyLxTcEIucHcJsk+0ARcq3tGq1xDn+xK7sKHetvfMzI1/CzMA==",
3499
3485
  "dependencies": {
3500
3486
  "fast-fifo": "^1.1.0",
3501
3487
  "queue-tick": "^1.0.1"
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "xcuitest",
9
9
  "xctest"
10
10
  ],
11
- "version": "7.0.0",
11
+ "version": "7.1.0",
12
12
  "author": "Appium Contributors",
13
13
  "license": "Apache-2.0",
14
14
  "repository": {
@@ -80,7 +80,7 @@
80
80
  "appium-idb": "^1.6.13",
81
81
  "appium-ios-device": "^2.5.4",
82
82
  "appium-ios-simulator": "^5.5.1",
83
- "appium-remote-debugger": "^10.0.0",
83
+ "appium-remote-debugger": "^11.0.0",
84
84
  "appium-webdriveragent": "^7.0.0",
85
85
  "appium-xcode": "^5.1.4",
86
86
  "async-lock": "^1.4.0",