@ontrails/regrade 0.2.0
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 +606 -0
- package/package.json +40 -0
- package/src/downstream/ast-rewrite.ts +1031 -0
- package/src/downstream/collect.ts +240 -0
- package/src/downstream/export-restructure.ts +1588 -0
- package/src/downstream/file-renames.ts +1677 -0
- package/src/downstream/package-source-artifact.ts +375 -0
- package/src/downstream/package-source-files.ts +195 -0
- package/src/downstream/package-source-manifest.ts +369 -0
- package/src/downstream/package-source.ts +237 -0
- package/src/downstream/report.ts +2085 -0
- package/src/downstream/scan-summary.ts +193 -0
- package/src/downstream/vocabulary-registry.ts +195 -0
- package/src/downstream/vocabulary.ts +3094 -0
- package/src/history-receipt.ts +847 -0
- package/src/index.ts +170 -0
- package/src/literal-transform.ts +124 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,606 @@
|
|
|
1
|
+
# @ontrails/regrade
|
|
2
|
+
|
|
3
|
+
## 0.2.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`b3ddf91`](https://github.com/outfitter-dev/trails/commit/b3ddf918ada8211f44983512e2bbdfbc5b66d722): Prepare the first normal Trails release at `0.2.0` on `latest`, replacing the unpublished 1.0.0 source release. The target advances the original `0.1.0` source minor, which was never published under the current package names. Public packages remain in lockstep. Update consumer installation guidance and provide a temporary manifest bridge for old 1.0 beta sources. Published beta versions remain unchanged; minor 0.x releases may carry documented breaking changes.
|
|
8
|
+
|
|
9
|
+
The `1.0.0` section retained below records an unpublished preparation, not an npm release. Its accumulated changes are included in `0.2.0`; the section remains as source history alongside the published beta entries.
|
|
10
|
+
|
|
11
|
+
## 1.0.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [`4fb20a6`](https://github.com/outfitter-dev/trails/commit/4fb20a68e1ed98972d99fed8b2df96bfa6804bd3): Derive deterministic, provenance-bearing vocabulary plan proposals from a minimal `from`/`to` seed, including morphology, public and compound identifier review, filename and reference-closure candidates, namespace census, and validated live-topo API preserves. Classified governed transitions retain their registry identity while routing every governed form to review instead of inventing a single safe successor.
|
|
16
|
+
- [`d3215b0`](https://github.com/outfitter-dev/trails/commit/d3215b0966f13af2a72ece9adbcc2c68c70f81b6): Add governed file renames to vocabulary Regrade plans, with move-first derived reference closure and persisted policy-aware evidence across CLI and MCP.
|
|
17
|
+
- [`aa29fa7`](https://github.com/outfitter-dev/trails/commit/aa29fa7cb96ff7fd9cbd99ac6ef0d5540475ef42): Prove that one selected published or local-tarball Trails package matches the bytes installed in a downstream project throughout class-mode Regrade runs, saved-plan review, and prepared apply.
|
|
18
|
+
- [`701ab85`](https://github.com/outfitter-dev/trails/commit/701ab85bd237e5fcf03725c56b70adb3612d6c15): Expose in-memory prepared class and vocabulary evaluations with deterministic identity and source freshness checks.
|
|
19
|
+
- [`65b362f`](https://github.com/outfitter-dev/trails/commit/65b362f65fa2a75e2121d1a8b31882d52fa0376b): Regrade history consolidates per transition, append-only: `regrade apply` appends a run entry stamped `{ planContentHash, lockHashAtRun }` to `.trails/regrade/history/<transition>.json` instead of overwriting lockhash-named files, identical re-runs are recognized as replays, the artifact carries a stable internal transition `id`, and `regrade check <transition>` verifies each recorded run at its own stamped lock. The report `history.status` union widens to `applied | checked | replay`.
|
|
20
|
+
- [`d3f7a25`](https://github.com/outfitter-dev/trails/commit/d3f7a25e66b6f0149ab2f33ac31ae1458860dce3): Regrade review entries carry structured review detail through Warden-backed and AST-backed classes: matched form, candidate replacement, machine-readable signals, preserve cautions, and a `judgment` field that distinguishes unresolved occurrence judgment from completed preserve/rewrite verdicts. Safe rewrite entries keep their existing report shape.
|
|
21
|
+
- [`5a7d22a`](https://github.com/outfitter-dev/trails/commit/5a7d22ab9d674f86b28758f23c3e94a17efb5be1): Add three-tier vocabulary migration scope. Protected historical paths remain
|
|
22
|
+
scanned and counted as `historical-by-policy` without being rewritten, while
|
|
23
|
+
reports expose scope-tier totals and census-expected teaching-surface coverage
|
|
24
|
+
through equivalent CLI and MCP plan schemas. Applied vocabulary occurrences
|
|
25
|
+
remain auditable in history with an `applied` verdict, while policy-only
|
|
26
|
+
evidence does not make an active plan stale merely by being recorded.
|
|
27
|
+
- [`5adb995`](https://github.com/outfitter-dev/trails/commit/5adb99551c2dda6190d46cce7f60bb08d63c99aa): Complete the v1 hard cutover from the authored `blaze` field to
|
|
28
|
+
`implementation` across trail contracts, surface projections, tests, examples,
|
|
29
|
+
and public source-analysis helpers. Existing applications must rename authored
|
|
30
|
+
trail behavior fields and direct trail-object access before upgrading.
|
|
31
|
+
- [`88a6a62`](https://github.com/outfitter-dev/trails/commit/88a6a62a9e9e230ca6d368fa78dc3ece6c816204): Complete the v1 classification-first cutover from projection/project vocabulary
|
|
32
|
+
to derive/derived for contract-owned fact production and render/rendered for
|
|
33
|
+
surface presentation. Public type, helper, rule, relation, and report names move
|
|
34
|
+
without compatibility aliases; ordinary repository/project nouns remain
|
|
35
|
+
explicit preserves or structured review inventory.
|
|
36
|
+
- [`9f0842e`](https://github.com/outfitter-dev/trails/commit/9f0842ee9d7c7155d86a4fd023760ac0a5636f5d): Retire the temporary root vocabulary-cutover toolchain now that Regrade owns
|
|
37
|
+
structured migration plans, safe rewrites, classification, census, CLI/MCP
|
|
38
|
+
reports, and immutable history. Remove the obsolete source exemptions so
|
|
39
|
+
Oxlint and Warden enforce the durable transition contract directly, and add a
|
|
40
|
+
history-driven Regrade audit surface for current-tree regression checks.
|
|
41
|
+
- [`aedb87b`](https://github.com/outfitter-dev/trails/commit/aedb87b3b536c5849636c7a5951c51e1e7f0d1cc): Add governed identifier-segment renames for AST-backed migrations. Regrade can
|
|
42
|
+
now migrate camelCase, PascalCase, leading-underscore, and SCREAMING_SNAKE
|
|
43
|
+
identifier segments, including single-segment forms such as `BLAZE` and
|
|
44
|
+
`_BLAZE`, while preserving exact-mode behavior and rejecting lowercase
|
|
45
|
+
substring, concatenated acronym, or inflection matches.
|
|
46
|
+
- [`c83d0b6`](https://github.com/outfitter-dev/trails/commit/c83d0b67ac928af1b44c1f2d2c4b36aa09a24a70): Inventory parser-native source comments and TSDoc as exact review-only entries
|
|
47
|
+
for governed classified vocabulary transitions across CLI, MCP, and audit.
|
|
48
|
+
- [`97ccb5c`](https://github.com/outfitter-dev/trails/commit/97ccb5c168f7dc0f157f2518c78b226d67cfa008): Add the strict v3 Regrade run-receipt contract, canonical serializer, compact classified-form judgments, and cache-independent hash-reference resolution.
|
|
49
|
+
- [`9a8b6e4`](https://github.com/outfitter-dev/trails/commit/9a8b6e4af394c76c11e6d0007e0f5f94d0be2cb3): Persist Regrade lifecycle runs as canonical v3 receipts with exact Git blob evidence and authored field provenance, and validate their compact classified-form projection independently in Warden.
|
|
50
|
+
- [`bd1bd96`](https://github.com/outfitter-dev/trails/commit/bd1bd96b90cd8b55f73061e4078a14cd75bed745): Require committed Regrade provenance for governed vocabulary transitions.
|
|
51
|
+
|
|
52
|
+
Applied governed plans now expose deterministic transition, plan, source,
|
|
53
|
+
safe-apply, and review-follow-up evidence through history results. Warden loads
|
|
54
|
+
committed history into project context, cites it for reintroduced symbols, and
|
|
55
|
+
rejects invalid or missing provenance for transitions that require Regrade in
|
|
56
|
+
the workspace that owns the governed registry, without making downstream apps
|
|
57
|
+
prove the framework's own migrations.
|
|
58
|
+
Portable validation accepts the authoritative numeric file-rename counters
|
|
59
|
+
persisted by Regrade history.
|
|
60
|
+
|
|
61
|
+
### Patch Changes
|
|
62
|
+
|
|
63
|
+
- [`f3c4fef`](https://github.com/outfitter-dev/trails/commit/f3c4fef87617461a20b641d60f359dab3c625ca8): Export a shared `escapeRegExp` helper from core and migrate first-party callers off local copies.
|
|
64
|
+
- [`b077fb7`](https://github.com/outfitter-dev/trails/commit/b077fb7ba6d9724cac6f0e59bc3fec9aec28984c): Add the export-restructure Regrade class family (TRL-1210). `export-restructure:cli-aliases` inverts legacy `cliAliases`/`trailsCliAliases` exports into `surfaceOverlay({ cli })` bindings inside the module's `trailsOverlays` export — adding the `@ontrails/core` import, deleting the legacy export, and routing anything it cannot prove safe (computed keys, spreads, in-module `aliases:` references) to `needs-review` with the exact target shape named. `export-restructure:mcp-trailheads` projects call-site MCP trailhead maps into `surfaceOverlay({ mcp })` group bindings: it rewrites in place when the same module exports `trailsOverlays`, and otherwise emits a classified `needs-review` handoff naming the module-overlay target while the call-site map stays as the richer-metadata override-in-context. Warden's fix-class union grows to `'export-restructure' | 'term-rewrite'`, `no-legacy-cli-alias-export` now advertises the `export-restructure` class, and `loadWardenRegradeClasses` supersedes `loadWardenTermRewriteClasses` (still exported) as the full Warden-routed class loader. Class-mode Regrade also gains the full plan lifecycle: `trails regrade plan --type class --class-ids ...` writes a `.trails/regrade/<slug>.json` plan carrying class ids, scope, and intent, `regrade check` re-runs the dry run and gates on outstanding rewrites or review, and `regrade apply` applies and graduates the plan to `.trails/regrade/history/<slug>-<hash>.json` — the same plan → check → apply → history evidence trail vocabulary regrades already had, now available to structural transforms. The class family ships for downstream apps bridging the pre-1.0 gap, so pre-cutover alias exports and trailhead maps migrate mechanically instead of by hand.
|
|
65
|
+
- [`53014a4`](https://github.com/outfitter-dev/trails/commit/53014a4593170edd5adfbaa2c94c895c67a320d1): Exclude immutable Regrade history artifacts from downstream migration source scans while preserving active plan and other policy-classified evidence. Warden continues to validate committed history through its dedicated provenance loader.
|
|
66
|
+
- [`90d394c`](https://github.com/outfitter-dev/trails/commit/90d394c005fdf6b898ba7052d0b56755af0f4954): Derive nested worktree, repository, and submodule collection boundaries in the
|
|
67
|
+
shared Source walker. Regrade and Warden now observe one directly targeted
|
|
68
|
+
working tree per run, and Regrade audit summaries expose boundary skip counts.
|
|
69
|
+
- [`e2f3d23`](https://github.com/outfitter-dev/trails/commit/e2f3d23b26dddf7daa2024bf8d297471f317cd59): Default Regrade reports to actionable entries, add skip counts grouped by
|
|
70
|
+
reason, and expose an `includeEntries` option for full report inventories.
|
|
71
|
+
- [`9be2b7e`](https://github.com/outfitter-dev/trails/commit/9be2b7e9b4f054d10c26e68ff71aea30d2713738): Load project-local Warden term-rewrite rules from the Regrade root so repo-owned
|
|
72
|
+
migration classes can run through `trails regrade`.
|
|
73
|
+
- [`47f782c`](https://github.com/outfitter-dev/trails/commit/47f782cd6142f9359551490ead24e15b38f8ef76): Add occurrence-level vocabulary regrade reports with plan, ledger,
|
|
74
|
+
and completion-gate facts. The Trails `regrade` operator command now supports
|
|
75
|
+
positional `<from> <to>` regrade runs and exposes the same capability through
|
|
76
|
+
the curated MCP surface.
|
|
77
|
+
- [`0c40138`](https://github.com/outfitter-dev/trails/commit/0c40138efb962e779710daa172bdfd756d9d992f): Harden vocabulary regrades by deferring Markdown code contexts for review and
|
|
78
|
+
exposing structured preserve rules through the Trails `regrade` command.
|
|
79
|
+
- [`ee9f3ae`](https://github.com/outfitter-dev/trails/commit/ee9f3ae0c1f42e371bae6568c00bbdfccb4da677): Let Warden fix capabilities declare downstream scan targets and have Regrade
|
|
80
|
+
honor those targets for Warden-backed term-rewrite classes.
|
|
81
|
+
|
|
82
|
+
Dogfood the first safe facet-to-trailhead prose rewrite through project-local
|
|
83
|
+
Warden rules and Regrade.
|
|
84
|
+
|
|
85
|
+
- [`4e75b85`](https://github.com/outfitter-dev/trails/commit/4e75b85e2013b12b9689e835eba40e78fa8d335a): Carry structured review details from Warden-backed term-rewrite diagnostics into Regrade review reports.
|
|
86
|
+
- [`b991263`](https://github.com/outfitter-dev/trails/commit/b991263e1cdef34b4787e690cc0187c1e8b07ef9): Retire the package-owned `regrade.downstream.report` trail wrapper so the Trails operator app owns the public Regrade surface while `@ontrails/regrade` exposes the reusable engine APIs and report schema.
|
|
87
|
+
- [`c36aca9`](https://github.com/outfitter-dev/trails/commit/c36aca978c7e1561e68701c084241e5b3f85dcef): Preserve existing Result error boundaries directly and widen Warden pass-through
|
|
88
|
+
coaching beyond trail blazes.
|
|
89
|
+
- [`01b9204`](https://github.com/outfitter-dev/trails/commit/01b92046db52c71f22a871e58a308d7a94483cab): Harden governed v1 vocabulary transitions with property-key-only blaze literal
|
|
90
|
+
rewrites, structured review for ambiguous literal positions, explicit
|
|
91
|
+
scratch/history boundaries, and scan-only preservation for migration plans and
|
|
92
|
+
historical decision evidence.
|
|
93
|
+
- [`768cc79`](https://github.com/outfitter-dev/trails/commit/768cc79ca10947b8808b376e281e1a81131b4acc): Close missed projection vocabulary residue in Regrade internals and public
|
|
94
|
+
error-rendering guidance, and keep lifecycle-ambiguous governed identifiers in
|
|
95
|
+
the Warden review inventory instead of assigning them an unsafe automatic
|
|
96
|
+
target.
|
|
97
|
+
- [`18a14e2`](https://github.com/outfitter-dev/trails/commit/18a14e220728be7108f3fe2864455c52305aef9f): Finish the v1 vocabulary reset cleanup by retaining the facet guard, adding a
|
|
98
|
+
durable TopoGraph artifact-family guard, teaching the live lexicon directly in
|
|
99
|
+
agent guidance, and replacing completed reset-family placeholders in public
|
|
100
|
+
Regrade examples and CLI schema help.
|
|
101
|
+
- [`6250729`](https://github.com/outfitter-dev/trails/commit/6250729665c6bc2022c92938be93d156bebdf6b1): Expands the public AST guard/accessor surface and migrates Warden/Regrade AST
|
|
102
|
+
consumers onto the typed helpers instead of rule-local node-field casts.
|
|
103
|
+
- [`3842160`](https://github.com/outfitter-dev/trails/commit/3842160ac4030807cb2dfca8e1da75e03febccf2): Teach vocabulary regrades to discover simple prose morphology as deferred
|
|
104
|
+
review inventory so authored plans surface forms like `blazed` and `blazing`.
|
|
105
|
+
- [`982a4d7`](https://github.com/outfitter-dev/trails/commit/982a4d7a85de9395967acd31004468c1a9baf3bf): Add Regrade path-scope exclusion globs for vocabulary runs and expose them
|
|
106
|
+
through the `trails regrade` CLI/MCP contract.
|
|
107
|
+
- [`1540233`](https://github.com/outfitter-dev/trails/commit/154023327e100e9ac40cab893791829ff29145ed): Add Regrade scan inventory summaries that group matched files by extension and
|
|
108
|
+
top-level path, with occurrence counts for vocabulary regrade reports.
|
|
109
|
+
- [`a079073`](https://github.com/outfitter-dev/trails/commit/a07907356d276e8fa717b355362b9ec4a73809da): Rename Regrade path-scope scan controls from `ignore` to `exclude` across CLI, MCP, and project config.
|
|
110
|
+
- [`fe72b84`](https://github.com/outfitter-dev/trails/commit/fe72b84f88f4b18025f3d1b9463ca99238662d99): Fold remaining Regrade and Warden scan-target surfaces onto the shared path-scope vocabulary.
|
|
111
|
+
- [`7d65189`](https://github.com/outfitter-dev/trails/commit/7d65189cc33408755fe07a0b5679f1ed01123455): Expose derived live-API preserve inventory in vocabulary Regrade runs and have the Trails operator regrade surface derive current facet API preserves from live topo and MCP surface facts.
|
|
112
|
+
- [`6e63e48`](https://github.com/outfitter-dev/trails/commit/6e63e483617b84cb6868d0c4d58d5b5a8d3b9ed2): Complete the v1 grouped surface-entry vocabulary cutover from facet to trailhead, including Regrade dogfood support for governed string literal renames and composed AST rewrite application.
|
|
113
|
+
- [`fc002d5`](https://github.com/outfitter-dev/trails/commit/fc002d5669f4303427e99f45f9998fd0b0172bdb): Add governed AST identifier rename helpers and Warden residue detection for
|
|
114
|
+
active vocabulary symbol transitions.
|
|
115
|
+
- [`6ca0d8f`](https://github.com/outfitter-dev/trails/commit/6ca0d8f776801eee71ddd86cb88c198eaf5815fd): Add a typed governed-vocabulary transition registry that Warden owns and Regrade
|
|
116
|
+
can consume for migration planning.
|
|
117
|
+
- [`04bb8a4`](https://github.com/outfitter-dev/trails/commit/04bb8a42af4ada51a74b1d8c83697db92035b5e9): Expose vocabulary Regrade occurrence dispositions and disposition summary counts alongside mechanical verdicts.
|
|
118
|
+
|
|
119
|
+
Accept explicit preserve-rule dispositions through the `trails regrade` CLI/MCP contract.
|
|
120
|
+
|
|
121
|
+
- [`d67558b`](https://github.com/outfitter-dev/trails/commit/d67558bea3bfa363ed57e0f4091b6eccbf2a7710): Run governed AST symbol renames from the registry-backed `trails regrade` command path, including MCP parity, while preserving derived live API forms.
|
|
122
|
+
- [`6712075`](https://github.com/outfitter-dev/trails/commit/67120754df3f614c7f4dd98be1fa0ba9d69b7765): Complete the v1 hard cutover from the `contour` domain-object declaration
|
|
123
|
+
vocabulary to `entity` across contracts, topo facts, store helpers, Warden,
|
|
124
|
+
Wayfinder, operator surfaces, examples, and generated locks. Existing
|
|
125
|
+
applications must rename contour APIs, run `trails dev reset --yes` to discard
|
|
126
|
+
pre-cutover local Topographer snapshots, and then recompile committed
|
|
127
|
+
`trails.lock` artifacts before upgrading. Those derived snapshots are
|
|
128
|
+
intentionally not read through a compatibility layer.
|
|
129
|
+
The entity-shaped wire contract advances `TopoGraph` and split lock manifests
|
|
130
|
+
from schema version 3 to 4; old split artifacts fail with regeneration guidance,
|
|
131
|
+
while the canonical root `trails.lock` remains schema version 5.
|
|
132
|
+
Wayfinder reports those stale rows as topo-store drift while keeping current
|
|
133
|
+
committed lock facts available for inspection.
|
|
134
|
+
- [`26786a1`](https://github.com/outfitter-dev/trails/commit/26786a14acbe9ed03f69adbdac22968891e33df1): Persist vocabulary Regrade plan artifacts, expose plan/check/preview/apply flows across CLI and MCP, and write applied plan history for reviewed vocabulary migrations.
|
|
135
|
+
- [`09f15de`](https://github.com/outfitter-dev/trails/commit/09f15def8fcc8c28b0d604f436e6eeed46da8f37): Stage wide-net Regrade expansion candidates as structured plan review inventory with evidence, status, and pending counts.
|
|
136
|
+
- [`b1fbe57`](https://github.com/outfitter-dev/trails/commit/b1fbe574e6f44d1fecb5e3a000270955c0a77b7b): Publish Bun-validated package tarballs through an npm trusted-publishing adapter
|
|
137
|
+
binding, add exact repository metadata for each public workspace package, and
|
|
138
|
+
correct the native Bun release descriptor to its pack-only runtime boundary.
|
|
139
|
+
- [`35cbe28`](https://github.com/outfitter-dev/trails/commit/35cbe289db46539b3689dbf6cf8ab0e5d9a1b09c): Found `@ontrails/source` as the shared source-code AST kernel for parsing,
|
|
140
|
+
walking, locations, edits, literals, and generic Trails syntax recognition.
|
|
141
|
+
Warden, Regrade, Wayfinder, and the Trails operator now import those shared
|
|
142
|
+
mechanics from `@ontrails/source`; the legacy Warden AST route is removed by the
|
|
143
|
+
stacked hard cutover.
|
|
144
|
+
- [`35e5fed`](https://github.com/outfitter-dev/trails/commit/35e5fedd228e498783f479f0dd502e2f3ec772b8): Fold the Wayfinder graph-read catalog into `@ontrails/topography`. Wayfind
|
|
145
|
+
remains the product, trail-id, CLI, and MCP brand, but there is no longer an
|
|
146
|
+
`@ontrails/wayfinder` package to install or import. Programmatic consumers
|
|
147
|
+
should move imports such as `wayfinderTopo`, `wayfindOverviewTrail`,
|
|
148
|
+
`loadWayfinderArtifacts`, and the Wayfinder filter/provenance types to
|
|
149
|
+
`@ontrails/topography`.
|
|
150
|
+
|
|
151
|
+
Expose that package move as a governed Regrade transition so exact
|
|
152
|
+
`@ontrails/wayfinder` imports can move safely while product vocabulary and near
|
|
153
|
+
routes remain unchanged for review. Regrade routes package manifests through
|
|
154
|
+
structured review instead of rewriting dependency keys as plain text.
|
|
155
|
+
|
|
156
|
+
The Trails operator now reads all `wayfind.*` query trails and artifact helpers
|
|
157
|
+
from `@ontrails/topography` while preserving the existing CLI/MCP schemas,
|
|
158
|
+
route IDs, output shapes, and internal trail visibility.
|
|
159
|
+
|
|
160
|
+
- [`3a65ae3`](https://github.com/outfitter-dev/trails/commit/3a65ae363e05b7589f4a9876da4346886353b48c): Rename the durable graph substrate package from `@ontrails/topographer` to
|
|
161
|
+
`@ontrails/topography` after folding Wayfind graph queries into that owner.
|
|
162
|
+
|
|
163
|
+
Update imports to `@ontrails/topography` or
|
|
164
|
+
`@ontrails/topography/backend-support`. The pre-1.0 cutover does not ship a
|
|
165
|
+
compatibility package. TopoGraph, lock, topo-store, semantic diff, and Wayfind
|
|
166
|
+
APIs keep their existing contracts, and the `trails wayfind` CLI and MCP names
|
|
167
|
+
remain unchanged.
|
|
168
|
+
|
|
169
|
+
The governed package-route transition moves legacy `@ontrails/wayfinder`
|
|
170
|
+
imports directly to `@ontrails/topography`; it does not emit the retired
|
|
171
|
+
intermediate `@ontrails/topographer` route.
|
|
172
|
+
|
|
173
|
+
- [`a45cead`](https://github.com/outfitter-dev/trails/commit/a45cead6e3ddf6ce606bf5e663b74c0d3b5664b8): Make the planned contour-to-entity Regrade transition code-fact complete for
|
|
174
|
+
apply readiness while leaving the repository cutover status planned.
|
|
175
|
+
Identifiers that already contain the target segment now stay in the review
|
|
176
|
+
inventory instead of producing duplicated target names.
|
|
177
|
+
- [`8a1ac00`](https://github.com/outfitter-dev/trails/commit/8a1ac00b5d789be41ca6e464358c96b01e442bf4): Govern the exact `@ontrails/warden/ast` to `@ontrails/source` package route
|
|
178
|
+
transition for Regrade string-literal and module-specifier rewrites exposed
|
|
179
|
+
through the Trails CLI and MCP tools. Safe rewrites now require the owning
|
|
180
|
+
manifest to already declare the target package; otherwise Regrade preserves the
|
|
181
|
+
occurrence with dependency repair guidance. Invalid manifests remain unchanged
|
|
182
|
+
and produce structured repair guidance that names the owning manifest. Explicit
|
|
183
|
+
preserve rules remain no-ops before dependency validation, and dotted or
|
|
184
|
+
subpath-like near routes remain deferred instead of becoming invented imports.
|
|
185
|
+
- [`f757cd7`](https://github.com/outfitter-dev/trails/commit/f757cd79635eb19ac67c496a6f2b34397d9a91c8): Publish Regrade's downstream report and AST rewrite APIs, and expose a dry-run
|
|
186
|
+
by default `trails regrade` operator command with explicit apply mode.
|
|
187
|
+
|
|
188
|
+
## 1.0.0-beta.50
|
|
189
|
+
|
|
190
|
+
## 1.0.0-beta.49
|
|
191
|
+
|
|
192
|
+
## 1.0.0-beta.48
|
|
193
|
+
|
|
194
|
+
## 1.0.0-beta.47
|
|
195
|
+
|
|
196
|
+
### Patch Changes
|
|
197
|
+
|
|
198
|
+
- [`90d394c`](https://github.com/outfitter-dev/trails/commit/90d394c005fdf6b898ba7052d0b56755af0f4954): Derive nested worktree, repository, and submodule collection boundaries in the
|
|
199
|
+
shared Source walker. Regrade and Warden now observe one directly targeted
|
|
200
|
+
working tree per run, and Regrade audit summaries expose boundary skip counts.
|
|
201
|
+
|
|
202
|
+
## 1.0.0-beta.46
|
|
203
|
+
|
|
204
|
+
### Minor Changes
|
|
205
|
+
|
|
206
|
+
- [`701ab85`](https://github.com/outfitter-dev/trails/commit/701ab85bd237e5fcf03725c56b70adb3612d6c15): Expose in-memory prepared class and vocabulary evaluations with deterministic identity and source freshness checks.
|
|
207
|
+
- [`c83d0b6`](https://github.com/outfitter-dev/trails/commit/c83d0b67ac928af1b44c1f2d2c4b36aa09a24a70): Inventory parser-native source comments and TSDoc as exact review-only entries
|
|
208
|
+
for governed classified vocabulary transitions across CLI, MCP, and audit.
|
|
209
|
+
- [`97ccb5c`](https://github.com/outfitter-dev/trails/commit/97ccb5c168f7dc0f157f2518c78b226d67cfa008): Add the strict v3 Regrade run-receipt contract, canonical serializer, compact classified-form judgments, and cache-independent hash-reference resolution.
|
|
210
|
+
- [`9a8b6e4`](https://github.com/outfitter-dev/trails/commit/9a8b6e4af394c76c11e6d0007e0f5f94d0be2cb3): Persist Regrade lifecycle runs as canonical v3 receipts with exact Git blob evidence and authored field provenance, and validate their compact classified-form projection independently in Warden.
|
|
211
|
+
|
|
212
|
+
### Patch Changes
|
|
213
|
+
|
|
214
|
+
- [`768cc79`](https://github.com/outfitter-dev/trails/commit/768cc79ca10947b8808b376e281e1a81131b4acc): Close missed projection vocabulary residue in Regrade internals and public
|
|
215
|
+
error-rendering guidance, and keep lifecycle-ambiguous governed identifiers in
|
|
216
|
+
the Warden review inventory instead of assigning them an unsafe automatic
|
|
217
|
+
target.
|
|
218
|
+
|
|
219
|
+
## 1.0.0-beta.45
|
|
220
|
+
|
|
221
|
+
## 1.0.0-beta.44
|
|
222
|
+
|
|
223
|
+
### Patch Changes
|
|
224
|
+
|
|
225
|
+
- [`b1fbe57`](https://github.com/outfitter-dev/trails/commit/b1fbe574e6f44d1fecb5e3a000270955c0a77b7b): Publish Bun-validated package tarballs through an npm trusted-publishing adapter
|
|
226
|
+
binding, add exact repository metadata for each public workspace package, and
|
|
227
|
+
correct the native Bun release descriptor to its pack-only runtime boundary.
|
|
228
|
+
|
|
229
|
+
## 1.0.0-beta.43
|
|
230
|
+
|
|
231
|
+
### Minor Changes
|
|
232
|
+
|
|
233
|
+
- [`4fb20a6`](https://github.com/outfitter-dev/trails/commit/4fb20a68e1ed98972d99fed8b2df96bfa6804bd3): Derive deterministic, provenance-bearing vocabulary plan proposals from a minimal `from`/`to` seed, including morphology, public and compound identifier review, filename and reference-closure candidates, namespace census, and validated live-topo API preserves. Classified governed transitions retain their registry identity while routing every governed form to review instead of inventing a single safe successor.
|
|
234
|
+
- [`d3215b0`](https://github.com/outfitter-dev/trails/commit/d3215b0966f13af2a72ece9adbcc2c68c70f81b6): Add governed file renames to vocabulary Regrade plans, with move-first derived reference closure and persisted policy-aware evidence across CLI and MCP.
|
|
235
|
+
- [`5a7d22a`](https://github.com/outfitter-dev/trails/commit/5a7d22ab9d674f86b28758f23c3e94a17efb5be1): Add three-tier vocabulary migration scope. Protected historical paths remain
|
|
236
|
+
scanned and counted as `historical-by-policy` without being rewritten, while
|
|
237
|
+
reports expose scope-tier totals and census-expected teaching-surface coverage
|
|
238
|
+
through equivalent CLI and MCP plan schemas. Applied vocabulary occurrences
|
|
239
|
+
remain auditable in history with an `applied` verdict, while policy-only
|
|
240
|
+
evidence does not make an active plan stale merely by being recorded.
|
|
241
|
+
- [`88a6a62`](https://github.com/outfitter-dev/trails/commit/88a6a62a9e9e230ca6d368fa78dc3ece6c816204): Complete the v1 classification-first cutover from projection/project vocabulary
|
|
242
|
+
to derive/derived for contract-owned fact production and render/rendered for
|
|
243
|
+
surface presentation. Public type, helper, rule, relation, and report names move
|
|
244
|
+
without compatibility aliases; ordinary repository/project nouns remain
|
|
245
|
+
explicit preserves or structured review inventory.
|
|
246
|
+
- [`9f0842e`](https://github.com/outfitter-dev/trails/commit/9f0842ee9d7c7155d86a4fd023760ac0a5636f5d): Retire the temporary root vocabulary-cutover toolchain now that Regrade owns
|
|
247
|
+
structured migration plans, safe rewrites, classification, census, CLI/MCP
|
|
248
|
+
reports, and immutable history. Remove the obsolete source exemptions so
|
|
249
|
+
Oxlint and Warden enforce the durable transition contract directly, and add a
|
|
250
|
+
history-driven Regrade audit surface for current-tree regression checks.
|
|
251
|
+
- [`bd1bd96`](https://github.com/outfitter-dev/trails/commit/bd1bd96b90cd8b55f73061e4078a14cd75bed745): Require committed Regrade provenance for governed vocabulary transitions.
|
|
252
|
+
|
|
253
|
+
Applied governed plans now expose deterministic transition, plan, source,
|
|
254
|
+
safe-apply, and review-follow-up evidence through history results. Warden loads
|
|
255
|
+
committed history into project context, cites it for reintroduced symbols, and
|
|
256
|
+
rejects invalid or missing provenance for transitions that require Regrade in
|
|
257
|
+
the workspace that owns the governed registry, without making downstream apps
|
|
258
|
+
prove the framework's own migrations.
|
|
259
|
+
Portable validation accepts the authoritative numeric file-rename counters
|
|
260
|
+
persisted by Regrade history.
|
|
261
|
+
|
|
262
|
+
### Patch Changes
|
|
263
|
+
|
|
264
|
+
- [`53014a4`](https://github.com/outfitter-dev/trails/commit/53014a4593170edd5adfbaa2c94c895c67a320d1): Exclude immutable Regrade history artifacts from downstream migration source scans while preserving active plan and other policy-classified evidence. Warden continues to validate committed history through its dedicated provenance loader.
|
|
265
|
+
- [`18a14e2`](https://github.com/outfitter-dev/trails/commit/18a14e220728be7108f3fe2864455c52305aef9f): Finish the v1 vocabulary reset cleanup by retaining the facet guard, adding a
|
|
266
|
+
durable TopoGraph artifact-family guard, teaching the live lexicon directly in
|
|
267
|
+
agent guidance, and replacing completed reset-family placeholders in public
|
|
268
|
+
Regrade examples and CLI schema help.
|
|
269
|
+
|
|
270
|
+
## 1.0.0-beta.42
|
|
271
|
+
|
|
272
|
+
## 1.0.0-beta.41
|
|
273
|
+
|
|
274
|
+
## 1.0.0-beta.40
|
|
275
|
+
|
|
276
|
+
### Minor Changes
|
|
277
|
+
|
|
278
|
+
- [`5adb995`](https://github.com/outfitter-dev/trails/commit/5adb99551c2dda6190d46cce7f60bb08d63c99aa): Complete the v1 hard cutover from the authored `blaze` field to
|
|
279
|
+
`implementation` across trail contracts, surface projections, tests, examples,
|
|
280
|
+
and public source-analysis helpers. Existing applications must rename authored
|
|
281
|
+
trail behavior fields and direct trail-object access before upgrading.
|
|
282
|
+
- [`aedb87b`](https://github.com/outfitter-dev/trails/commit/aedb87b3b536c5849636c7a5951c51e1e7f0d1cc): Add governed identifier-segment renames for AST-backed migrations. Regrade can
|
|
283
|
+
now migrate camelCase, PascalCase, leading-underscore, and SCREAMING_SNAKE
|
|
284
|
+
identifier segments, including single-segment forms such as `BLAZE` and
|
|
285
|
+
`_BLAZE`, while preserving exact-mode behavior and rejecting lowercase
|
|
286
|
+
substring, concatenated acronym, or inflection matches.
|
|
287
|
+
|
|
288
|
+
### Patch Changes
|
|
289
|
+
|
|
290
|
+
- [`01b9204`](https://github.com/outfitter-dev/trails/commit/01b92046db52c71f22a871e58a308d7a94483cab): Harden governed v1 vocabulary transitions with property-key-only blaze literal
|
|
291
|
+
rewrites, structured review for ambiguous literal positions, explicit
|
|
292
|
+
scratch/history boundaries, and scan-only preservation for migration plans and
|
|
293
|
+
historical decision evidence.
|
|
294
|
+
- [`6712075`](https://github.com/outfitter-dev/trails/commit/67120754df3f614c7f4dd98be1fa0ba9d69b7765): Complete the v1 hard cutover from the `contour` domain-object declaration
|
|
295
|
+
vocabulary to `entity` across contracts, topo facts, store helpers, Warden,
|
|
296
|
+
Wayfinder, operator surfaces, examples, and generated locks. Existing
|
|
297
|
+
applications must rename contour APIs, run `trails dev reset --yes` to discard
|
|
298
|
+
pre-cutover local Topographer snapshots, and then recompile committed
|
|
299
|
+
`trails.lock` artifacts before upgrading. Those derived snapshots are
|
|
300
|
+
intentionally not read through a compatibility layer.
|
|
301
|
+
The entity-shaped wire contract advances `TopoGraph` and split lock manifests
|
|
302
|
+
from schema version 3 to 4; old split artifacts fail with regeneration guidance,
|
|
303
|
+
while the canonical root `trails.lock` remains schema version 5.
|
|
304
|
+
Wayfinder reports those stale rows as topo-store drift while keeping current
|
|
305
|
+
committed lock facts available for inspection.
|
|
306
|
+
- [`35cbe28`](https://github.com/outfitter-dev/trails/commit/35cbe289db46539b3689dbf6cf8ab0e5d9a1b09c): Found `@ontrails/source` as the shared source-code AST kernel for parsing,
|
|
307
|
+
walking, locations, edits, literals, and generic Trails syntax recognition.
|
|
308
|
+
Warden, Regrade, Wayfinder, and the Trails operator now import those shared
|
|
309
|
+
mechanics from `@ontrails/source`; the legacy Warden AST route is removed by the
|
|
310
|
+
stacked hard cutover.
|
|
311
|
+
- [`35e5fed`](https://github.com/outfitter-dev/trails/commit/35e5fedd228e498783f479f0dd502e2f3ec772b8): Fold the Wayfinder graph-read catalog into `@ontrails/topography`. Wayfind
|
|
312
|
+
remains the product, trail-id, CLI, and MCP brand, but there is no longer an
|
|
313
|
+
`@ontrails/wayfinder` package to install or import. Programmatic consumers
|
|
314
|
+
should move imports such as `wayfinderTopo`, `wayfindOverviewTrail`,
|
|
315
|
+
`loadWayfinderArtifacts`, and the Wayfinder filter/provenance types to
|
|
316
|
+
`@ontrails/topography`.
|
|
317
|
+
|
|
318
|
+
Expose that package move as a governed Regrade transition so exact
|
|
319
|
+
`@ontrails/wayfinder` imports can move safely while product vocabulary and near
|
|
320
|
+
routes remain unchanged for review. Regrade routes package manifests through
|
|
321
|
+
structured review instead of rewriting dependency keys as plain text.
|
|
322
|
+
|
|
323
|
+
The Trails operator now reads all `wayfind.*` query trails and artifact helpers
|
|
324
|
+
from `@ontrails/topography` while preserving the existing CLI/MCP schemas,
|
|
325
|
+
route IDs, output shapes, and internal trail visibility.
|
|
326
|
+
|
|
327
|
+
- [`3a65ae3`](https://github.com/outfitter-dev/trails/commit/3a65ae363e05b7589f4a9876da4346886353b48c): Rename the durable graph substrate package from `@ontrails/topographer` to
|
|
328
|
+
`@ontrails/topography` after folding Wayfind graph queries into that owner.
|
|
329
|
+
|
|
330
|
+
Update imports to `@ontrails/topography` or
|
|
331
|
+
`@ontrails/topography/backend-support`. The pre-1.0 cutover does not ship a
|
|
332
|
+
compatibility package. TopoGraph, lock, topo-store, semantic diff, and Wayfind
|
|
333
|
+
APIs keep their existing contracts, and the `trails wayfind` CLI and MCP names
|
|
334
|
+
remain unchanged.
|
|
335
|
+
|
|
336
|
+
The governed package-route transition moves legacy `@ontrails/wayfinder`
|
|
337
|
+
imports directly to `@ontrails/topography`; it does not emit the retired
|
|
338
|
+
intermediate `@ontrails/topographer` route.
|
|
339
|
+
|
|
340
|
+
- [`a45cead`](https://github.com/outfitter-dev/trails/commit/a45cead6e3ddf6ce606bf5e663b74c0d3b5664b8): Make the planned contour-to-entity Regrade transition code-fact complete for
|
|
341
|
+
apply readiness while leaving the repository cutover status planned.
|
|
342
|
+
Identifiers that already contain the target segment now stay in the review
|
|
343
|
+
inventory instead of producing duplicated target names.
|
|
344
|
+
- [`8a1ac00`](https://github.com/outfitter-dev/trails/commit/8a1ac00b5d789be41ca6e464358c96b01e442bf4): Govern the exact `@ontrails/warden/ast` to `@ontrails/source` package route
|
|
345
|
+
transition for Regrade string-literal and module-specifier rewrites exposed
|
|
346
|
+
through the Trails CLI and MCP tools. Safe rewrites now require the owning
|
|
347
|
+
manifest to already declare the target package; otherwise Regrade preserves the
|
|
348
|
+
occurrence with dependency repair guidance. Invalid manifests remain unchanged
|
|
349
|
+
and produce structured repair guidance that names the owning manifest. Explicit
|
|
350
|
+
preserve rules remain no-ops before dependency validation, and dotted or
|
|
351
|
+
subpath-like near routes remain deferred instead of becoming invented imports.
|
|
352
|
+
|
|
353
|
+
## 1.0.0-beta.39
|
|
354
|
+
|
|
355
|
+
### Minor Changes
|
|
356
|
+
|
|
357
|
+
- [`65b362f`](https://github.com/outfitter-dev/trails/commit/65b362f65fa2a75e2121d1a8b31882d52fa0376b): Regrade history consolidates per transition, append-only: `regrade apply` appends a run entry stamped `{ planContentHash, lockHashAtRun }` to `.trails/regrade/history/<transition>.json` instead of overwriting lockhash-named files, identical re-runs are recognized as replays, the artifact carries a stable internal transition `id`, and `regrade check <transition>` verifies each recorded run at its own stamped lock. The report `history.status` union widens to `applied | checked | replay`.
|
|
358
|
+
- [`d3f7a25`](https://github.com/outfitter-dev/trails/commit/d3f7a25e66b6f0149ab2f33ac31ae1458860dce3): Regrade review entries carry structured review detail through Warden-backed and AST-backed classes: matched form, candidate replacement, machine-readable signals, preserve cautions, and a `judgment` field that distinguishes unresolved occurrence judgment from completed preserve/rewrite verdicts. Safe rewrite entries keep their existing report shape.
|
|
359
|
+
|
|
360
|
+
### Patch Changes
|
|
361
|
+
|
|
362
|
+
- [`b077fb7`](https://github.com/outfitter-dev/trails/commit/b077fb7ba6d9724cac6f0e59bc3fec9aec28984c): Add the export-restructure Regrade class family (TRL-1210). `export-restructure:cli-aliases` inverts legacy `cliAliases`/`trailsCliAliases` exports into `surfaceOverlay({ cli })` bindings inside the module's `trailsOverlays` export — adding the `@ontrails/core` import, deleting the legacy export, and routing anything it cannot prove safe (computed keys, spreads, in-module `aliases:` references) to `needs-review` with the exact target shape named. `export-restructure:mcp-trailheads` projects call-site MCP trailhead maps into `surfaceOverlay({ mcp })` group bindings: it rewrites in place when the same module exports `trailsOverlays`, and otherwise emits a classified `needs-review` handoff naming the module-overlay target while the call-site map stays as the richer-metadata override-in-context. Warden's fix-class union grows to `'export-restructure' | 'term-rewrite'`, `no-legacy-cli-alias-export` now advertises the `export-restructure` class, and `loadWardenRegradeClasses` supersedes `loadWardenTermRewriteClasses` (still exported) as the full Warden-routed class loader. Class-mode Regrade also gains the full plan lifecycle: `trails regrade plan --type class --class-ids ...` writes a `.trails/regrade/<slug>.json` plan carrying class ids, scope, and intent, `regrade check` re-runs the dry run and gates on outstanding rewrites or review, and `regrade apply` applies and graduates the plan to `.trails/regrade/history/<slug>-<hash>.json` — the same plan → check → apply → history evidence trail vocabulary regrades already had, now available to structural transforms. The class family ships for downstream apps bridging the pre-1.0 gap, so pre-cutover alias exports and trailhead maps migrate mechanically instead of by hand.
|
|
363
|
+
|
|
364
|
+
## 1.0.0-beta.38
|
|
365
|
+
|
|
366
|
+
## 1.0.0-beta.37
|
|
367
|
+
|
|
368
|
+
### Patch Changes
|
|
369
|
+
|
|
370
|
+
- [`09f15de`](https://github.com/outfitter-dev/trails/commit/09f15def8fcc8c28b0d604f436e6eeed46da8f37): Stage wide-net Regrade expansion candidates as structured plan review inventory with evidence, status, and pending counts.
|
|
371
|
+
|
|
372
|
+
## 1.0.0-beta.36
|
|
373
|
+
|
|
374
|
+
### Patch Changes
|
|
375
|
+
|
|
376
|
+
- [`6e63e48`](https://github.com/outfitter-dev/trails/commit/6e63e483617b84cb6868d0c4d58d5b5a8d3b9ed2): Complete the v1 grouped surface-entry vocabulary cutover from facet to trailhead, including Regrade dogfood support for governed string literal renames and composed AST rewrite application.
|
|
377
|
+
- [`26786a1`](https://github.com/outfitter-dev/trails/commit/26786a14acbe9ed03f69adbdac22968891e33df1): Persist vocabulary Regrade plan artifacts, expose plan/check/preview/apply flows across CLI and MCP, and write applied plan history for reviewed vocabulary migrations.
|
|
378
|
+
|
|
379
|
+
## 1.0.0-beta.35
|
|
380
|
+
|
|
381
|
+
### Patch Changes
|
|
382
|
+
|
|
383
|
+
- [`3842160`](https://github.com/outfitter-dev/trails/commit/3842160ac4030807cb2dfca8e1da75e03febccf2): Teach vocabulary regrades to discover simple prose morphology as deferred
|
|
384
|
+
review inventory so authored plans surface forms like `blazed` and `blazing`.
|
|
385
|
+
|
|
386
|
+
## 1.0.0-beta.34
|
|
387
|
+
|
|
388
|
+
### Patch Changes
|
|
389
|
+
|
|
390
|
+
- [`d67558b`](https://github.com/outfitter-dev/trails/commit/d67558bea3bfa363ed57e0f4091b6eccbf2a7710): Run governed AST symbol renames from the registry-backed `trails regrade` command path, including MCP parity, while preserving derived live API forms.
|
|
391
|
+
|
|
392
|
+
## 1.0.0-beta.33
|
|
393
|
+
|
|
394
|
+
### Patch Changes
|
|
395
|
+
|
|
396
|
+
- [`0c40138`](https://github.com/outfitter-dev/trails/commit/0c40138efb962e779710daa172bdfd756d9d992f): Harden vocabulary regrades by deferring Markdown code contexts for review and
|
|
397
|
+
exposing structured preserve rules through the Trails `regrade` command.
|
|
398
|
+
- [`7d65189`](https://github.com/outfitter-dev/trails/commit/7d65189cc33408755fe07a0b5679f1ed01123455): Expose derived live-API preserve inventory in vocabulary Regrade runs and have the Trails operator regrade surface derive current facet API preserves from live topo and MCP surface facts.
|
|
399
|
+
- [`fc002d5`](https://github.com/outfitter-dev/trails/commit/fc002d5669f4303427e99f45f9998fd0b0172bdb): Add governed AST identifier rename helpers and Warden residue detection for
|
|
400
|
+
active vocabulary symbol transitions.
|
|
401
|
+
- [`6ca0d8f`](https://github.com/outfitter-dev/trails/commit/6ca0d8f776801eee71ddd86cb88c198eaf5815fd): Add a typed governed-vocabulary transition registry that Warden owns and Regrade
|
|
402
|
+
can consume for migration planning.
|
|
403
|
+
- [`04bb8a4`](https://github.com/outfitter-dev/trails/commit/04bb8a42af4ada51a74b1d8c83697db92035b5e9): Expose vocabulary Regrade occurrence dispositions and disposition summary counts alongside mechanical verdicts.
|
|
404
|
+
|
|
405
|
+
Accept explicit preserve-rule dispositions through the `trails regrade` CLI/MCP contract.
|
|
406
|
+
|
|
407
|
+
## 1.0.0-beta.32
|
|
408
|
+
|
|
409
|
+
### Patch Changes
|
|
410
|
+
|
|
411
|
+
- f3c4fef: Export a shared `escapeRegExp` helper from core and migrate first-party callers off local copies.
|
|
412
|
+
- fe72b84: Fold remaining Regrade and Warden scan-target surfaces onto the shared path-scope vocabulary.
|
|
413
|
+
- Updated dependencies [3e5c0fc]
|
|
414
|
+
- Updated dependencies [f3c4fef]
|
|
415
|
+
- Updated dependencies [cb0a9d8]
|
|
416
|
+
- Updated dependencies [21c6dda]
|
|
417
|
+
- Updated dependencies [fe72b84]
|
|
418
|
+
- @ontrails/core@1.0.0-beta.32
|
|
419
|
+
- @ontrails/warden@1.0.0-beta.32
|
|
420
|
+
|
|
421
|
+
## 1.0.0-beta.31
|
|
422
|
+
|
|
423
|
+
### Patch Changes
|
|
424
|
+
|
|
425
|
+
- e2f3d23: Default Regrade reports to actionable entries, add skip counts grouped by
|
|
426
|
+
reason, and expose an `includeEntries` option for full report inventories.
|
|
427
|
+
- 9be2b7e: Load project-local Warden term-rewrite rules from the Regrade root so repo-owned
|
|
428
|
+
migration classes can run through `trails regrade`.
|
|
429
|
+
- 47f782c: Add occurrence-level vocabulary regrade reports with plan, ledger,
|
|
430
|
+
and completion-gate facts. The Trails `regrade` operator command now supports
|
|
431
|
+
positional `<from> <to>` regrade runs and exposes the same capability through
|
|
432
|
+
the curated MCP surface.
|
|
433
|
+
- ee9f3ae: Let Warden fix capabilities declare downstream scan targets and have Regrade
|
|
434
|
+
honor those targets for Warden-backed term-rewrite classes.
|
|
435
|
+
|
|
436
|
+
Dogfood the first safe facet-to-trailhead prose rewrite through project-local
|
|
437
|
+
Warden rules and Regrade.
|
|
438
|
+
|
|
439
|
+
- 982a4d7: Add Regrade path-scope exclusion globs for vocabulary runs and expose them
|
|
440
|
+
through the `trails regrade` CLI/MCP contract.
|
|
441
|
+
- 1540233: Add Regrade scan inventory summaries that group matched files by extension and
|
|
442
|
+
top-level path, with occurrence counts for vocabulary regrade reports.
|
|
443
|
+
- a079073: Rename Regrade path-scope scan controls from `ignore` to `exclude` across CLI, MCP, and project config.
|
|
444
|
+
- Updated dependencies [ee9f3ae]
|
|
445
|
+
- Updated dependencies [a0126d9]
|
|
446
|
+
- Updated dependencies [4cd5d4e]
|
|
447
|
+
- Updated dependencies [6a26a08]
|
|
448
|
+
- Updated dependencies [38907cc]
|
|
449
|
+
- @ontrails/warden@1.0.0-beta.31
|
|
450
|
+
- @ontrails/core@1.0.0-beta.31
|
|
451
|
+
|
|
452
|
+
## 1.0.0-beta.30
|
|
453
|
+
|
|
454
|
+
### Patch Changes
|
|
455
|
+
|
|
456
|
+
- @ontrails/core@1.0.0-beta.30
|
|
457
|
+
- @ontrails/warden@1.0.0-beta.30
|
|
458
|
+
|
|
459
|
+
## 1.0.0-beta.29
|
|
460
|
+
|
|
461
|
+
### Patch Changes
|
|
462
|
+
|
|
463
|
+
- @ontrails/core@1.0.0-beta.29
|
|
464
|
+
- @ontrails/warden@1.0.0-beta.29
|
|
465
|
+
|
|
466
|
+
## 1.0.0-beta.28
|
|
467
|
+
|
|
468
|
+
### Patch Changes
|
|
469
|
+
|
|
470
|
+
- @ontrails/core@1.0.0-beta.28
|
|
471
|
+
- @ontrails/warden@1.0.0-beta.28
|
|
472
|
+
|
|
473
|
+
## 1.0.0-beta.27
|
|
474
|
+
|
|
475
|
+
### Patch Changes
|
|
476
|
+
|
|
477
|
+
- @ontrails/core@1.0.0-beta.27
|
|
478
|
+
- @ontrails/warden@1.0.0-beta.27
|
|
479
|
+
|
|
480
|
+
## 1.0.0-beta.26
|
|
481
|
+
|
|
482
|
+
### Patch Changes
|
|
483
|
+
|
|
484
|
+
- 4e75b85: Carry structured review details from Warden-backed term-rewrite diagnostics into Regrade review reports.
|
|
485
|
+
- Updated dependencies [1307568]
|
|
486
|
+
- Updated dependencies [ef09e46]
|
|
487
|
+
- Updated dependencies [38cd9d6]
|
|
488
|
+
- Updated dependencies [f8403c4]
|
|
489
|
+
- Updated dependencies [371d19e]
|
|
490
|
+
- Updated dependencies [ff48e41]
|
|
491
|
+
- @ontrails/core@1.0.0-beta.26
|
|
492
|
+
- @ontrails/warden@1.0.0-beta.26
|
|
493
|
+
|
|
494
|
+
## 1.0.0-beta.25
|
|
495
|
+
|
|
496
|
+
### Patch Changes
|
|
497
|
+
|
|
498
|
+
- b991263: Retire the package-owned `regrade.downstream.report` trail wrapper so the Trails operator app owns the public Regrade surface while `@ontrails/regrade` exposes the reusable engine APIs and report schema.
|
|
499
|
+
- c36aca9: Preserve existing Result error boundaries directly and widen Warden pass-through
|
|
500
|
+
coaching beyond trail blazes.
|
|
501
|
+
- 6250729: Expands the public AST guard/accessor surface and migrates Warden/Regrade AST
|
|
502
|
+
consumers onto the typed helpers instead of rule-local node-field casts.
|
|
503
|
+
- f757cd7: Publish Regrade's downstream report and AST rewrite APIs, and expose a dry-run
|
|
504
|
+
by default `trails regrade` operator command with explicit apply mode.
|
|
505
|
+
- Updated dependencies [a9fdbc7]
|
|
506
|
+
- Updated dependencies [f8fd6ca]
|
|
507
|
+
- Updated dependencies [0fcc42b]
|
|
508
|
+
- Updated dependencies [c36aca9]
|
|
509
|
+
- Updated dependencies [f556559]
|
|
510
|
+
- Updated dependencies [6250729]
|
|
511
|
+
- Updated dependencies [d73c38e]
|
|
512
|
+
- Updated dependencies [3befcf1]
|
|
513
|
+
- Updated dependencies [a8e4dc3]
|
|
514
|
+
- Updated dependencies [a4f9cf6]
|
|
515
|
+
- Updated dependencies [9bcf34e]
|
|
516
|
+
- Updated dependencies [00c0cf8]
|
|
517
|
+
- Updated dependencies [b313c58]
|
|
518
|
+
- Updated dependencies [f245fa0]
|
|
519
|
+
- Updated dependencies [f1e6efa]
|
|
520
|
+
- Updated dependencies [caff950]
|
|
521
|
+
- Updated dependencies [df13faf]
|
|
522
|
+
- @ontrails/warden@1.0.0-beta.25
|
|
523
|
+
- @ontrails/core@1.0.0-beta.25
|
|
524
|
+
|
|
525
|
+
## 1.0.0-beta.24
|
|
526
|
+
|
|
527
|
+
### Patch Changes
|
|
528
|
+
|
|
529
|
+
- @ontrails/core@1.0.0-beta.24
|
|
530
|
+
- @ontrails/warden@1.0.0-beta.24
|
|
531
|
+
|
|
532
|
+
## 1.0.0-beta.23
|
|
533
|
+
|
|
534
|
+
### Patch Changes
|
|
535
|
+
|
|
536
|
+
- @ontrails/core@1.0.0-beta.23
|
|
537
|
+
- @ontrails/warden@1.0.0-beta.23
|
|
538
|
+
|
|
539
|
+
## 1.0.0-beta.22
|
|
540
|
+
|
|
541
|
+
### Patch Changes
|
|
542
|
+
|
|
543
|
+
- @ontrails/core@1.0.0-beta.22
|
|
544
|
+
- @ontrails/warden@1.0.0-beta.22
|
|
545
|
+
|
|
546
|
+
## 1.0.0-beta.21
|
|
547
|
+
|
|
548
|
+
### Patch Changes
|
|
549
|
+
|
|
550
|
+
- Updated dependencies [99523f2]
|
|
551
|
+
- Updated dependencies [5be032c]
|
|
552
|
+
- @ontrails/core@1.0.0-beta.21
|
|
553
|
+
- @ontrails/warden@1.0.0-beta.21
|
|
554
|
+
|
|
555
|
+
## 1.0.0-beta.20
|
|
556
|
+
|
|
557
|
+
### Patch Changes
|
|
558
|
+
|
|
559
|
+
- Updated dependencies [851a2a3]
|
|
560
|
+
- Updated dependencies [8bc0708]
|
|
561
|
+
- Updated dependencies [6901776]
|
|
562
|
+
- @ontrails/core@1.0.0-beta.20
|
|
563
|
+
- @ontrails/warden@1.0.0-beta.20
|
|
564
|
+
|
|
565
|
+
## 1.0.0-beta.19
|
|
566
|
+
|
|
567
|
+
### Patch Changes
|
|
568
|
+
|
|
569
|
+
- Updated dependencies [e41c382]
|
|
570
|
+
- Updated dependencies [1eb5bdc]
|
|
571
|
+
- Updated dependencies [f8d80b9]
|
|
572
|
+
- Updated dependencies [846a597]
|
|
573
|
+
- Updated dependencies [f0f7e2f]
|
|
574
|
+
- Updated dependencies [223aaad]
|
|
575
|
+
- Updated dependencies [3125f4d]
|
|
576
|
+
- Updated dependencies [2494dc6]
|
|
577
|
+
- Updated dependencies [120caf5]
|
|
578
|
+
- Updated dependencies [2d53717]
|
|
579
|
+
- Updated dependencies [16cb740]
|
|
580
|
+
- Updated dependencies [8894ecb]
|
|
581
|
+
- Updated dependencies [fdf7ec9]
|
|
582
|
+
- Updated dependencies [d76be13]
|
|
583
|
+
- Updated dependencies [84f56a5]
|
|
584
|
+
- Updated dependencies [64fb15a]
|
|
585
|
+
- Updated dependencies [431b04c]
|
|
586
|
+
- Updated dependencies [5d88104]
|
|
587
|
+
- Updated dependencies [f04a9ef]
|
|
588
|
+
- Updated dependencies [1c975c3]
|
|
589
|
+
- Updated dependencies [48d5ff4]
|
|
590
|
+
- Updated dependencies [d5d518e]
|
|
591
|
+
- Updated dependencies [216bf10]
|
|
592
|
+
- Updated dependencies [678cb1c]
|
|
593
|
+
- Updated dependencies [5874fd6]
|
|
594
|
+
- Updated dependencies [619cb15]
|
|
595
|
+
- Updated dependencies [4642268]
|
|
596
|
+
- Updated dependencies [9bab0cf]
|
|
597
|
+
- Updated dependencies [3ceeba8]
|
|
598
|
+
- Updated dependencies [beafd03]
|
|
599
|
+
- Updated dependencies [7b173e0]
|
|
600
|
+
- Updated dependencies [6e50e7b]
|
|
601
|
+
- Updated dependencies [48edf8d]
|
|
602
|
+
- Updated dependencies [12ffa3b]
|
|
603
|
+
- Updated dependencies [2f262f7]
|
|
604
|
+
- Updated dependencies [58b01f2]
|
|
605
|
+
- @ontrails/core@1.0.0-beta.19
|
|
606
|
+
- @ontrails/warden@1.0.0-beta.19
|