@its-not-rocket-science/ananke 0.1.68 → 0.1.69
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 +20 -0
- package/README.md +1 -0
- package/dist/src/content-pack.d.ts +1 -1
- package/dist/src/content-pack.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,26 @@ Versioning follows [Semantic Versioning](https://semver.org/).
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
+
## [0.1.69] — 2026-04-01
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- **PM-10 — Maintenance Budget Roadmap (complete):**
|
|
14
|
+
- `docs/maintenance-policy.md` (new): standing maintenance commitments covering:
|
|
15
|
+
- **Docs reconciliation** — `generate-module-index` + `generate-recipes-matrix` must match committed files before every release.
|
|
16
|
+
- **Issue triage cadence** — P0 (regression) same day; P1 (correctness) within one week; P2 (enhancement) roadmap-tracked; P3 (docs) best-effort.
|
|
17
|
+
- **Migration maintenance** — every minor version bump that changes a `@core` field must ship a registered migration in `src/schema-migration.ts`.
|
|
18
|
+
- **SDK parity policy** — Unity, Godot, and Web sidecars must update to the current `BRIDGE_SCHEMA_VERSION` within one minor release.
|
|
19
|
+
- **Example and corpus upkeep** — all `examples/` compile cleanly; `npm run verify-corpus` passes on every release.
|
|
20
|
+
- **Content-pack schema evolution** — minor bumps are backward-compatible; major bumps ship a migration tool.
|
|
21
|
+
- **Coverage floor** — statements 90%, branches 80%, functions 85%, lines 90%.
|
|
22
|
+
- **Deprecation budget** — no more than 10 symbols in deprecated state at once.
|
|
23
|
+
- `docs/maintenance-checklist.md` (new): per-release preparation checklist (10 sections, 30 items) operationalising the policy; includes a hotfix fast-path for P0 regressions.
|
|
24
|
+
- Link added to `README.md` Further Reading table.
|
|
25
|
+
- 0 new tests (5,593 total). Coverage: 97.06%/88.06%/95.83%/97.06%. Build: clean.
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
9
29
|
## [0.1.68] — 2026-04-01
|
|
10
30
|
|
|
11
31
|
### Added
|
package/README.md
CHANGED
|
@@ -421,6 +421,7 @@ Ananke's outputs are validated against historical and experimental sources:
|
|
|
421
421
|
| [`corpus/README.md`](corpus/README.md) | Scenario corpus — 5 canonical deterministic scenarios (tutorial, benchmark, validation, networking, bridge); run `npm run verify-corpus` |
|
|
422
422
|
| [`docs/module-index.md`](docs/module-index.md) | All 41 entry points — stability tier, use case, key exports, doc links |
|
|
423
423
|
| [`docs/core-guarantees.md`](docs/core-guarantees.md) | Core guarantees — determinism contract, API stability, validation philosophy, known limits |
|
|
424
|
+
| [`docs/maintenance-policy.md`](docs/maintenance-policy.md) | Maintenance commitments — docs reconciliation, issue triage, SDK parity, deprecation budget |
|
|
424
425
|
| [`docs/host-contract.md`](docs/host-contract.md) | Stable integration surface — everything needed to embed Ananke without reading `src/` |
|
|
425
426
|
| [`docs/integration-primer.md`](docs/integration-primer.md) | Data-flow diagrams, type glossary, gotchas |
|
|
426
427
|
| [`docs/bridge-contract.md`](docs/bridge-contract.md) | 3D renderer bridge protocol (AnimationHints, GrapplePoseConstraint) |
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { WorldState } from "./sim/world.js";
|
|
2
2
|
/** Current Ananke engine version — used to evaluate pack compatRange at runtime. */
|
|
3
|
-
export declare const ANANKE_ENGINE_VERSION = "0.1.
|
|
3
|
+
export declare const ANANKE_ENGINE_VERSION = "0.1.69";
|
|
4
4
|
/** A single actionable validation failure from `validatePack`. */
|
|
5
5
|
export interface PackValidationError {
|
|
6
6
|
/** JSONPath-style location, e.g. `"$.weapons[2].mass_kg"`. */
|
package/dist/src/content-pack.js
CHANGED
|
@@ -16,7 +16,7 @@ import { registerWorldArchetype, registerWorldItem } from "./world-factory.js";
|
|
|
16
16
|
// ── Version constant ──────────────────────────────────────────────────────────
|
|
17
17
|
// Must be kept in sync with package.json "version" field.
|
|
18
18
|
/** Current Ananke engine version — used to evaluate pack compatRange at runtime. */
|
|
19
|
-
export const ANANKE_ENGINE_VERSION = "0.1.
|
|
19
|
+
export const ANANKE_ENGINE_VERSION = "0.1.69";
|
|
20
20
|
// ── Semver utilities ──────────────────────────────────────────────────────────
|
|
21
21
|
// Lightweight range evaluator — no external dependencies.
|
|
22
22
|
// Supports: >=X.Y.Z >X.Y.Z <=X.Y.Z <X.Y.Z =X.Y.Z ^X.Y.Z ~X.Y.Z
|