@elpapi42/pi-fleet 0.1.0-beta.13 → 0.1.0-beta.15
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 +13 -0
- package/dist/cli-meta.json +4 -4
- package/dist/cli.mjs +2 -2
- package/dist/cli.mjs.map +1 -1
- package/dist/client-meta.json +4 -4
- package/dist/client.mjs +1 -1
- package/dist/client.mjs.map +1 -1
- package/dist/installer-meta.json +4 -4
- package/dist/installer.mjs +1 -1
- package/dist/installer.mjs.map +1 -1
- package/dist/runtime-manifest.json +22 -22
- package/dist/runtime-meta.json +6 -6
- package/dist/runtime.mjs +36 -15
- package/dist/runtime.mjs.map +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.0-beta.15 — 2026-07-27
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- Raised the bounded `pi --version` identity probe timeout so a loaded machine no longer reports `pi_version_unavailable` for a healthy Pi installation.
|
|
8
|
+
- Made the destructive-transition ownership proof authoritative and inspection-independent. SQLite exclusive locking now proves no other process still writes the database, while the `/proc` sweep is a best-effort named diagnostic that skips processes the kernel hides. Upgrading previously failed on ordinary Linux desktops with `EACCES` on the systemd user manager's descriptors.
|
|
9
|
+
|
|
10
|
+
## 0.1.0-beta.14 — 2026-07-27
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- 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.
|
|
15
|
+
|
|
3
16
|
## 0.1.0-beta.13 — 2026-07-27
|
|
4
17
|
|
|
5
18
|
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-meta.json
CHANGED
|
@@ -380,7 +380,7 @@
|
|
|
380
380
|
"format": "esm"
|
|
381
381
|
},
|
|
382
382
|
"src/pi/external-installation.ts": {
|
|
383
|
-
"bytes":
|
|
383
|
+
"bytes": 9541,
|
|
384
384
|
"imports": [
|
|
385
385
|
{
|
|
386
386
|
"path": "node:child_process",
|
|
@@ -5575,7 +5575,7 @@
|
|
|
5575
5575
|
"imports": [],
|
|
5576
5576
|
"exports": [],
|
|
5577
5577
|
"inputs": {},
|
|
5578
|
-
"bytes":
|
|
5578
|
+
"bytes": 639228
|
|
5579
5579
|
},
|
|
5580
5580
|
"dist/cli.mjs": {
|
|
5581
5581
|
"imports": [
|
|
@@ -5833,7 +5833,7 @@
|
|
|
5833
5833
|
"bytesInOutput": 1475
|
|
5834
5834
|
},
|
|
5835
5835
|
"src/pi/external-installation.ts": {
|
|
5836
|
-
"bytesInOutput":
|
|
5836
|
+
"bytesInOutput": 7816
|
|
5837
5837
|
},
|
|
5838
5838
|
"src/platform/client/start-runtime.ts": {
|
|
5839
5839
|
"bytesInOutput": 7301
|
|
@@ -6217,7 +6217,7 @@
|
|
|
6217
6217
|
"bytesInOutput": 6427
|
|
6218
6218
|
}
|
|
6219
6219
|
},
|
|
6220
|
-
"bytes":
|
|
6220
|
+
"bytes": 301007
|
|
6221
6221
|
}
|
|
6222
6222
|
}
|
|
6223
6223
|
}
|
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.15";
|
|
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])?$/;
|
|
@@ -3861,7 +3861,7 @@ import { constants } from "node:fs";
|
|
|
3861
3861
|
import { createReadStream } from "node:fs";
|
|
3862
3862
|
import { access, realpath, stat } from "node:fs/promises";
|
|
3863
3863
|
import { delimiter, dirname, isAbsolute, join } from "node:path";
|
|
3864
|
-
var VERSION_TIMEOUT_MS =
|
|
3864
|
+
var VERSION_TIMEOUT_MS = 15e3;
|
|
3865
3865
|
var MAX_VERSION_OUTPUT_BYTES = 4 * 1024;
|
|
3866
3866
|
var ExternalPiResolutionError = class extends Error {
|
|
3867
3867
|
constructor(code, message) {
|