@elpapi42/pi-fleet 0.1.0-beta.13 → 0.1.0-beta.14
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 +6 -0
- package/dist/cli.mjs +1 -1
- package/dist/cli.mjs.map +1 -1
- package/dist/runtime-manifest.json +9 -9
- package/dist/runtime-meta.json +4 -4
- package/dist/runtime.mjs +13 -1
- package/dist/runtime.mjs.map +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.0-beta.14 — 2026-07-27
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- Fixed the destructive-transition ownership proof rejecting startup on ordinary Linux desktops: a same-user zombie process exposes an unreadable `/proc/<pid>/fd` while owning no descriptors, which made the new runtime refuse to open a legacy database with `Cannot prove legacy runtime <pid> released pi-fleet state`. Live same-user processes that cannot be inspected still fail closed.
|
|
8
|
+
|
|
3
9
|
## 0.1.0-beta.13 — 2026-07-27
|
|
4
10
|
|
|
5
11
|
Makes local programs first-class pi-fleet clients: a supported TypeScript SDK plus continuous, replayable semantic receive over shared per-user agents. This beta replaces the previous receive and watch contracts and resets pi-fleet-owned state.
|
package/dist/cli.mjs
CHANGED
|
@@ -3390,7 +3390,7 @@ function splitArgv(argv) {
|
|
|
3390
3390
|
|
|
3391
3391
|
// src/shared/product-identity.ts
|
|
3392
3392
|
var PRODUCT_BINARY = "pifleet";
|
|
3393
|
-
var PRODUCT_VERSION = "0.1.0-beta.
|
|
3393
|
+
var PRODUCT_VERSION = "0.1.0-beta.14";
|
|
3394
3394
|
|
|
3395
3395
|
// src/shared/identifiers.ts
|
|
3396
3396
|
var AGENT_NAME_PATTERN = /^[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?$/;
|