@vela-science/canopus 0.4.0-rc.1 → 0.4.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 CHANGED
@@ -1,6 +1,27 @@
1
1
  # Changelog
2
2
 
3
- ## 0.4.0-rc.1 - Unreleased
3
+ ## 0.4.2 - 2026-07-19
4
+
5
+ - Preserve the failed `v0.4.1` tag and its verified GitHub build attestation as
6
+ audit evidence. npm received no package and no GitHub release was created.
7
+ - Pass npm an explicit local tarball path (`./release/*.tgz`). Without the
8
+ leading `./`, npm interpreted the relative path as a GitHub repository
9
+ shorthand and stopped before the OIDC exchange.
10
+
11
+ ## 0.4.1 - 2026-07-19
12
+
13
+ - Preserve the failed `v0.4.0` tag as audit evidence. Its release workflow
14
+ stopped in validation before packing, attestation, npm publication, or a
15
+ GitHub release.
16
+ - Run the complete historical/macOS suite in a dedicated macOS validation job,
17
+ then run the portable product and release-contract subset in the Ubuntu OIDC
18
+ publisher. Stable publication remains conditional on both jobs.
19
+ - Publish the stable npm package through the exact GitHub Actions trusted
20
+ publisher, with long-lived npm tokens disabled. The one-time `0.4.0-rc.1`
21
+ namespace bootstrap remains an explicitly unprovenanced prerelease;
22
+ provenance-backed `0.4.1` is the release and default install target.
23
+
24
+ ## 0.4.0 - 2026-07-19 (failed release tag; not published)
4
25
 
5
26
  - Require the live Linux custody fixture to pass the exact deterministic Codex
6
27
  sandbox boundary before it reads staged authentication or makes a model call.
@@ -16,6 +37,8 @@
16
37
  rebuilds `dist`, the npm-valid `canopus` bin entry survives publication, and
17
38
  `publishConfig` requires public access with provenance. Pack and publish dry
18
39
  runs now reject a package that silently drops the CLI.
40
+ - Prepare the stable npm package and accept ADR 0006 after its product,
41
+ isolation, package, and provenance gates.
19
42
 
20
43
  ## 0.3.0 - 2026-07-17
21
44
 
package/README.md CHANGED
@@ -12,7 +12,13 @@ replay or accepted state.
12
12
 
13
13
  ## Product workflow
14
14
 
15
- Canopus 0.3 targets checksum-pinned Vela 0.901.0. Its ordinary path is:
15
+ Canopus 0.4 targets checksum-pinned Vela 0.901.0. Install the released CLI:
16
+
17
+ ```bash
18
+ npm install --global @vela-science/canopus
19
+ ```
20
+
21
+ Its ordinary path is:
16
22
 
17
23
  ```bash
18
24
  canopus doctor /path/to/frontier
File without changes
package/dist/src/cli.js CHANGED
File without changes
package/docs/RELEASES.md CHANGED
@@ -1,12 +1,22 @@
1
1
  # Release evidence
2
2
 
3
- ## Canopus v0.4.0 candidate
4
-
5
- The source package advertises `0.4.0-rc.1` while this train remains
6
- unreleased. The prerelease identity prevents candidate tarballs from being
7
- mistaken for released `v0.3.0`; it grants no release or provenance credit.
8
- Final publication still requires the exact `v0.4.0` tag/version pair and the
9
- gates below.
3
+ ## Canopus v0.4.2
4
+
5
+ The source package advertises `0.4.0`. The public npm namespace was bootstrapped
6
+ once with `0.4.0-rc.1` under the `next` tag so the package could bind its exact
7
+ GitHub Actions trusted publisher. That bootstrap used interactive human 2FA,
8
+ has no provenance attestation, and earns no release credit. Package publishing
9
+ now disallows reusable npm tokens. The first stable tag, `v0.4.0`, stopped in
10
+ its Ubuntu validation step before packing, attestation, npm publication, or a
11
+ GitHub release because the job selected historical macOS-only tests. The
12
+ corrected `v0.4.1` workflow passed both validation jobs and verified its GitHub
13
+ build attestation, but npm interpreted `release/*.tgz` as a GitHub repository
14
+ shorthand and stopped before OIDC publication; no npm package or GitHub release
15
+ was created. Both tags are retained as failure evidence and are not moved. The
16
+ corrected exact `v0.4.2` tag/version pair is
17
+ published only by `.github/workflows/release.yml` in environment `npm`; the
18
+ workflow must produce and verify both npm SLSA provenance and a GitHub build
19
+ attestation before creating the matching GitHub release.
10
20
 
11
21
  The first registered quantum mission stopped safely before verification or
12
22
  landing because provider-reported usage exceeded its frozen 100,000-token
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vela-science/canopus",
3
- "version": "0.4.0-rc.1",
3
+ "version": "0.4.2",
4
4
  "description": "A bounded, replaceable research harness over released Vela interfaces",
5
5
  "type": "module",
6
6
  "private": false,
@@ -16,7 +16,6 @@
16
16
  "engines": {
17
17
  "node": ">=22 <23 || >=24 <25"
18
18
  },
19
- "packageManager": "pnpm@10.33.0",
20
19
  "bin": {
21
20
  "canopus": "dist/src/cli.js"
22
21
  },
@@ -71,19 +70,18 @@
71
70
  "LICENSE-APACHE",
72
71
  "LICENSE-MIT"
73
72
  ],
73
+ "devDependencies": {
74
+ "@types/node": "^24.0.0",
75
+ "typescript": "^5.9.0"
76
+ },
74
77
  "scripts": {
75
78
  "build": "node scripts/clean-dist.mjs && tsc -p tsconfig.json",
76
79
  "typecheck": "tsc -p tsconfig.json --noEmit",
77
80
  "lint": "tsc -p tsconfig.json --noEmit",
78
81
  "test": "pnpm run build && node --test 'dist/tests/**/*.test.js' 'tests/**/*.test.mjs'",
79
82
  "check": "pnpm run lint && pnpm run test",
80
- "prepack": "pnpm run build",
81
83
  "pack:check": "pnpm pack --dry-run",
82
84
  "fixture:hostile-custody": "node scripts/run-hostile-native-custody-fixture.mjs",
83
85
  "fixture:hostile-verifier": "node scripts/run-hostile-verifier-fixture.mjs"
84
- },
85
- "devDependencies": {
86
- "@types/node": "^24.0.0",
87
- "typescript": "^5.9.0"
88
86
  }
89
- }
87
+ }
@@ -1,35 +0,0 @@
1
- # Erdős 1056 k=15 capsule
2
-
3
- This non-authoritative verifier independently recomputes the exact inclusive
4
- prime range selected by its compile-time bounds. The active build covers
5
- `10428401..10428600`. It accepts one byte-exact artifact describing
6
- either the first 16-cut factorial-residue witness in that range or the complete
7
- negative scan. A negative result is only about this finite range.
8
-
9
- Build the active static Linux ARM64 capsule with
10
- `aarch64-linux-gnu-g++ (GCC) 15.2.0`:
11
-
12
- ```bash
13
- mkdir -p capsules/erdos1056-k15/bin/linux-arm64/10428401-10428600
14
- aarch64-linux-gnu-g++ -O3 -std=c++20 -static -s \
15
- -DCANOPUS_RANGE_START=10428401 -DCANOPUS_RANGE_END=10428600 \
16
- capsules/erdos1056-k15/verifier.cpp \
17
- -o capsules/erdos1056-k15/bin/linux-arm64/10428401-10428600/verifier
18
- ```
19
-
20
- The active Linux ARM64 capsule SHA-256 root is
21
- `a6fc0d2ad4dd8e665474d6efd530e8a574880b7191d246b1c245d8cf4db175aa`.
22
-
23
- The Linux x86-64 capsule was built in `alpine:3.22.1` for `linux/amd64`,
24
- pinned at
25
- `sha256:4bcff63911fcb4448bd4fdacec207030997caf25e9bea4045fa6c8c44de311d1`,
26
- using exact package `g++ 14.2.0-r6` with the same flags. Its SHA-256 root is
27
- `3cdcb487db4907b63230548a7c7fd94d4be6acf003ca532971f9cf1650f19546`.
28
-
29
- Completed range binaries and registrations remain recoverable from their
30
- recorded Git commits and release evidence; they are intentionally absent from
31
- the active package.
32
-
33
- The prepared mission copies the executable into its content-addressed bundle.
34
- The separate verifier container has no network and no writable persistent
35
- mounts.
@@ -1,20 +0,0 @@
1
- # Erdős 505 dimension-one verifier
2
-
3
- This target-specific capsule verifies one raw Lean proof term against the exact
4
- statement of `Erdos505.erdos_505.test_dim_one` from
5
- `google-deepmind/formal-conjectures` commit
6
- `c252a41054125b5fd9c8356e2137cd9b55337657`.
7
-
8
- The image build verifies that exact upstream commit, tree, and source-file
9
- hash, but the runtime deliberately does not import the admitted upstream
10
- theorem or the `FormalConjecturesUtil` whole-Mathlib umbrella. It retains only
11
- the transitive cache closure of `Mathlib.Analysis.InnerProductSpace.PiL2` and
12
- `Mathlib.Topology.MetricSpace.Bounded`; the reviewed capsule owns an exact copy
13
- of the target signature.
14
-
15
- The producer supplies only the term beginning with `by`. The capsule invokes
16
- Lean 4.27.0 inside the pinned verifier image and rejects `sorryAx` or any axiom
17
- outside `propext`, `Classical.choice`, and `Quot.sound`. Kernel success does not
18
- by itself establish statement fidelity or scientific acceptance; the exact
19
- source-bound target packet, capsule review, and Vela review boundary retain
20
- those distinctions.