@react-native/dev-middleware 0.83.0-nightly-20250922-5ef054921 → 0.83.0-nightly-20250923-2065c3180
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.
|
@@ -270,11 +270,6 @@ class InspectorProxy {
|
|
|
270
270
|
newDevice = new _Device.default(deviceOptions);
|
|
271
271
|
}
|
|
272
272
|
this.#devices.set(deviceId, newDevice);
|
|
273
|
-
this.#logger?.info(
|
|
274
|
-
"Connection established to app='%s' on device='%s'.",
|
|
275
|
-
appName,
|
|
276
|
-
deviceName,
|
|
277
|
-
);
|
|
278
273
|
debug(
|
|
279
274
|
"Got new device connection: name='%s', app=%s, device=%s, via=%s",
|
|
280
275
|
deviceName,
|
|
@@ -334,7 +329,7 @@ class InspectorProxy {
|
|
|
334
329
|
),
|
|
335
330
|
);
|
|
336
331
|
socket.on("close", (code, reason) => {
|
|
337
|
-
|
|
332
|
+
debug(
|
|
338
333
|
"Connection closed to device='%s' for app='%s' with code='%s' and reason='%s'.",
|
|
339
334
|
deviceName,
|
|
340
335
|
appName,
|
|
@@ -392,7 +387,7 @@ class InspectorProxy {
|
|
|
392
387
|
if (device == null) {
|
|
393
388
|
throw new Error(INTERNAL_ERROR_MESSAGES.UNREGISTERED_DEVICE);
|
|
394
389
|
}
|
|
395
|
-
|
|
390
|
+
debug(
|
|
396
391
|
"Connection established to DevTools for app='%s' on device='%s'.",
|
|
397
392
|
device.getApp() || "unknown",
|
|
398
393
|
device.getName() || "unknown",
|
|
@@ -447,7 +442,7 @@ class InspectorProxy {
|
|
|
447
442
|
userAgent: req.headers["user-agent"] ?? query.userAgent ?? null,
|
|
448
443
|
});
|
|
449
444
|
socket.on("close", (code, reason) => {
|
|
450
|
-
|
|
445
|
+
debug(
|
|
451
446
|
"Connection closed to DevTools for app='%s' on device='%s' with code='%s' and reason='%s'.",
|
|
452
447
|
device.getApp() || "unknown",
|
|
453
448
|
device.getName() || "unknown",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-native/dev-middleware",
|
|
3
|
-
"version": "0.83.0-nightly-
|
|
3
|
+
"version": "0.83.0-nightly-20250923-2065c3180",
|
|
4
4
|
"description": "Dev server middleware for React Native",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react-native",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@isaacs/ttlcache": "^1.4.1",
|
|
26
|
-
"@react-native/debugger-frontend": "0.83.0-nightly-
|
|
27
|
-
"@react-native/debugger-shell": "0.83.0-nightly-
|
|
26
|
+
"@react-native/debugger-frontend": "0.83.0-nightly-20250923-2065c3180",
|
|
27
|
+
"@react-native/debugger-shell": "0.83.0-nightly-20250923-2065c3180",
|
|
28
28
|
"chrome-launcher": "^0.15.2",
|
|
29
29
|
"chromium-edge-launcher": "^0.2.0",
|
|
30
30
|
"connect": "^3.6.5",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"node": ">= 20.19.4"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@react-native/debugger-shell": "0.83.0-nightly-
|
|
42
|
+
"@react-native/debugger-shell": "0.83.0-nightly-20250923-2065c3180",
|
|
43
43
|
"selfsigned": "^2.4.1",
|
|
44
44
|
"undici": "^5.29.0",
|
|
45
45
|
"wait-for-expect": "^3.0.2"
|