@ontrails/trails 1.0.0-beta.46 → 1.0.0-beta.47

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,5 +1,13 @@
1
1
  # trails
2
2
 
3
+ ## 1.0.0-beta.47
4
+
5
+ ### Minor Changes
6
+
7
+ - [`90d394c`](https://github.com/outfitter-dev/trails/commit/90d394c005fdf6b898ba7052d0b56755af0f4954): Derive nested worktree, repository, and submodule collection boundaries in the
8
+ shared Source walker. Regrade and Warden now observe one directly targeted
9
+ working tree per run, and Regrade audit summaries expose boundary skip counts.
10
+
3
11
  ## 1.0.0-beta.46
4
12
 
5
13
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ontrails/trails",
3
- "version": "1.0.0-beta.46",
3
+ "version": "1.0.0-beta.47",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/outfitter-dev/trails.git",
@@ -32,25 +32,25 @@
32
32
  },
33
33
  "dependencies": {
34
34
  "@clack/prompts": "^1.1.0",
35
- "@ontrails/adapter-kit": "^1.0.0-beta.46",
36
- "@ontrails/cli": "^1.0.0-beta.46",
37
- "@ontrails/commander": "^1.0.0-beta.46",
38
- "@ontrails/config": "^1.0.0-beta.46",
39
- "@ontrails/core": "^1.0.0-beta.46",
40
- "@ontrails/http": "^1.0.0-beta.46",
41
- "@ontrails/mcp": "^1.0.0-beta.46",
42
- "@ontrails/observability": "^1.0.0-beta.46",
43
- "@ontrails/permits": "^1.0.0-beta.46",
44
- "@ontrails/regrade": "^1.0.0-beta.46",
45
- "@ontrails/source": "^1.0.0-beta.46",
46
- "@ontrails/topography": "^1.0.0-beta.46",
47
- "@ontrails/warden": "^1.0.0-beta.46",
35
+ "@ontrails/adapter-kit": "^1.0.0-beta.47",
36
+ "@ontrails/cli": "^1.0.0-beta.47",
37
+ "@ontrails/commander": "^1.0.0-beta.47",
38
+ "@ontrails/config": "^1.0.0-beta.47",
39
+ "@ontrails/core": "^1.0.0-beta.47",
40
+ "@ontrails/http": "^1.0.0-beta.47",
41
+ "@ontrails/mcp": "^1.0.0-beta.47",
42
+ "@ontrails/observability": "^1.0.0-beta.47",
43
+ "@ontrails/permits": "^1.0.0-beta.47",
44
+ "@ontrails/regrade": "^1.0.0-beta.47",
45
+ "@ontrails/source": "^1.0.0-beta.47",
46
+ "@ontrails/topography": "^1.0.0-beta.47",
47
+ "@ontrails/warden": "^1.0.0-beta.47",
48
48
  "commander": "^14.0.3",
49
49
  "typescript": "^5.9.3",
50
50
  "zod": "^4.3.5"
51
51
  },
52
52
  "devDependencies": {
53
- "@ontrails/cloudflare": "^1.0.0-beta.46",
54
- "@ontrails/testing": "^1.0.0-beta.46"
53
+ "@ontrails/cloudflare": "^1.0.0-beta.47",
54
+ "@ontrails/testing": "^1.0.0-beta.47"
55
55
  }
56
56
  }
@@ -77,6 +77,9 @@ const regradeAuditTransitionSchema = z.object({
77
77
  .nonnegative()
78
78
  .describe('Unresolved current-source occurrences'),
79
79
  scanned: z.number().int().nonnegative().describe('Files scanned'),
80
+ skippedByReason: z
81
+ .record(z.string(), z.number().int().nonnegative())
82
+ .describe('Collection skips grouped by machine-readable reason'),
80
83
  status: z.enum(['green', 'open']).describe('Transition audit status'),
81
84
  })
82
85
  .describe('Concise current-tree audit of the latest applied plan'),
@@ -489,6 +492,7 @@ const runRegradeAuditCandidate = async (
489
492
  occurrences: run.ledger.occurrences.length,
490
493
  open: run.report.open,
491
494
  scanned: reportResult.value.scanned,
495
+ skippedByReason: reportResult.value.skipsByReason,
492
496
  status: run.report.gate.status,
493
497
  },
494
498
  source: candidate.source,