@its-not-rocket-science/ananke 0.1.62 → 0.1.63

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/package.json +3 -1
package/CHANGELOG.md CHANGED
@@ -6,6 +6,27 @@ Versioning follows [Semantic Versioning](https://semver.org/).
6
6
 
7
7
  ---
8
8
 
9
+ ## [0.1.63] — 2026-04-01
10
+
11
+ ### Added
12
+
13
+ - **PM-4 — Release Discipline Dashboard (complete):**
14
+ - `tools/release-check.ts` (new): pre-release gate runner that executes 6 gates in sequence and produces two output artefacts:
15
+ 1. **Schema migration pass** — runs `test/schema-migration.test.ts` + `test/anatomy_schema.test.ts` via Vitest
16
+ 2. **Golden replay / fixture round-trip** — skips gracefully if `test/fixtures/` does not exist; runs fixture tests when present
17
+ 3. **Bridge contract type-check** — `tsc --noEmit -p tsconfig.build.json`; counts TypeScript errors
18
+ 4. **Benchmark regression** — delegates to `dist/tools/benchmark-check.js`; exit-code based
19
+ 5. **Emergent behaviour validation** — runs emergent-validation and parses PASS / PARTIAL PASS / FAIL from stdout
20
+ 6. **Module-index freshness** — re-generates `docs/module-index.md` and diffs against the committed version; warns if stale
21
+ - `docs/release-report.json` (auto-generated): structured JSON with timestamp, version, per-gate status, duration, summary, and detail strings.
22
+ - `docs/release-dashboard.md` (auto-generated): human-readable Markdown audit trail rendered from the JSON report. Includes verdict, gate table, and per-gate detail blocks.
23
+ - `--quick` flag: skips slow gates (benchmark, emergent validation) for fast local checks.
24
+ - Exit code: 0 = releasable (no failures, no warnings); 1 = not releasable.
25
+ - npm scripts: `release-check`, `release-check:quick`.
26
+ - 0 new tests (5,569 total). Coverage unchanged. Build: clean.
27
+
28
+ ---
29
+
9
30
  ## [0.1.62] — 2026-04-01
10
31
 
11
32
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@its-not-rocket-science/ananke",
3
- "version": "0.1.62",
3
+ "version": "0.1.63",
4
4
  "type": "module",
5
5
  "description": "Deterministic lockstep-friendly SI-units RPG/physics core (fixed-point TS)",
6
6
  "license": "MIT",
@@ -248,6 +248,8 @@
248
248
  "test:watch": "vitest",
249
249
  "test:coverage": "vitest run --coverage",
250
250
  "ci": "npm run build && npm run test:coverage && npm run check-boundaries",
251
+ "release-check": "node dist/tools/release-check.js",
252
+ "release-check:quick": "node dist/tools/release-check.js --quick",
251
253
  "check-boundaries": "node dist/tools/check-package-boundaries.js",
252
254
  "check-boundaries:strict": "node dist/tools/check-package-boundaries.js --strict",
253
255
  "extract-api": "node dist/tools/extract-api.js",