wyren-mcp 1.2.0 → 1.2.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wyren-mcp",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Install the Wyren MCP server, agent skills, and auto-starting local render worker for Claude Code",
5
5
  "bin": {
6
6
  "wyren-mcp": "setup.mjs"
@@ -14,7 +14,7 @@
14
14
  //
15
15
  // Provenance of the artifacts currently vendored in this package:
16
16
  // monorepo branch: main
17
- // monorepo commit: 0600ac2
17
+ // monorepo commit: 6080320
18
18
  // tsup config: backend/tsup.worker.config.ts
19
19
  // externals (must stay in this package's dependencies, in sync with that
20
20
  // config's EXTERNAL_RUNTIME_DEPS):
@@ -37572,9 +37572,12 @@ var Daemon = class {
37572
37572
  void this.handleDispatch(socket, msg);
37573
37573
  });
37574
37574
  socket.on("close", (code, reason) => {
37575
- log("WebSocket closed", { code, reason: reason.toString() });
37575
+ log("WebSocket closed", {
37576
+ code,
37577
+ reason: reason.toString(),
37578
+ inFlight: this.inFlight.size
37579
+ });
37576
37580
  this.cleanupSocket();
37577
- this.abortAllInFlight("socket disconnected");
37578
37581
  this.scheduleReconnect();
37579
37582
  });
37580
37583
  socket.on("error", (err) => {