mirror of
https://github.com/ModernRelay/omnigraph.git
synced 2026-06-12 01:45:14 +02:00
The v0.6.2 notes omitted the MR-770 `__run__` cleanup entirely, and the v0.6.1 notes wrongly claimed it shipped in v0.6.1. The code (the `migrate_v2_to_v3` `__manifest` sweep + `is_internal_run_branch`/`run_registry.rs` removal) first appears at the v0.6.2 tag via #132 and is absent at v0.6.1. - v0.6.2: add the MR-770 highlight, correct the manifest-stamp note to describe the v2→v3 auto-migration on first read-write open (with the read-only caveat), and mention the cleanup in the intro. - v0.6.1: replace the two over-claiming `__run__` lines with corrections that point to v0.6.2. Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
4 KiB
4 KiB
Omnigraph v0.6.2
v0.6.2 is a maintenance-safety release on top of v0.6.1. It tightens the
optimize / recovery boundary, adds an explicit repair path for uncovered
manifest/head drift, completes the legacy __run__ branch cleanup (MR-770),
accepts pretty-printed JSON load input, and updates the project governance and
release automation around those fixes.
Highlights
- Explicit
omnigraph repair. NewrepairCLI support previews uncovered manifest/head drift by default and reports each table's classification, action, manifest version, Lance HEAD version, Lance operations, and any classification error.--confirmpublishes verified maintenance-only drift;--force --confirmcan publish suspicious or unverifiable drift after operator review. - Optimize skips uncovered drift.
omnigraph optimizenow refuses to interpret Lance HEAD movement that is ahead of__manifestwithout a recovery sidecar. Those tables are reported asskipped: DriftNeedsRepairand left untouched untilomnigraph repairclassifies them. - Optimize publishes compaction. Successful compaction now publishes the
compacted Lance version back through the graph manifest and is covered by an
Optimizerecovery sidecar. A crash after Lance compaction but before manifest publish converges through the normal recovery sweep instead of leaving hidden drift. - Recovery roll-back convergence. Recovery roll-back now aligns the
manifest-visible version after restoring a table, closing the residual where
Lance HEAD and
__manifestcould stay out of sync after recovery. - Legacy
__run__branch cleanup (MR-770). Completes the retirement of the Run state machine (removed in v0.4.0). A one-time v2→v3__manifestinternal-schema migration runs on the first read-write open and deletes any stale__run__*staging branches left by pre-v0.4.0 graphs — they previously leaked intobranch listand counted as blocking branches atschema applytime. The migration is idempotent, and theis_internal_run_branchguard (andrun_registry.rs) is retired now that__run__*is an ordinary branch name. (The earlier v0.6.1 notes described this as shipped in v0.6.1; it actually landed here in v0.6.2.) - Pretty-printed JSON load input.
loadaccepts multi-line JSON objects in addition to one-object-per-line JSONL, so formatted fixture or export files no longer need to be minified before import.
Operational Notes
repairrequires a clean recovery state. Pending__recoverysidecars still belong to automatic open-time recovery; reopen the graph first, then run repair if drift remains.repair --confirmonly auto-publishes drift made of Lance maintenance operations (RewriteandReserveFragments). Semantic operations such as append, delete, update, and merge are refused unless the operator uses--force --confirm.optimizeremains non-destructive. It still skips blob-bearing tables while OmniGraph is pinned to the Lance version with the blob-v2 compaction issue.- No manual on-disk migration is required. Existing graphs open under v0.6.2.
Graphs already at internal manifest schema stamp v3 are unchanged; graphs
created before v0.4.0 that still carry the v2 stamp auto-migrate v2→v3 on the
first read-write open (the
__run__*sweep above). The migration is write-path-only, so a long-lived read-only deployment still lists any stale__run__*branch until it is next opened read-write.
Docs, Governance, And CI
- Added issue, discussion, RFC, and pull-request templates plus governance docs for the external contribution path.
- Regenerated CODEOWNERS tables and adjusted branch-protection docs so code owners can bypass required PR review where repository rules allow it.
- Trimmed Windows release builds out of per-PR CI and kept Windows packaging on tag releases.
- Made Homebrew audit diagnostic-only in the release workflow so a flaky audit cannot block publishing an otherwise valid formula update.