@vela-science/canopus 0.5.1 → 0.5.2
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 +7 -0
- package/README.md +9 -9
- package/dist/src/product/doctor.js +2 -2
- package/dist/src/vela/cli.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.5.2 - 2026-07-20
|
|
4
|
+
|
|
5
|
+
- Compose against Vela 0.911.1 so same-actor retries of `vela work` return the
|
|
6
|
+
exact active session without appending a second lease event.
|
|
7
|
+
- Preserve the 0.911.0 cold-use run as immutable diagnostic evidence; the
|
|
8
|
+
retry defect it exposed is not rewritten away.
|
|
9
|
+
|
|
3
10
|
## 0.5.1 - 2026-07-20
|
|
4
11
|
|
|
5
12
|
- Preserve exact pending-result replay roots instead of recomputing a receipt
|
package/README.md
CHANGED
|
@@ -38,8 +38,8 @@ Mission → GPT-5.6 → artifact → verifier → Receipt → Defer.
|
|
|
38
38
|
**90 seconds — inspect the shipped product:**
|
|
39
39
|
|
|
40
40
|
```sh
|
|
41
|
-
bunx @vela-science/canopus@0.5.
|
|
42
|
-
bunx @vela-science/canopus@0.5.
|
|
41
|
+
bunx @vela-science/canopus@0.5.2 --version
|
|
42
|
+
bunx @vela-science/canopus@0.5.2 profile validate sidon-a24-at-least-7194-gpt56-v3
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
**Full workflow — reproduce without rebuilding Canopus:**
|
|
@@ -56,22 +56,22 @@ vela reproduce .
|
|
|
56
56
|
Run the provenance-backed public package with Bun:
|
|
57
57
|
|
|
58
58
|
```sh
|
|
59
|
-
bunx @vela-science/canopus@0.5.
|
|
59
|
+
bunx @vela-science/canopus@0.5.2 --version
|
|
60
60
|
```
|
|
61
61
|
|
|
62
62
|
Inspect a clean frontier, then run its first ranked producer offer:
|
|
63
63
|
|
|
64
64
|
```sh
|
|
65
|
-
bunx @vela-science/canopus@0.5.
|
|
66
|
-
bunx @vela-science/canopus@0.5.
|
|
67
|
-
bunx @vela-science/canopus@0.5.
|
|
68
|
-
bunx @vela-science/canopus@0.5.
|
|
65
|
+
bunx @vela-science/canopus@0.5.2 doctor /path/to/frontier
|
|
66
|
+
bunx @vela-science/canopus@0.5.2 run /path/to/frontier --first
|
|
67
|
+
bunx @vela-science/canopus@0.5.2 inspect latest
|
|
68
|
+
bunx @vela-science/canopus@0.5.2 replay /path/to/run.json
|
|
69
69
|
```
|
|
70
70
|
|
|
71
71
|
Use `--no-land` for a diagnostic mission that cannot change the source frontier:
|
|
72
72
|
|
|
73
73
|
```sh
|
|
74
|
-
bunx @vela-science/canopus@0.5.
|
|
74
|
+
bunx @vela-science/canopus@0.5.2 run /path/to/frontier --first --no-land
|
|
75
75
|
```
|
|
76
76
|
|
|
77
77
|
`doctor` binds the exact Vela, Codex, Git, frontier, packet, profile, and verifier
|
|
@@ -112,7 +112,7 @@ commits, run roots, audit evidence, and nonclaims live in
|
|
|
112
112
|
|
|
113
113
|
## Development
|
|
114
114
|
|
|
115
|
-
Requires Bun 1.3.12, Vela 0.911.
|
|
115
|
+
Requires Bun 1.3.12, Vela 0.911.1, Codex CLI 0.144.6, and Docker. The built
|
|
116
116
|
package also runs under Node 22 or 24; unsupported odd-numbered Node releases
|
|
117
117
|
are rejected rather than silently treated as supported.
|
|
118
118
|
|
|
@@ -120,8 +120,8 @@ export async function doctorProduct(options) {
|
|
|
120
120
|
runtimeIdentity({ name: "vela", cwd: frontier, home: runtime, runner }),
|
|
121
121
|
runtimeIdentity({ name: "git", cwd: frontier, home: runtime, runner }),
|
|
122
122
|
]);
|
|
123
|
-
if (vela.version !== "vela 0.911.
|
|
124
|
-
throw new Error(`Canopus ${CANOPUS_VERSION} requires vela 0.911.
|
|
123
|
+
if (vela.version !== "vela 0.911.1") {
|
|
124
|
+
throw new Error(`Canopus ${CANOPUS_VERSION} requires vela 0.911.1, observed ${vela.version}`);
|
|
125
125
|
}
|
|
126
126
|
const [status, offer, gitStatus] = await Promise.all([
|
|
127
127
|
jsonCommand({ runner, argv: [vela.binary, "status", ".", "--json"], cwd: frontier, home: runtime, label: "vela status" }),
|
package/dist/src/vela/cli.js
CHANGED
|
@@ -432,7 +432,7 @@ export class VelaClient {
|
|
|
432
432
|
if (replay.source_hash !== undefined) {
|
|
433
433
|
assertEqual(normalizeSha256(replay.source_hash, "vela check.replay.source_hash"), checkCurrent, "Vela source snapshot");
|
|
434
434
|
}
|
|
435
|
-
const proof = version === "0.900.0" || version === "0.900.1" || version === "0.900.2" || version === "0.901.0" || version === "0.910.0" || version === "0.911.0"
|
|
435
|
+
const proof = version === "0.900.0" || version === "0.900.1" || version === "0.900.2" || version === "0.901.0" || version === "0.910.0" || version === "0.911.0" || version === "0.911.1"
|
|
436
436
|
? {
|
|
437
437
|
ok: true,
|
|
438
438
|
command: "status_root_projection",
|