appium-xcuitest-driver 10.1.5 → 10.1.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,9 @@
1
+ ## [10.1.6](https://github.com/appium/appium-xcuitest-driver/compare/v10.1.5...v10.1.6) (2025-10-06)
2
+
3
+ ### Miscellaneous Chores
4
+
5
+ * Migrate open-wda script to ESM ([#2637](https://github.com/appium/appium-xcuitest-driver/issues/2637)) ([f441b88](https://github.com/appium/appium-xcuitest-driver/commit/f441b88cfac77829eed4b59214ff8475bd876738))
6
+
1
7
  ## [10.1.5](https://github.com/appium/appium-xcuitest-driver/compare/v10.1.4...v10.1.5) (2025-10-05)
2
8
 
3
9
  ### Miscellaneous Chores
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "appium-xcuitest-driver",
3
- "version": "10.1.5",
3
+ "version": "10.1.6",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "appium-xcuitest-driver",
9
- "version": "10.1.5",
9
+ "version": "10.1.6",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
12
  "@appium/strongbox": "^1.0.0-rc.1",
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "xcuitest",
9
9
  "xctest"
10
10
  ],
11
- "version": "10.1.5",
11
+ "version": "10.1.6",
12
12
  "author": "Appium Contributors",
13
13
  "license": "Apache-2.0",
14
14
  "repository": {
@@ -32,7 +32,7 @@
32
32
  "mainClass": "XCUITestDriver",
33
33
  "scripts": {
34
34
  "build-wda": "./scripts/build-wda.js",
35
- "open-wda": "./scripts/open-wda.js",
35
+ "open-wda": "./scripts/open-wda.mjs",
36
36
  "tunnel-creation": "./scripts/tunnel-creation.mjs",
37
37
  "download-wda-sim": "./scripts/download-wda-sim.mjs"
38
38
  },
@@ -1,9 +1,9 @@
1
- const path = require('path');
2
- const {exec} = require('teen_process');
3
- const {logger} = require('appium/support');
1
+ import path from 'node:path';
2
+ import { exec } from 'teen_process';
3
+ import { logger } from 'appium/support.js';
4
+ import { BOOTSTRAP_PATH } from 'appium-webdriveragent';
4
5
 
5
6
  const log = logger.getLogger('WDA');
6
- const {BOOTSTRAP_PATH} = require('appium-webdriveragent');
7
7
  const XCODEPROJ_NAME = 'WebDriverAgent.xcodeproj';
8
8
 
9
9
  async function openWda() {