@hienlh/ppm 0.17.40 → 0.17.41
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,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.17.41] - 2026-08-30
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- **Upgrading no longer changes the public tunnel URL when a leftover dev server is holding the port** — processes started from chat (like `bun run dev:web`) could keep the dead server's port reserved, forcing the new server onto another port and rotating the tunnel address. They are now cleaned up during startup.
|
|
7
|
+
|
|
3
8
|
## [0.17.40] - 2026-08-30
|
|
4
9
|
|
|
5
10
|
### Fixed
|
|
@@ -71,4 +71,4 @@ This skill covers the `ppm` CLI, its HTTP API, and its config DB. It does **not*
|
|
|
71
71
|
- Third-party extensions (inspect via `ppm ext list`).
|
|
72
72
|
- The Claude Agent SDK internals (separate skill).
|
|
73
73
|
|
|
74
|
-
<!-- Generated for PPM v0.17.
|
|
74
|
+
<!-- Generated for PPM v0.17.41 at build time. Re-run `ppm export skill --install` to refresh. -->
|
|
@@ -288,4 +288,4 @@ _Base URL: `http://localhost:8080` (default; override via `ppm config set port <
|
|
|
288
288
|
- `ws://<host>/ws/terminal` — PTY terminal multiplexer
|
|
289
289
|
- `ws://<host>/ws/extensions` — extension host channel
|
|
290
290
|
|
|
291
|
-
<!-- Generated from src/server/routes/ for PPM v0.17.
|
|
291
|
+
<!-- Generated from src/server/routes/ for PPM v0.17.41 -->
|
package/package.json
CHANGED
|
@@ -51,6 +51,12 @@ export function isDebrisOrphan(name: string, cmd: string): boolean {
|
|
|
51
51
|
if (c.includes("shell-snapshots")) return true;
|
|
52
52
|
// Claude SDK node/bun children (chat tool subprocesses)
|
|
53
53
|
if ((n === "node.exe" || n === "bun.exe") && c.includes("claude")) return true;
|
|
54
|
+
// Dev-server trees launched from chat bash sessions (`bun run dev:web` →
|
|
55
|
+
// `bun run vite` → `node vite.js`) inherit the server's listening-socket
|
|
56
|
+
// handle and outlive their bash parent — verified holder of a zombied prod
|
|
57
|
+
// port. `__serve__`/`__supervise__` processes never match these patterns.
|
|
58
|
+
if (n === "bun.exe" && /\brun\s+(dev\b|dev:|vite\b)/.test(c)) return true;
|
|
59
|
+
if (n === "node.exe" && c.includes("\\vite\\bin\\vite.js")) return true;
|
|
54
60
|
return false;
|
|
55
61
|
}
|
|
56
62
|
|