appium-xcuitest-driver 11.11.0 → 11.11.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,15 @@
1
+ ## [11.11.2](https://github.com/appium/appium-xcuitest-driver/compare/v11.11.1...v11.11.2) (2026-06-11)
2
+
3
+ ### Miscellaneous Chores
4
+
5
+ * bump appium-ios-simulator ([#2872](https://github.com/appium/appium-xcuitest-driver/issues/2872)) ([f7f7ae4](https://github.com/appium/appium-xcuitest-driver/commit/f7f7ae492da67a6cbf5cd533b28e87d61b38830c))
6
+
7
+ ## [11.11.1](https://github.com/appium/appium-xcuitest-driver/compare/v11.11.0...v11.11.1) (2026-06-10)
8
+
9
+ ### Miscellaneous Chores
10
+
11
+ * Bump appium-ios-remotexpc ([#2870](https://github.com/appium/appium-xcuitest-driver/issues/2870)) ([932193b](https://github.com/appium/appium-xcuitest-driver/commit/932193b194831f5f15e7bb4f99563fe0ca1582db))
12
+
1
13
  ## [11.11.0](https://github.com/appium/appium-xcuitest-driver/compare/v11.10.0...v11.11.0) (2026-06-10)
2
14
 
3
15
  ### Features
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "appium-xcuitest-driver",
3
- "version": "11.11.0",
3
+ "version": "11.11.2",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "appium-xcuitest-driver",
9
- "version": "11.11.0",
9
+ "version": "11.11.2",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
12
  "@appium/css-locator-to-native": "^1.0.1",
13
13
  "@appium/strongbox": "^1.0.0-rc.1",
14
14
  "@colors/colors": "^1.6.0",
15
15
  "appium-ios-device": "^3.1.12",
16
- "appium-ios-simulator": "^8.0.0",
16
+ "appium-ios-simulator": "^8.2.0",
17
17
  "appium-remote-debugger": "^15.7.3",
18
18
  "appium-webdriveragent": "^14.1.0",
19
19
  "appium-xcode": "^6.0.2",
@@ -63,7 +63,7 @@
63
63
  "npm": ">=10"
64
64
  },
65
65
  "optionalDependencies": {
66
- "appium-ios-remotexpc": "^2.3.0"
66
+ "appium-ios-remotexpc": "^2.4.0"
67
67
  },
68
68
  "peerDependencies": {
69
69
  "appium": "^3.0.0-rc.2"
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "xcuitest",
9
9
  "xctest"
10
10
  ],
11
- "version": "11.11.0",
11
+ "version": "11.11.2",
12
12
  "author": "Appium Contributors",
13
13
  "license": "Apache-2.0",
14
14
  "repository": {
@@ -86,7 +86,7 @@
86
86
  "@appium/strongbox": "^1.0.0-rc.1",
87
87
  "@colors/colors": "^1.6.0",
88
88
  "appium-ios-device": "^3.1.12",
89
- "appium-ios-simulator": "^8.0.0",
89
+ "appium-ios-simulator": "^8.2.0",
90
90
  "appium-remote-debugger": "^15.7.3",
91
91
  "appium-webdriveragent": "^14.1.0",
92
92
  "appium-xcode": "^6.0.2",
@@ -107,7 +107,7 @@
107
107
  "ws": "^8.13.0"
108
108
  },
109
109
  "optionalDependencies": {
110
- "appium-ios-remotexpc": "^2.3.0"
110
+ "appium-ios-remotexpc": "^2.4.0"
111
111
  },
112
112
  "scripts": {
113
113
  "build": "tsc -b",
@@ -294,13 +294,9 @@ class TunnelCreator {
294
294
  let packetStreamPort;
295
295
  packetStreamPort = this._packetStreamBasePort++;
296
296
  const packetStreamServer = new PacketStreamServer(packetStreamPort);
297
+ packetStreamServer.bindTunnel(tunnel);
297
298
  await packetStreamServer.start();
298
299
 
299
- const consumer = packetStreamServer.getPacketConsumer();
300
- if (consumer) {
301
- tunnel.addPacketConsumer(consumer);
302
- }
303
-
304
300
  this._packetStreamServers.set(udid, packetStreamServer);
305
301
 
306
302
  log.info(`Packet stream server started on port ${packetStreamPort}`);
@@ -447,12 +443,8 @@ class TunnelCreator {
447
443
 
448
444
  const packetStreamPort = this._packetStreamBasePort++;
449
445
  packetStreamServer = new PacketStreamServer(packetStreamPort);
446
+ packetStreamServer.bindTunnel(tunnel);
450
447
  await packetStreamServer.start();
451
-
452
- const consumer = packetStreamServer.getPacketConsumer();
453
- if (consumer && tunnel?.addPacketConsumer) {
454
- tunnel.addPacketConsumer(consumer);
455
- }
456
448
  log.info(`Apple TV packet stream server started on port ${packetStreamPort}`);
457
449
 
458
450
  this._appletvResources.push({
@@ -708,11 +700,8 @@ class TunnelCreator {
708
700
 
709
701
  const packetStreamPort = this._packetStreamBasePort++;
710
702
  const packetStreamServer = new PacketStreamServer(packetStreamPort);
703
+ packetStreamServer.bindTunnel(tunnel);
711
704
  await packetStreamServer.start();
712
- const consumer = packetStreamServer.getPacketConsumer();
713
- if (consumer && tunnel?.addPacketConsumer) {
714
- tunnel.addPacketConsumer(consumer);
715
- }
716
705
 
717
706
  this._appletvResources.push({
718
707
  tunnel,
@@ -1179,12 +1168,8 @@ await main();
1179
1168
  */
1180
1169
 
1181
1170
  /**
1182
- * @typedef {Object} AppleTVTunnelConnection
1183
1171
  * Tunnel connection returned from TunnelManager.getTunnel for an Apple TV (WiFi) socket.
1184
- * @property {string} Address
1185
- * @property {number} [RsdPort]
1186
- * @property {(c: unknown) => void} [addPacketConsumer]
1187
- * @property {() => Promise<void>} [closer]
1172
+ * @typedef {Awaited<ReturnType<typeof TunnelManager.getTunnel>>} AppleTVTunnelConnection
1188
1173
  */
1189
1174
 
1190
1175
  /**