@vela-science/canopus 0.6.3 → 0.6.4

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,27 @@
1
1
  # Changelog
2
2
 
3
+ ## Unreleased
4
+
5
+ - Compose exactly with released Vela `0.915.1`. The maintenance release changes
6
+ no mission, Receipt, verifier, policy, proposal, or authority contract.
7
+ GitHub CI pins the released macOS, Linux, and Windows archives and binaries by
8
+ SHA-256, and the released-binary integration test retains Defer,
9
+ accepted-event delta zero, retained-artifact binding, and clean-clone replay.
10
+ - Extend the bounded Vela 0.9 compact-root reader through `0.915.1`. Fresh
11
+ minimal frontiers intentionally omit `proof/latest.json`; Canopus continues
12
+ to bind the strict replay event and scientific-state roots instead of
13
+ inventing or requiring a derived proof packet.
14
+ - Keep the non-normative cross-repository task-authority shadow test explicit:
15
+ it runs when its separately pinned ecosystem checkout is available and reports
16
+ a named skip in a standalone Canopus clone instead of copying private
17
+ experiment inputs or failing the product release suite.
18
+ - Add a source-local, non-normative task-authority hostile experiment over the
19
+ released Canopus `0.6.3`, Vela `0.915.1`, and Codex `0.145.0` composition.
20
+ The current Mission v1 boundary detects three of eight frozen hostiles; an
21
+ additional operational packet detects all eight while retaining zero
22
+ scientific, authority, or standing effect. The experiment is intentionally
23
+ excluded from the npm package and promotes no Vela protocol object.
24
+
3
25
  ## 0.6.3 - 2026-07-24
4
26
 
5
27
  - Restore exact composition with released Vela `0.914.1` after Canopus
package/README.md CHANGED
@@ -57,8 +57,8 @@ Mission → GPT-5.6 → artifact → verifier → Receipt → Defer.
57
57
  **90 seconds — inspect the shipped product:**
58
58
 
59
59
  ```sh
60
- bunx @vela-science/canopus@0.6.3 --version
61
- bunx @vela-science/canopus@0.6.3 profile validate sidon-a24-at-least-7194-gpt56-v3
60
+ bunx @vela-science/canopus@0.6.4 --version
61
+ bunx @vela-science/canopus@0.6.4 profile validate sidon-a24-at-least-7194-gpt56-v3
62
62
  ```
63
63
 
64
64
  **Full workflow — reproduce without rebuilding Canopus:**
@@ -85,16 +85,16 @@ also rejects a bound collision injection. Neither command accepts the proposal.
85
85
  Run the provenance-backed public package with Bun:
86
86
 
87
87
  ```sh
88
- bunx @vela-science/canopus@0.6.3 --version
88
+ bunx @vela-science/canopus@0.6.4 --version
89
89
  ```
90
90
 
91
91
  Inspect a clean frontier, then run its first ranked producer offer:
92
92
 
93
93
  ```sh
94
- bunx @vela-science/canopus@0.6.3 doctor /path/to/frontier
95
- bunx @vela-science/canopus@0.6.3 run /path/to/frontier --first
96
- bunx @vela-science/canopus@0.6.3 inspect latest
97
- bunx @vela-science/canopus@0.6.3 replay /path/to/run.json
94
+ bunx @vela-science/canopus@0.6.4 doctor /path/to/frontier
95
+ bunx @vela-science/canopus@0.6.4 run /path/to/frontier --first
96
+ bunx @vela-science/canopus@0.6.4 inspect latest
97
+ bunx @vela-science/canopus@0.6.4 replay /path/to/run.json
98
98
  ```
99
99
 
100
100
  Export a completed Defer run without publishing or mutating anything:
@@ -113,7 +113,7 @@ standing after verification; historical run v0 records remain inspectable.
113
113
  Use `--no-land` for a diagnostic mission that cannot change the source frontier:
114
114
 
115
115
  ```sh
116
- bunx @vela-science/canopus@0.6.3 run /path/to/frontier --first --no-land
116
+ bunx @vela-science/canopus@0.6.4 run /path/to/frontier --first --no-land
117
117
  ```
118
118
 
119
119
  `doctor` binds the exact Vela, Codex, Git, frontier, packet, profile, and verifier
@@ -154,7 +154,7 @@ Exact commits, run roots, audit evidence, and nonclaims live in
154
154
 
155
155
  ## Development
156
156
 
157
- Requires Bun 1.3.12, Vela 0.914.1, Codex CLI 0.145.0, and Docker. The built
157
+ Requires Bun 1.3.12, Vela 0.915.1, Codex CLI 0.145.0, and Docker. The built
158
158
  package also runs under Node 22 or 24; unsupported odd-numbered Node releases
159
159
  are rejected rather than silently treated as supported.
160
160
 
package/THIRD_PARTY.md CHANGED
@@ -5,7 +5,7 @@ are in `LICENSE-APACHE` and `LICENSE-MIT`.
5
5
 
6
6
  ## Shipped npm package
7
7
 
8
- `@vela-science/canopus@0.6.3` has no runtime npm dependencies. Its packaged
8
+ `@vela-science/canopus@0.6.4` has no runtime npm dependencies. Its packaged
9
9
  JavaScript uses only Node.js built-ins. The package also contains frozen
10
10
  mission data and verifier capsules produced for the bounded profiles described
11
11
  in `docs/MISSIONS.md`; their source and executable identities are bound by the
@@ -1,3 +1,3 @@
1
1
  export declare const CANOPUS_VERSION: string;
2
- export declare const SUPPORTED_VELA_VERSION = "0.914.1";
2
+ export declare const SUPPORTED_VELA_VERSION = "0.915.1";
3
3
  export declare const SUPPORTED_CODEX_VERSION = "0.145.0";
@@ -4,5 +4,5 @@ if (typeof packageJson.version !== "string" || packageJson.version.length === 0)
4
4
  throw new Error("Canopus package version is missing");
5
5
  }
6
6
  export const CANOPUS_VERSION = packageJson.version;
7
- export const SUPPORTED_VELA_VERSION = "0.914.1";
7
+ export const SUPPORTED_VELA_VERSION = "0.915.1";
8
8
  export const SUPPORTED_CODEX_VERSION = "0.145.0";
@@ -43,7 +43,7 @@ function usesCompactStatusProjection(version) {
43
43
  if (match === null)
44
44
  return false;
45
45
  const minor = Number(match[1]);
46
- return Number.isSafeInteger(minor) && minor >= 900 && minor <= 914;
46
+ return Number.isSafeInteger(minor) && minor >= 900 && minor <= 915;
47
47
  }
48
48
  function safeFailureMessage(value) {
49
49
  if (typeof value !== "string" || value.length === 0)
package/docs/RELEASES.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # Release evidence
2
2
 
3
+ ## Canopus v0.6.4
4
+
5
+ Version `0.6.4` restores exact composition with released Vela `0.915.1`.
6
+ The change advances only the tested Vela binary boundary and its platform
7
+ archive and executable digests. It changes no mission, Receipt, verifier,
8
+ policy, proposal, or authority contract. Historical missions remain bound to
9
+ their own recorded Vela versions and SHA-256 digests.
10
+
11
+ Vela `0.915.1` preserves the 0.9 minimal-init contract: a fresh frontier has no
12
+ `proof/latest.json`. Canopus therefore reads the event and scientific-state
13
+ roots from the strict replay projection, cross-checks every available replay
14
+ root, and does not create or require a derived proof packet.
15
+
16
+ The release gate requires the exact Vela `0.915.1` binary to pass initialization,
17
+ work, authored Defer landing, accepted-event delta zero, retained-artifact
18
+ binding, and clean-clone replay. CI pins these release bytes:
19
+
20
+ | Platform | Archive SHA-256 | Vela executable SHA-256 |
21
+ | --- | --- | --- |
22
+ | macOS arm64 | `e9f34d25e10313b2bcd38683b198743ef51242e5074b33d8f223a3d04873a642` | `826861ac137e4607bdaa363702d2779f2639b8fffb088a70f8be7d0be6540fed` |
23
+ | Linux x86-64 | `6d78bf5f47b51baf3610cd40a33524ea36e3f5f231bf2616ef306dacb4a4edf3` | `b9acf197e26a75decf37219ba681f78878dffe1c11d4e1351bba18246c77d8aa` |
24
+ | Windows x86-64 | `dae503dc0a83679e0f244ab12ea3fffd105bae1e0217d4d01c5b8a24adf508bd` | `a2dba32fe9354355a3cd0b3665a9da706dcd6bf15bdbb0c87c1cec25756d1ba4` |
25
+
26
+ The source-local task-authority live-shadow experiment still binds separate
27
+ private-parent evidence. A standalone Canopus clone now reports that fixture
28
+ as unavailable rather than copying it or making a non-normative experiment a
29
+ false product failure.
30
+
3
31
  ## Canopus v0.6.3
4
32
 
5
33
  Version `0.6.3` is a narrow composition repair for released Vela `0.914.1`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vela-science/canopus",
3
- "version": "0.6.3",
3
+ "version": "0.6.4",
4
4
  "description": "A bounded, replaceable research harness over released Vela interfaces",
5
5
  "type": "module",
6
6
  "private": false,
@@ -88,6 +88,8 @@
88
88
  "check": "bun run lint && bun run test",
89
89
  "prepack": "bun run build",
90
90
  "pack:check": "bun pm pack --dry-run",
91
+ "experiment:task-authority": "bun experiments/task-authority/run.mjs",
92
+ "experiment:task-authority-shadow": "bun experiments/task-authority/run-live-shadow.mjs",
91
93
  "fixture:hostile-custody": "node scripts/run-hostile-native-custody-fixture.mjs",
92
94
  "fixture:hostile-verifier": "node scripts/run-hostile-verifier-fixture.mjs"
93
95
  },