@codemuster/win32-x64 0.1.0 → 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/bin/CodeMuster.Application.dll +0 -0
- package/bin/CodeMuster.Application.xml +140 -4
- package/bin/CodeMuster.Domain.dll +0 -0
- package/bin/CodeMuster.Domain.xml +255 -2
- package/bin/CodeMuster.Infrastructure.dll +0 -0
- package/bin/CodeMuster.Mapping.CSharp.dll +0 -0
- package/bin/CodeMuster.Mapping.TypeScript.dll +0 -0
- package/bin/codemuster.deps.json +30 -30
- package/bin/codemuster.dll +0 -0
- package/bin/codemuster.exe +0 -0
- package/package.json +1 -1
|
Binary file
|
|
@@ -43,13 +43,15 @@
|
|
|
43
43
|
<param name="SliceTokenBudget">Approximate tokens of code a slice pack may show in full before farther members shrink to signatures (D07).</param>
|
|
44
44
|
<param name="ResolutionThreshold">Share of call sites, 0 to 1, the mappers must resolve before status calls slice coverage complete (D09).</param>
|
|
45
45
|
<param name="Verify">Whether every recorded finding gets a verify unit, costing about one more agent call per finding (D27, D28).</param>
|
|
46
|
+
<param name="Vulnerabilities">Whether <c>scan</c> runs each ecosystem's audit tool over the repository's manifests (D38); costs no agent calls.</param>
|
|
46
47
|
</member>
|
|
47
|
-
<member name="M:CodeMuster.Application.Config.#ctor(System.Collections.Generic.IReadOnlyList{CodeMuster.Application.Lens},System.Int32,System.Double,System.Boolean)">
|
|
48
|
+
<member name="M:CodeMuster.Application.Config.#ctor(System.Collections.Generic.IReadOnlyList{CodeMuster.Application.Lens},System.Int32,System.Double,System.Boolean,System.Boolean)">
|
|
48
49
|
<summary>The committed per-repo configuration (D04).</summary>
|
|
49
50
|
<param name="Lenses">Named lenses; at least one is expected.</param>
|
|
50
51
|
<param name="SliceTokenBudget">Approximate tokens of code a slice pack may show in full before farther members shrink to signatures (D07).</param>
|
|
51
52
|
<param name="ResolutionThreshold">Share of call sites, 0 to 1, the mappers must resolve before status calls slice coverage complete (D09).</param>
|
|
52
53
|
<param name="Verify">Whether every recorded finding gets a verify unit, costing about one more agent call per finding (D27, D28).</param>
|
|
54
|
+
<param name="Vulnerabilities">Whether <c>scan</c> runs each ecosystem's audit tool over the repository's manifests (D38); costs no agent calls.</param>
|
|
53
55
|
</member>
|
|
54
56
|
<member name="P:CodeMuster.Application.Config.Lenses">
|
|
55
57
|
<summary>Named lenses; at least one is expected.</summary>
|
|
@@ -63,9 +65,18 @@
|
|
|
63
65
|
<member name="P:CodeMuster.Application.Config.Verify">
|
|
64
66
|
<summary>Whether every recorded finding gets a verify unit, costing about one more agent call per finding (D27, D28).</summary>
|
|
65
67
|
</member>
|
|
68
|
+
<member name="P:CodeMuster.Application.Config.Vulnerabilities">
|
|
69
|
+
<summary>Whether <c>scan</c> runs each ecosystem's audit tool over the repository's manifests (D38); costs no agent calls.</summary>
|
|
70
|
+
</member>
|
|
66
71
|
<member name="P:CodeMuster.Application.Config.Exclude">
|
|
67
72
|
<summary>Repo-relative globs of files never analyzed, on top of the built-in <see cref="T:CodeMuster.Domain.Exclusions"/> (D04). A glob without a slash matches file names, so a folder needs <c>folder/**</c>.</summary>
|
|
68
73
|
</member>
|
|
74
|
+
<member name="P:CodeMuster.Application.Config.TestCommand">
|
|
75
|
+
<summary>The repository's own test command as a program and its arguments, such as <c>["dotnet", "test"]</c>. Fix mode runs it after every unit and throws away a fix that fails it (D37).</summary>
|
|
76
|
+
</member>
|
|
77
|
+
<member name="M:CodeMuster.Application.Config.ExcludedHere(System.String)">
|
|
78
|
+
<summary>True when this repository's own <see cref="P:CodeMuster.Application.Config.Exclude"/> globs cover the path, whatever the built-in rules say about it.</summary>
|
|
79
|
+
</member>
|
|
69
80
|
<member name="M:CodeMuster.Application.Config.ExcludedReason(System.String,System.Boolean)">
|
|
70
81
|
<summary>Why a file is not analyzed: the built-in reason first, then <c>exclude:<glob></c> for the first exclude glob it matches; null when it is analyzed.</summary>
|
|
71
82
|
</member>
|
|
@@ -102,6 +113,32 @@
|
|
|
102
113
|
<member name="M:CodeMuster.Application.ConfigLoader.LoadAsync(System.String,System.Threading.CancellationToken)">
|
|
103
114
|
<summary>The repo's config; throws <see cref="T:CodeMuster.Application.NotInitializedException"/> until <c>init</c> has written one.</summary>
|
|
104
115
|
</member>
|
|
116
|
+
<member name="T:CodeMuster.Application.DependencyResult">
|
|
117
|
+
<summary>What the dependency audit found during a scan (D38).</summary>
|
|
118
|
+
<param name="Manifests">Manifests whose audit ran.</param>
|
|
119
|
+
<param name="Packages">Advisories recorded across them.</param>
|
|
120
|
+
<param name="BySeverity">How many of each severity, most serious first.</param>
|
|
121
|
+
<param name="Diagnostics">Manifests whose audit could not run, each naming the fix.</param>
|
|
122
|
+
</member>
|
|
123
|
+
<member name="M:CodeMuster.Application.DependencyResult.#ctor(System.Int32,System.Int32,System.Collections.Generic.IReadOnlyDictionary{CodeMuster.Domain.Severity,System.Int32},System.Collections.Generic.IReadOnlyList{System.String})">
|
|
124
|
+
<summary>What the dependency audit found during a scan (D38).</summary>
|
|
125
|
+
<param name="Manifests">Manifests whose audit ran.</param>
|
|
126
|
+
<param name="Packages">Advisories recorded across them.</param>
|
|
127
|
+
<param name="BySeverity">How many of each severity, most serious first.</param>
|
|
128
|
+
<param name="Diagnostics">Manifests whose audit could not run, each naming the fix.</param>
|
|
129
|
+
</member>
|
|
130
|
+
<member name="P:CodeMuster.Application.DependencyResult.Manifests">
|
|
131
|
+
<summary>Manifests whose audit ran.</summary>
|
|
132
|
+
</member>
|
|
133
|
+
<member name="P:CodeMuster.Application.DependencyResult.Packages">
|
|
134
|
+
<summary>Advisories recorded across them.</summary>
|
|
135
|
+
</member>
|
|
136
|
+
<member name="P:CodeMuster.Application.DependencyResult.BySeverity">
|
|
137
|
+
<summary>How many of each severity, most serious first.</summary>
|
|
138
|
+
</member>
|
|
139
|
+
<member name="P:CodeMuster.Application.DependencyResult.Diagnostics">
|
|
140
|
+
<summary>Manifests whose audit could not run, each naming the fix.</summary>
|
|
141
|
+
</member>
|
|
105
142
|
<member name="T:CodeMuster.Application.Doctor">
|
|
106
143
|
<summary>Checks that this machine can map the repository with functional probes, never liveness checks (D09): git lists the tracked files, then every mapper whose language has an included file maps the repository for real. A failure carries the fix to run; doctor never runs it. Without a <paramref name="config"/>, as before <c>init</c>, only the built-in exclusions apply. Each step is reported to <paramref name="progress"/> as it happens, under <c>git</c> or the mapper's language.</summary>
|
|
107
144
|
</member>
|
|
@@ -266,6 +303,86 @@
|
|
|
266
303
|
<member name="M:CodeMuster.Application.EstimateReport.Render">
|
|
267
304
|
<summary>The plain-text block the CLI prints, lines joined with LF and no trailing newline.</summary>
|
|
268
305
|
</member>
|
|
306
|
+
<member name="T:CodeMuster.Application.Fix">
|
|
307
|
+
<summary>Fixes what the audit confirmed (D37): one unit per file with confirmed findings, one fresh agent call each, serially, committing after every file it changes. The only use case that writes to the repository.</summary>
|
|
308
|
+
</member>
|
|
309
|
+
<member name="M:CodeMuster.Application.Fix.#ctor(CodeMuster.Domain.ILedger,CodeMuster.Domain.ISourceTree,CodeMuster.Domain.IClock,CodeMuster.Application.Config,CodeMuster.Domain.IWorkspace,CodeMuster.Domain.ITestRunner)">
|
|
310
|
+
<summary>Fixes what the audit confirmed (D37): one unit per file with confirmed findings, one fresh agent call each, serially, committing after every file it changes. The only use case that writes to the repository.</summary>
|
|
311
|
+
</member>
|
|
312
|
+
<member name="M:CodeMuster.Application.Fix.RunAsync(CodeMuster.Domain.IAgentAdapter,CodeMuster.Application.FixOptions,System.IProgress{System.String},System.Threading.CancellationToken)">
|
|
313
|
+
<summary>Plans the units, then works them one at a time: pack, agent, record, commit. Refuses to start unless the working tree is clean, and throws away a failed attempt's edits before retrying.</summary>
|
|
314
|
+
</member>
|
|
315
|
+
<member name="M:CodeMuster.Application.Fix.PlanAsync(System.Threading.CancellationToken)">
|
|
316
|
+
<summary>Creates or refreshes a fix unit for every file with a confirmed finding, and retires fix units whose findings are gone. A unit already fixed against the file's current content keeps its Done status.</summary>
|
|
317
|
+
</member>
|
|
318
|
+
<member name="T:CodeMuster.Application.FixOptions">
|
|
319
|
+
<summary>How a fix run should behave (D37). Fix mode is serial: two agents editing one repository would clobber each other.</summary>
|
|
320
|
+
<param name="MaxAttempts">Attempts per unit before the run gives up on it; at least 1.</param>
|
|
321
|
+
<param name="Path">Fix only files under this repo-relative folder, or anywhere when null.</param>
|
|
322
|
+
</member>
|
|
323
|
+
<member name="M:CodeMuster.Application.FixOptions.#ctor(System.Int32,System.String)">
|
|
324
|
+
<summary>How a fix run should behave (D37). Fix mode is serial: two agents editing one repository would clobber each other.</summary>
|
|
325
|
+
<param name="MaxAttempts">Attempts per unit before the run gives up on it; at least 1.</param>
|
|
326
|
+
<param name="Path">Fix only files under this repo-relative folder, or anywhere when null.</param>
|
|
327
|
+
</member>
|
|
328
|
+
<member name="P:CodeMuster.Application.FixOptions.Path">
|
|
329
|
+
<summary>Fix only files under this repo-relative folder, or anywhere when null.</summary>
|
|
330
|
+
</member>
|
|
331
|
+
<member name="P:CodeMuster.Application.FixOptions.MaxAttempts">
|
|
332
|
+
<summary>Attempts per unit before the run gives up on it.</summary>
|
|
333
|
+
</member>
|
|
334
|
+
<member name="T:CodeMuster.Application.FixPlan">
|
|
335
|
+
<summary>What planning fix units found (D37).</summary>
|
|
336
|
+
<param name="Files">Files with at least one confirmed finding, one unit each.</param>
|
|
337
|
+
<param name="Findings">Confirmed findings those units cover.</param>
|
|
338
|
+
<param name="NeedingWork">Units not already fixed against the file's current content.</param>
|
|
339
|
+
</member>
|
|
340
|
+
<member name="M:CodeMuster.Application.FixPlan.#ctor(System.Int32,System.Int32,System.Int32)">
|
|
341
|
+
<summary>What planning fix units found (D37).</summary>
|
|
342
|
+
<param name="Files">Files with at least one confirmed finding, one unit each.</param>
|
|
343
|
+
<param name="Findings">Confirmed findings those units cover.</param>
|
|
344
|
+
<param name="NeedingWork">Units not already fixed against the file's current content.</param>
|
|
345
|
+
</member>
|
|
346
|
+
<member name="P:CodeMuster.Application.FixPlan.Files">
|
|
347
|
+
<summary>Files with at least one confirmed finding, one unit each.</summary>
|
|
348
|
+
</member>
|
|
349
|
+
<member name="P:CodeMuster.Application.FixPlan.Findings">
|
|
350
|
+
<summary>Confirmed findings those units cover.</summary>
|
|
351
|
+
</member>
|
|
352
|
+
<member name="P:CodeMuster.Application.FixPlan.NeedingWork">
|
|
353
|
+
<summary>Units not already fixed against the file's current content.</summary>
|
|
354
|
+
</member>
|
|
355
|
+
<member name="T:CodeMuster.Application.FixResult">
|
|
356
|
+
<summary>What a fix run did (D37).</summary>
|
|
357
|
+
<param name="Units">Files it recorded a result for.</param>
|
|
358
|
+
<param name="Fixed">Findings the agent changed code for.</param>
|
|
359
|
+
<param name="Declined">Findings it left alone, with reasons in the ledger.</param>
|
|
360
|
+
<param name="GaveUp">Units that used all their attempts.</param>
|
|
361
|
+
<param name="TestsRun">True when a test command gated every recorded fix; false when none was configured.</param>
|
|
362
|
+
</member>
|
|
363
|
+
<member name="M:CodeMuster.Application.FixResult.#ctor(System.Int32,System.Int32,System.Int32,System.Collections.Generic.IReadOnlyList{System.String},System.Boolean)">
|
|
364
|
+
<summary>What a fix run did (D37).</summary>
|
|
365
|
+
<param name="Units">Files it recorded a result for.</param>
|
|
366
|
+
<param name="Fixed">Findings the agent changed code for.</param>
|
|
367
|
+
<param name="Declined">Findings it left alone, with reasons in the ledger.</param>
|
|
368
|
+
<param name="GaveUp">Units that used all their attempts.</param>
|
|
369
|
+
<param name="TestsRun">True when a test command gated every recorded fix; false when none was configured.</param>
|
|
370
|
+
</member>
|
|
371
|
+
<member name="P:CodeMuster.Application.FixResult.Units">
|
|
372
|
+
<summary>Files it recorded a result for.</summary>
|
|
373
|
+
</member>
|
|
374
|
+
<member name="P:CodeMuster.Application.FixResult.Fixed">
|
|
375
|
+
<summary>Findings the agent changed code for.</summary>
|
|
376
|
+
</member>
|
|
377
|
+
<member name="P:CodeMuster.Application.FixResult.Declined">
|
|
378
|
+
<summary>Findings it left alone, with reasons in the ledger.</summary>
|
|
379
|
+
</member>
|
|
380
|
+
<member name="P:CodeMuster.Application.FixResult.GaveUp">
|
|
381
|
+
<summary>Units that used all their attempts.</summary>
|
|
382
|
+
</member>
|
|
383
|
+
<member name="P:CodeMuster.Application.FixResult.TestsRun">
|
|
384
|
+
<summary>True when a test command gated every recorded fix; false when none was configured.</summary>
|
|
385
|
+
</member>
|
|
269
386
|
<member name="T:CodeMuster.Application.Init">
|
|
270
387
|
<summary>Sets a repo up (D24): writes the default config once and makes sure the ledger is gitignored, touching nothing else.</summary>
|
|
271
388
|
</member>
|
|
@@ -390,6 +507,12 @@
|
|
|
390
507
|
<member name="P:CodeMuster.Application.PlannedUnit.Members">
|
|
391
508
|
<summary>The files or symbols the unit covers, each carrying this unit's id.</summary>
|
|
392
509
|
</member>
|
|
510
|
+
<member name="M:CodeMuster.Application.PlannedUnit.Dependency(System.String,System.String)">
|
|
511
|
+
<summary>The dependency unit for one manifest: the manifest as it stands, so a change to it re-audits (D38).</summary>
|
|
512
|
+
</member>
|
|
513
|
+
<member name="M:CodeMuster.Application.PlannedUnit.Fix(System.String,System.String)">
|
|
514
|
+
<summary>The fix unit for one file: its whole content, so a change to the file marks the unit stale (D37).</summary>
|
|
515
|
+
</member>
|
|
393
516
|
<member name="M:CodeMuster.Application.PlannedUnit.Verify(CodeMuster.Domain.UnitFinding,System.Collections.Generic.IReadOnlyList{CodeMuster.Domain.UnitMember},CodeMuster.Domain.Fidelity)">
|
|
394
517
|
<summary>The verify unit for <paramref name="finding"/>: the members of the unit that reported it, so it goes stale with that code, keyed by the lines the finding cites.</summary>
|
|
395
518
|
</member>
|
|
@@ -517,7 +640,7 @@
|
|
|
517
640
|
Each step is reported to <paramref name="progress"/> as it starts or finishes, with mapper steps under their language.
|
|
518
641
|
</summary>
|
|
519
642
|
</member>
|
|
520
|
-
<member name="M:CodeMuster.Application.Scan.#ctor(CodeMuster.Domain.ILedger,CodeMuster.Domain.ISourceTree,CodeMuster.Domain.IContentHasher,CodeMuster.Domain.IClock,CodeMuster.Application.Config,System.Collections.Generic.IReadOnlyList{CodeMuster.Domain.ICodeMapper},System.String,System.IProgress{System.String})">
|
|
643
|
+
<member name="M:CodeMuster.Application.Scan.#ctor(CodeMuster.Domain.ILedger,CodeMuster.Domain.ISourceTree,CodeMuster.Domain.IContentHasher,CodeMuster.Domain.IClock,CodeMuster.Application.Config,System.Collections.Generic.IReadOnlyList{CodeMuster.Domain.ICodeMapper},System.String,System.IProgress{System.String},CodeMuster.Domain.IDependencyAuditor)">
|
|
521
644
|
<summary>
|
|
522
645
|
Discovers the tree, refreshes file rows through the stat cache (D05), plans units, retires every live unit the plan no longer holds, and records a <see cref="T:CodeMuster.Domain.ScanRun"/>.
|
|
523
646
|
A current finding keeps its verify unit while the code of the unit that reported it is unchanged since that analysis (D27), unless verification is off (D28).
|
|
@@ -528,6 +651,9 @@
|
|
|
528
651
|
<member name="M:CodeMuster.Application.Scan.RunAsync(System.Threading.CancellationToken)">
|
|
529
652
|
<summary>Runs one scan, in slice mode when mappers were given.</summary>
|
|
530
653
|
</member>
|
|
654
|
+
<member name="M:CodeMuster.Application.Scan.AuditPaths(System.Collections.Generic.IReadOnlyList{CodeMuster.Domain.FileRecord})">
|
|
655
|
+
<summary>Files the audit may look at: everything not excluded, plus the lockfiles, which are excluded as code but are exactly what the audit tools read (D38).</summary>
|
|
656
|
+
</member>
|
|
531
657
|
<member name="T:CodeMuster.Application.ScanResult">
|
|
532
658
|
<summary>What one <see cref="T:CodeMuster.Application.Scan"/> found and changed.</summary>
|
|
533
659
|
<param name="HeadCommit">Commit the tree was at.</param>
|
|
@@ -537,8 +663,9 @@
|
|
|
537
663
|
<param name="UnitsStale">Units left stale after the scan.</param>
|
|
538
664
|
<param name="UnitsTotal">Units present after the scan, retired ones excluded.</param>
|
|
539
665
|
<param name="SliceMode">What slice mode built and how well the mappers resolved, or null when the scan ran in file mode.</param>
|
|
666
|
+
<param name="Vulnerabilities">What the dependency audit found, or null when it did not run (D38).</param>
|
|
540
667
|
</member>
|
|
541
|
-
<member name="M:CodeMuster.Application.ScanResult.#ctor(System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,CodeMuster.Application.SliceModeResult)">
|
|
668
|
+
<member name="M:CodeMuster.Application.ScanResult.#ctor(System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,CodeMuster.Application.SliceModeResult,CodeMuster.Application.DependencyResult)">
|
|
542
669
|
<summary>What one <see cref="T:CodeMuster.Application.Scan"/> found and changed.</summary>
|
|
543
670
|
<param name="HeadCommit">Commit the tree was at.</param>
|
|
544
671
|
<param name="FilesIncluded">Files that have a unit.</param>
|
|
@@ -547,6 +674,7 @@
|
|
|
547
674
|
<param name="UnitsStale">Units left stale after the scan.</param>
|
|
548
675
|
<param name="UnitsTotal">Units present after the scan, retired ones excluded.</param>
|
|
549
676
|
<param name="SliceMode">What slice mode built and how well the mappers resolved, or null when the scan ran in file mode.</param>
|
|
677
|
+
<param name="Vulnerabilities">What the dependency audit found, or null when it did not run (D38).</param>
|
|
550
678
|
</member>
|
|
551
679
|
<member name="P:CodeMuster.Application.ScanResult.HeadCommit">
|
|
552
680
|
<summary>Commit the tree was at.</summary>
|
|
@@ -569,6 +697,9 @@
|
|
|
569
697
|
<member name="P:CodeMuster.Application.ScanResult.SliceMode">
|
|
570
698
|
<summary>What slice mode built and how well the mappers resolved, or null when the scan ran in file mode.</summary>
|
|
571
699
|
</member>
|
|
700
|
+
<member name="P:CodeMuster.Application.ScanResult.Vulnerabilities">
|
|
701
|
+
<summary>What the dependency audit found, or null when it did not run (D38).</summary>
|
|
702
|
+
</member>
|
|
572
703
|
<member name="T:CodeMuster.Application.SliceModeResult">
|
|
573
704
|
<summary>The units a slice-mode <see cref="T:CodeMuster.Application.Scan"/> planned and what its mappers reported.</summary>
|
|
574
705
|
<param name="Slices">Slice units present after the scan.</param>
|
|
@@ -675,8 +806,9 @@
|
|
|
675
806
|
<param name="Kinds">Counts per unit kind present, in kind order.</param>
|
|
676
807
|
<param name="ResolutionThreshold">The rate below which coverage is never complete (D09).</param>
|
|
677
808
|
<param name="TopUnresolvedNames">Most frequent unresolved call names of the last scan, or null when no mapper ran.</param>
|
|
809
|
+
<param name="VulnerablePackages">Outstanding vulnerable packages by severity, from the last dependency audit (D38).</param>
|
|
678
810
|
</member>
|
|
679
|
-
<member name="M:CodeMuster.Application.StatusReport.#ctor(System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Nullable{System.Double},System.Collections.Generic.IReadOnlyList{CodeMuster.Application.KindStatus},System.Double,System.Collections.Generic.IReadOnlyList{System.String})">
|
|
811
|
+
<member name="M:CodeMuster.Application.StatusReport.#ctor(System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Nullable{System.Double},System.Collections.Generic.IReadOnlyList{CodeMuster.Application.KindStatus},System.Double,System.Collections.Generic.IReadOnlyList{System.String},System.Collections.Generic.IReadOnlyDictionary{CodeMuster.Domain.Severity,System.Int32})">
|
|
680
812
|
<summary>Where the audit stands, as <see cref="T:CodeMuster.Application.Status"/> reads it from the ledger.</summary>
|
|
681
813
|
<param name="HeadCommit">Commit of the last scan, or null before any scan.</param>
|
|
682
814
|
<param name="Analyzed">Units that are Done.</param>
|
|
@@ -688,6 +820,7 @@
|
|
|
688
820
|
<param name="Kinds">Counts per unit kind present, in kind order.</param>
|
|
689
821
|
<param name="ResolutionThreshold">The rate below which coverage is never complete (D09).</param>
|
|
690
822
|
<param name="TopUnresolvedNames">Most frequent unresolved call names of the last scan, or null when no mapper ran.</param>
|
|
823
|
+
<param name="VulnerablePackages">Outstanding vulnerable packages by severity, from the last dependency audit (D38).</param>
|
|
691
824
|
</member>
|
|
692
825
|
<member name="P:CodeMuster.Application.StatusReport.HeadCommit">
|
|
693
826
|
<summary>Commit of the last scan, or null before any scan.</summary>
|
|
@@ -719,6 +852,9 @@
|
|
|
719
852
|
<member name="P:CodeMuster.Application.StatusReport.TopUnresolvedNames">
|
|
720
853
|
<summary>Most frequent unresolved call names of the last scan, or null when no mapper ran.</summary>
|
|
721
854
|
</member>
|
|
855
|
+
<member name="P:CodeMuster.Application.StatusReport.VulnerablePackages">
|
|
856
|
+
<summary>Outstanding vulnerable packages by severity, from the last dependency audit (D38).</summary>
|
|
857
|
+
</member>
|
|
722
858
|
<member name="M:CodeMuster.Application.StatusReport.Render">
|
|
723
859
|
<summary>The plain-text block the CLI prints, lines joined with LF and no trailing newline.</summary>
|
|
724
860
|
</member>
|
|
Binary file
|
|
@@ -259,6 +259,49 @@
|
|
|
259
259
|
<member name="M:CodeMuster.Domain.CodeMapJson.Serialize(CodeMuster.Domain.CodeMap)">
|
|
260
260
|
<summary>Writes a code map as indented JSON.</summary>
|
|
261
261
|
</member>
|
|
262
|
+
<member name="T:CodeMuster.Domain.ManifestVulnerabilities">
|
|
263
|
+
<summary>What one manifest's audit found (D38).</summary>
|
|
264
|
+
<param name="Manifest">Repo-relative path of the manifest the packages belong to.</param>
|
|
265
|
+
<param name="Tool">The command that produced it, for the record and the report.</param>
|
|
266
|
+
<param name="Packages">Every advisory the tool reported.</param>
|
|
267
|
+
</member>
|
|
268
|
+
<member name="M:CodeMuster.Domain.ManifestVulnerabilities.#ctor(System.String,System.String,System.Collections.Generic.IReadOnlyList{CodeMuster.Domain.VulnerablePackage})">
|
|
269
|
+
<summary>What one manifest's audit found (D38).</summary>
|
|
270
|
+
<param name="Manifest">Repo-relative path of the manifest the packages belong to.</param>
|
|
271
|
+
<param name="Tool">The command that produced it, for the record and the report.</param>
|
|
272
|
+
<param name="Packages">Every advisory the tool reported.</param>
|
|
273
|
+
</member>
|
|
274
|
+
<member name="P:CodeMuster.Domain.ManifestVulnerabilities.Manifest">
|
|
275
|
+
<summary>Repo-relative path of the manifest the packages belong to.</summary>
|
|
276
|
+
</member>
|
|
277
|
+
<member name="P:CodeMuster.Domain.ManifestVulnerabilities.Tool">
|
|
278
|
+
<summary>The command that produced it, for the record and the report.</summary>
|
|
279
|
+
</member>
|
|
280
|
+
<member name="P:CodeMuster.Domain.ManifestVulnerabilities.Packages">
|
|
281
|
+
<summary>Every advisory the tool reported.</summary>
|
|
282
|
+
</member>
|
|
283
|
+
<member name="T:CodeMuster.Domain.DependencyAudit">
|
|
284
|
+
<summary>Every manifest audited in one pass, and whatever went wrong (D38).</summary>
|
|
285
|
+
<param name="Manifests">One entry per manifest whose audit ran and could be read.</param>
|
|
286
|
+
<param name="Diagnostics">Manifests whose tool is missing, failed, or wrote something unreadable, each naming the fix.</param>
|
|
287
|
+
</member>
|
|
288
|
+
<member name="M:CodeMuster.Domain.DependencyAudit.#ctor(System.Collections.Generic.IReadOnlyList{CodeMuster.Domain.ManifestVulnerabilities},System.Collections.Generic.IReadOnlyList{System.String})">
|
|
289
|
+
<summary>Every manifest audited in one pass, and whatever went wrong (D38).</summary>
|
|
290
|
+
<param name="Manifests">One entry per manifest whose audit ran and could be read.</param>
|
|
291
|
+
<param name="Diagnostics">Manifests whose tool is missing, failed, or wrote something unreadable, each naming the fix.</param>
|
|
292
|
+
</member>
|
|
293
|
+
<member name="P:CodeMuster.Domain.DependencyAudit.Manifests">
|
|
294
|
+
<summary>One entry per manifest whose audit ran and could be read.</summary>
|
|
295
|
+
</member>
|
|
296
|
+
<member name="P:CodeMuster.Domain.DependencyAudit.Diagnostics">
|
|
297
|
+
<summary>Manifests whose tool is missing, failed, or wrote something unreadable, each naming the fix.</summary>
|
|
298
|
+
</member>
|
|
299
|
+
<member name="T:CodeMuster.Domain.IDependencyAuditor">
|
|
300
|
+
<summary>Runs each ecosystem's own audit tool over the repository's manifests (D38). Never installs or restores anything.</summary>
|
|
301
|
+
</member>
|
|
302
|
+
<member name="M:CodeMuster.Domain.IDependencyAuditor.AuditAsync(System.String,System.Collections.Generic.IReadOnlyList{System.String},System.IProgress{System.String},System.Threading.CancellationToken)">
|
|
303
|
+
<summary>Audits every manifest among <paramref name="paths"/>, reporting each one to <paramref name="progress"/> as it starts.</summary>
|
|
304
|
+
</member>
|
|
262
305
|
<member name="T:CodeMuster.Domain.DomainJson">
|
|
263
306
|
<summary>Serializer settings shared by every JSON contract in the Domain: snake_case names, lowercase enums, strict required fields, LF newlines, plain punctuation unescaped.</summary>
|
|
264
307
|
</member>
|
|
@@ -363,6 +406,107 @@
|
|
|
363
406
|
<member name="M:CodeMuster.Domain.Fingerprints.Compute(System.Collections.Generic.IEnumerable{CodeMuster.Domain.UnitMember})">
|
|
364
407
|
<summary>SHA-256 hex over the sorted (path, symbol, hash) triples.</summary>
|
|
365
408
|
</member>
|
|
409
|
+
<member name="T:CodeMuster.Domain.FixState">
|
|
410
|
+
<summary>What fix mode did about one finding (D37).</summary>
|
|
411
|
+
</member>
|
|
412
|
+
<member name="F:CodeMuster.Domain.FixState.Fixed">
|
|
413
|
+
<summary>The code was changed to address it.</summary>
|
|
414
|
+
</member>
|
|
415
|
+
<member name="F:CodeMuster.Domain.FixState.Declined">
|
|
416
|
+
<summary>It was left alone, with a reason.</summary>
|
|
417
|
+
</member>
|
|
418
|
+
<member name="T:CodeMuster.Domain.FixOutcome">
|
|
419
|
+
<summary>How one finding fared in fix mode, and why.</summary>
|
|
420
|
+
<param name="State">Fixed or declined.</param>
|
|
421
|
+
<param name="Reason">What was changed, or why it was left alone.</param>
|
|
422
|
+
</member>
|
|
423
|
+
<member name="M:CodeMuster.Domain.FixOutcome.#ctor(CodeMuster.Domain.FixState,System.String)">
|
|
424
|
+
<summary>How one finding fared in fix mode, and why.</summary>
|
|
425
|
+
<param name="State">Fixed or declined.</param>
|
|
426
|
+
<param name="Reason">What was changed, or why it was left alone.</param>
|
|
427
|
+
</member>
|
|
428
|
+
<member name="P:CodeMuster.Domain.FixOutcome.State">
|
|
429
|
+
<summary>Fixed or declined.</summary>
|
|
430
|
+
</member>
|
|
431
|
+
<member name="P:CodeMuster.Domain.FixOutcome.Reason">
|
|
432
|
+
<summary>What was changed, or why it was left alone.</summary>
|
|
433
|
+
</member>
|
|
434
|
+
<member name="T:CodeMuster.Domain.DeclinedFix">
|
|
435
|
+
<summary>One finding the fixer chose not to change.</summary>
|
|
436
|
+
<param name="Finding">The finding's ledger id, as the pack gave it.</param>
|
|
437
|
+
<param name="Reason">Why it was left alone.</param>
|
|
438
|
+
</member>
|
|
439
|
+
<member name="M:CodeMuster.Domain.DeclinedFix.#ctor(System.Int64,System.String)">
|
|
440
|
+
<summary>One finding the fixer chose not to change.</summary>
|
|
441
|
+
<param name="Finding">The finding's ledger id, as the pack gave it.</param>
|
|
442
|
+
<param name="Reason">Why it was left alone.</param>
|
|
443
|
+
</member>
|
|
444
|
+
<member name="P:CodeMuster.Domain.DeclinedFix.Finding">
|
|
445
|
+
<summary>The finding's ledger id, as the pack gave it.</summary>
|
|
446
|
+
</member>
|
|
447
|
+
<member name="P:CodeMuster.Domain.DeclinedFix.Reason">
|
|
448
|
+
<summary>Why it was left alone.</summary>
|
|
449
|
+
</member>
|
|
450
|
+
<member name="T:CodeMuster.Domain.FixResponse">
|
|
451
|
+
<summary>What a fix unit's agent reports back (D37).</summary>
|
|
452
|
+
<param name="Summary">One line on what changed in the file.</param>
|
|
453
|
+
<param name="Addressed">Ids of the findings the change addresses.</param>
|
|
454
|
+
<param name="Declined">Findings left alone, each with a reason.</param>
|
|
455
|
+
</member>
|
|
456
|
+
<member name="M:CodeMuster.Domain.FixResponse.#ctor(System.String,System.Collections.Generic.IReadOnlyList{System.Int64},System.Collections.Generic.IReadOnlyList{CodeMuster.Domain.DeclinedFix})">
|
|
457
|
+
<summary>What a fix unit's agent reports back (D37).</summary>
|
|
458
|
+
<param name="Summary">One line on what changed in the file.</param>
|
|
459
|
+
<param name="Addressed">Ids of the findings the change addresses.</param>
|
|
460
|
+
<param name="Declined">Findings left alone, each with a reason.</param>
|
|
461
|
+
</member>
|
|
462
|
+
<member name="P:CodeMuster.Domain.FixResponse.Summary">
|
|
463
|
+
<summary>One line on what changed in the file.</summary>
|
|
464
|
+
</member>
|
|
465
|
+
<member name="P:CodeMuster.Domain.FixResponse.Addressed">
|
|
466
|
+
<summary>Ids of the findings the change addresses.</summary>
|
|
467
|
+
</member>
|
|
468
|
+
<member name="P:CodeMuster.Domain.FixResponse.Declined">
|
|
469
|
+
<summary>Findings left alone, each with a reason.</summary>
|
|
470
|
+
</member>
|
|
471
|
+
<member name="T:CodeMuster.Domain.FixResponseJson">
|
|
472
|
+
<summary>The JSON contract for a fix unit's reply (D37).</summary>
|
|
473
|
+
</member>
|
|
474
|
+
<member name="P:CodeMuster.Domain.FixResponseJson.Sample">
|
|
475
|
+
<summary>The shape the pack asks for, and the text the skill shows.</summary>
|
|
476
|
+
</member>
|
|
477
|
+
<member name="M:CodeMuster.Domain.FixResponseJson.Parse(System.String)">
|
|
478
|
+
<summary>Parses a reply, throwing <see cref="T:System.Text.Json.JsonException"/> when a required field is missing.</summary>
|
|
479
|
+
</member>
|
|
480
|
+
<member name="M:CodeMuster.Domain.FixResponseJson.Serialize(CodeMuster.Domain.FixResponse)">
|
|
481
|
+
<summary>Writes a reply as indented JSON.</summary>
|
|
482
|
+
</member>
|
|
483
|
+
<member name="T:CodeMuster.Domain.FixTarget">
|
|
484
|
+
<summary>A confirmed finding as a fix pack presents it: the id to answer with, the finding, and why verification kept it.</summary>
|
|
485
|
+
<param name="Id">The finding's ledger id.</param>
|
|
486
|
+
<param name="Finding">The finding itself (D11).</param>
|
|
487
|
+
<param name="ConfirmedBecause">The verifier's reason, when it recorded one.</param>
|
|
488
|
+
</member>
|
|
489
|
+
<member name="M:CodeMuster.Domain.FixTarget.#ctor(System.Int64,CodeMuster.Domain.Finding,System.String)">
|
|
490
|
+
<summary>A confirmed finding as a fix pack presents it: the id to answer with, the finding, and why verification kept it.</summary>
|
|
491
|
+
<param name="Id">The finding's ledger id.</param>
|
|
492
|
+
<param name="Finding">The finding itself (D11).</param>
|
|
493
|
+
<param name="ConfirmedBecause">The verifier's reason, when it recorded one.</param>
|
|
494
|
+
</member>
|
|
495
|
+
<member name="P:CodeMuster.Domain.FixTarget.Id">
|
|
496
|
+
<summary>The finding's ledger id.</summary>
|
|
497
|
+
</member>
|
|
498
|
+
<member name="P:CodeMuster.Domain.FixTarget.Finding">
|
|
499
|
+
<summary>The finding itself (D11).</summary>
|
|
500
|
+
</member>
|
|
501
|
+
<member name="P:CodeMuster.Domain.FixTarget.ConfirmedBecause">
|
|
502
|
+
<summary>The verifier's reason, when it recorded one.</summary>
|
|
503
|
+
</member>
|
|
504
|
+
<member name="T:CodeMuster.Domain.FixJson">
|
|
505
|
+
<summary>Serializes what a fix pack shows.</summary>
|
|
506
|
+
</member>
|
|
507
|
+
<member name="M:CodeMuster.Domain.FixJson.SerializeTargets(System.Collections.Generic.IReadOnlyList{CodeMuster.Domain.FixTarget})">
|
|
508
|
+
<summary>Writes the findings a fix unit must address, as indented JSON.</summary>
|
|
509
|
+
</member>
|
|
366
510
|
<member name="T:CodeMuster.Domain.Glob">
|
|
367
511
|
<summary>Minimal gitignore-style glob matching over normalized repo-relative paths.</summary>
|
|
368
512
|
</member>
|
|
@@ -441,7 +585,7 @@
|
|
|
441
585
|
<member name="M:CodeMuster.Domain.ILedger.NextAsync(System.Int32,System.Nullable{CodeMuster.Domain.UnitKind},System.String,System.Threading.CancellationToken)">
|
|
442
586
|
<summary>Up to <paramref name="batch"/> units that need work (pending, stale, or failed), only of <paramref name="kind"/> when it is given, oldest first by insertion order.</summary>
|
|
443
587
|
</member>
|
|
444
|
-
<member name="M:CodeMuster.Domain.ILedger.RecordAnalysisAsync(CodeMuster.Domain.Analysis,System.Collections.Generic.IReadOnlyList{CodeMuster.Domain.Finding},System.Threading.CancellationToken)">
|
|
588
|
+
<member name="M:CodeMuster.Domain.ILedger.RecordAnalysisAsync(CodeMuster.Domain.Analysis,System.Collections.Generic.IReadOnlyList{CodeMuster.Domain.Finding},System.Threading.CancellationToken,CodeMuster.Domain.VerifyResponse)">
|
|
445
589
|
<summary>Stores an analysis and its findings atomically and moves the unit to Done (with summary, summary hash, and lens hash) or Failed.</summary>
|
|
446
590
|
</member>
|
|
447
591
|
<member name="M:CodeMuster.Domain.ILedger.RecordVerificationAsync(CodeMuster.Domain.Analysis,System.Int64,CodeMuster.Domain.VerifyResponse,System.Threading.CancellationToken)">
|
|
@@ -450,6 +594,9 @@
|
|
|
450
594
|
<member name="M:CodeMuster.Domain.ILedger.GetCurrentFindingsAsync(System.Threading.CancellationToken)">
|
|
451
595
|
<summary>The findings of the most recent successful analysis of every non-retired unit, each with the fingerprint that analysis was made against, so a stale unit's findings still show and can be flagged, oldest first, each with its id and latest verdict.</summary>
|
|
452
596
|
</member>
|
|
597
|
+
<member name="M:CodeMuster.Domain.ILedger.RecordFixAsync(CodeMuster.Domain.Analysis,System.Collections.Generic.IReadOnlyList{System.ValueTuple{System.Int64,CodeMuster.Domain.FixOutcome}},System.Threading.CancellationToken)">
|
|
598
|
+
<summary>Records a fix unit's analysis and what it did about each finding, in one transaction, and moves the unit (D37).</summary>
|
|
599
|
+
</member>
|
|
453
600
|
<member name="M:CodeMuster.Domain.ILedger.GetProvenanceAsync(System.Threading.CancellationToken)">
|
|
454
601
|
<summary>What produced the latest successful analysis of each unit, for units whose analysis recorded it (D35).</summary>
|
|
455
602
|
</member>
|
|
@@ -474,6 +621,40 @@
|
|
|
474
621
|
<member name="M:CodeMuster.Domain.ISourceTree.IsIgnoredAsync(System.String,System.Threading.CancellationToken)">
|
|
475
622
|
<summary>True when an ignore file inside the repo (not the user's global excludes or .git/info/exclude) ignores the path.</summary>
|
|
476
623
|
</member>
|
|
624
|
+
<member name="T:CodeMuster.Domain.TestRun">
|
|
625
|
+
<summary>How the repository's own test command went (D37).</summary>
|
|
626
|
+
<param name="Passed">True when the command exited zero.</param>
|
|
627
|
+
<param name="Output">What it printed, kept for the reason a fix was thrown away.</param>
|
|
628
|
+
</member>
|
|
629
|
+
<member name="M:CodeMuster.Domain.TestRun.#ctor(System.Boolean,System.String)">
|
|
630
|
+
<summary>How the repository's own test command went (D37).</summary>
|
|
631
|
+
<param name="Passed">True when the command exited zero.</param>
|
|
632
|
+
<param name="Output">What it printed, kept for the reason a fix was thrown away.</param>
|
|
633
|
+
</member>
|
|
634
|
+
<member name="P:CodeMuster.Domain.TestRun.Passed">
|
|
635
|
+
<summary>True when the command exited zero.</summary>
|
|
636
|
+
</member>
|
|
637
|
+
<member name="P:CodeMuster.Domain.TestRun.Output">
|
|
638
|
+
<summary>What it printed, kept for the reason a fix was thrown away.</summary>
|
|
639
|
+
</member>
|
|
640
|
+
<member name="T:CodeMuster.Domain.ITestRunner">
|
|
641
|
+
<summary>Runs the repository's own test command, so a fix that breaks the build never counts as done (D37).</summary>
|
|
642
|
+
</member>
|
|
643
|
+
<member name="M:CodeMuster.Domain.ITestRunner.RunAsync(System.Threading.CancellationToken)">
|
|
644
|
+
<summary>Runs the command and reports how it went; never throws for a failing suite.</summary>
|
|
645
|
+
</member>
|
|
646
|
+
<member name="T:CodeMuster.Domain.IWorkspace">
|
|
647
|
+
<summary>The repository as fix mode changes it (D37): fix is the only verb that writes, so it checks and commits through this.</summary>
|
|
648
|
+
</member>
|
|
649
|
+
<member name="M:CodeMuster.Domain.IWorkspace.IsCleanAsync(System.Threading.CancellationToken)">
|
|
650
|
+
<summary>True when the working tree has no uncommitted changes to tracked files.</summary>
|
|
651
|
+
</member>
|
|
652
|
+
<member name="M:CodeMuster.Domain.IWorkspace.CommitAsync(System.String,System.Threading.CancellationToken)">
|
|
653
|
+
<summary>Commits everything currently changed, with <paramref name="message"/>. Never pushes.</summary>
|
|
654
|
+
</member>
|
|
655
|
+
<member name="M:CodeMuster.Domain.IWorkspace.RestoreAsync(System.Threading.CancellationToken)">
|
|
656
|
+
<summary>Throws away uncommitted changes to tracked files, so a failed attempt does not leave half a fix behind.</summary>
|
|
657
|
+
</member>
|
|
477
658
|
<member name="T:CodeMuster.Domain.Languages">
|
|
478
659
|
<summary>Language identifiers stored in the ledger and the extension map that assigns them.</summary>
|
|
479
660
|
</member>
|
|
@@ -707,14 +888,16 @@
|
|
|
707
888
|
<param name="Fingerprint">Unit fingerprint the analysis was produced against; differs from the unit's current fingerprint once the unit is stale.</param>
|
|
708
889
|
<param name="Finding">The finding itself (D11).</param>
|
|
709
890
|
<param name="Verification">The latest verdict from its verify unit, or null while unverified.</param>
|
|
891
|
+
<param name="Fix">What fix mode did about it, or null while nothing has (D37).</param>
|
|
710
892
|
</member>
|
|
711
|
-
<member name="M:CodeMuster.Domain.UnitFinding.#ctor(System.Int64,System.String,System.String,CodeMuster.Domain.Finding,CodeMuster.Domain.VerifyResponse)">
|
|
893
|
+
<member name="M:CodeMuster.Domain.UnitFinding.#ctor(System.Int64,System.String,System.String,CodeMuster.Domain.Finding,CodeMuster.Domain.VerifyResponse,CodeMuster.Domain.FixOutcome)">
|
|
712
894
|
<summary>A finding as the ledger currently holds it: from the most recent successful analysis of its unit, with the fingerprint that analysis was made against.</summary>
|
|
713
895
|
<param name="Id">The finding's ledger id; its verify unit is <see cref="M:CodeMuster.Domain.UnitIds.Verify(System.Int64)"/> of it.</param>
|
|
714
896
|
<param name="UnitId">The unit whose analysis reported the finding.</param>
|
|
715
897
|
<param name="Fingerprint">Unit fingerprint the analysis was produced against; differs from the unit's current fingerprint once the unit is stale.</param>
|
|
716
898
|
<param name="Finding">The finding itself (D11).</param>
|
|
717
899
|
<param name="Verification">The latest verdict from its verify unit, or null while unverified.</param>
|
|
900
|
+
<param name="Fix">What fix mode did about it, or null while nothing has (D37).</param>
|
|
718
901
|
</member>
|
|
719
902
|
<member name="P:CodeMuster.Domain.UnitFinding.Id">
|
|
720
903
|
<summary>The finding's ledger id; its verify unit is <see cref="M:CodeMuster.Domain.UnitIds.Verify(System.Int64)"/> of it.</summary>
|
|
@@ -731,6 +914,9 @@
|
|
|
731
914
|
<member name="P:CodeMuster.Domain.UnitFinding.Verification">
|
|
732
915
|
<summary>The latest verdict from its verify unit, or null while unverified.</summary>
|
|
733
916
|
</member>
|
|
917
|
+
<member name="P:CodeMuster.Domain.UnitFinding.Fix">
|
|
918
|
+
<summary>What fix mode did about it, or null while nothing has (D37).</summary>
|
|
919
|
+
</member>
|
|
734
920
|
<member name="T:CodeMuster.Domain.UnitIds">
|
|
735
921
|
<summary>Naming rules for unit ids.</summary>
|
|
736
922
|
</member>
|
|
@@ -743,6 +929,12 @@
|
|
|
743
929
|
<member name="M:CodeMuster.Domain.UnitIds.Verify(System.Int64)">
|
|
744
930
|
<summary>Id of the verify unit that tests one finding.</summary>
|
|
745
931
|
</member>
|
|
932
|
+
<member name="M:CodeMuster.Domain.UnitIds.Fix(System.String)">
|
|
933
|
+
<summary>Id of the fix unit for a repo-relative path (D37).</summary>
|
|
934
|
+
</member>
|
|
935
|
+
<member name="M:CodeMuster.Domain.UnitIds.Dependency(System.String)">
|
|
936
|
+
<summary>Id of the dependency unit for a manifest (D38).</summary>
|
|
937
|
+
</member>
|
|
746
938
|
<member name="M:CodeMuster.Domain.UnitIds.Slice(System.String)">
|
|
747
939
|
<summary>Id of the slice unit that starts at an entry point's symbol.</summary>
|
|
748
940
|
</member>
|
|
@@ -761,6 +953,12 @@
|
|
|
761
953
|
<member name="F:CodeMuster.Domain.UnitKind.Verify">
|
|
762
954
|
<summary>One finding to confirm or refute.</summary>
|
|
763
955
|
</member>
|
|
956
|
+
<member name="F:CodeMuster.Domain.UnitKind.Fix">
|
|
957
|
+
<summary>Every confirmed finding in one file, to be fixed (D37).</summary>
|
|
958
|
+
</member>
|
|
959
|
+
<member name="F:CodeMuster.Domain.UnitKind.Dependency">
|
|
960
|
+
<summary>One manifest's vulnerable packages, as its ecosystem's audit tool reported them (D38).</summary>
|
|
961
|
+
</member>
|
|
764
962
|
<member name="T:CodeMuster.Domain.UnitMember">
|
|
765
963
|
<summary>One file or symbol that belongs to a unit, with the hash it had when the unit was built.</summary>
|
|
766
964
|
<param name="UnitId">Owning unit.</param>
|
|
@@ -850,5 +1048,60 @@
|
|
|
850
1048
|
<member name="M:CodeMuster.Domain.VerifyResponseJson.Serialize(CodeMuster.Domain.VerifyResponse)">
|
|
851
1049
|
<summary>Serializes a response in the same shape as <see cref="F:CodeMuster.Domain.VerifyResponseJson.Sample"/>.</summary>
|
|
852
1050
|
</member>
|
|
1051
|
+
<member name="T:CodeMuster.Domain.VulnerablePackage">
|
|
1052
|
+
<summary>One advisory against one package, as an ecosystem's own audit tool reported it (D38).</summary>
|
|
1053
|
+
<param name="Package">Package name.</param>
|
|
1054
|
+
<param name="VulnerableVersions">The versions the advisory covers, in the tool's own words.</param>
|
|
1055
|
+
<param name="Severity">Advisory severity, mapped onto the findings scale.</param>
|
|
1056
|
+
<param name="AdvisoryId">The advisory's identifier, such as a GHSA id, or its numeric id when that is all the tool gives.</param>
|
|
1057
|
+
<param name="AdvisoryUrl">Where to read it.</param>
|
|
1058
|
+
<param name="Title">The advisory's one-line description.</param>
|
|
1059
|
+
<param name="FixedVersion">The version or range that fixes it, when the tool says; NuGet's audit does not.</param>
|
|
1060
|
+
<param name="Direct">True when the manifest declares this package itself, false when it arrives through another package.</param>
|
|
1061
|
+
</member>
|
|
1062
|
+
<member name="M:CodeMuster.Domain.VulnerablePackage.#ctor(System.String,System.String,CodeMuster.Domain.Severity,System.String,System.String,System.String,System.String,System.Boolean)">
|
|
1063
|
+
<summary>One advisory against one package, as an ecosystem's own audit tool reported it (D38).</summary>
|
|
1064
|
+
<param name="Package">Package name.</param>
|
|
1065
|
+
<param name="VulnerableVersions">The versions the advisory covers, in the tool's own words.</param>
|
|
1066
|
+
<param name="Severity">Advisory severity, mapped onto the findings scale.</param>
|
|
1067
|
+
<param name="AdvisoryId">The advisory's identifier, such as a GHSA id, or its numeric id when that is all the tool gives.</param>
|
|
1068
|
+
<param name="AdvisoryUrl">Where to read it.</param>
|
|
1069
|
+
<param name="Title">The advisory's one-line description.</param>
|
|
1070
|
+
<param name="FixedVersion">The version or range that fixes it, when the tool says; NuGet's audit does not.</param>
|
|
1071
|
+
<param name="Direct">True when the manifest declares this package itself, false when it arrives through another package.</param>
|
|
1072
|
+
</member>
|
|
1073
|
+
<member name="P:CodeMuster.Domain.VulnerablePackage.Package">
|
|
1074
|
+
<summary>Package name.</summary>
|
|
1075
|
+
</member>
|
|
1076
|
+
<member name="P:CodeMuster.Domain.VulnerablePackage.VulnerableVersions">
|
|
1077
|
+
<summary>The versions the advisory covers, in the tool's own words.</summary>
|
|
1078
|
+
</member>
|
|
1079
|
+
<member name="P:CodeMuster.Domain.VulnerablePackage.Severity">
|
|
1080
|
+
<summary>Advisory severity, mapped onto the findings scale.</summary>
|
|
1081
|
+
</member>
|
|
1082
|
+
<member name="P:CodeMuster.Domain.VulnerablePackage.AdvisoryId">
|
|
1083
|
+
<summary>The advisory's identifier, such as a GHSA id, or its numeric id when that is all the tool gives.</summary>
|
|
1084
|
+
</member>
|
|
1085
|
+
<member name="P:CodeMuster.Domain.VulnerablePackage.AdvisoryUrl">
|
|
1086
|
+
<summary>Where to read it.</summary>
|
|
1087
|
+
</member>
|
|
1088
|
+
<member name="P:CodeMuster.Domain.VulnerablePackage.Title">
|
|
1089
|
+
<summary>The advisory's one-line description.</summary>
|
|
1090
|
+
</member>
|
|
1091
|
+
<member name="P:CodeMuster.Domain.VulnerablePackage.FixedVersion">
|
|
1092
|
+
<summary>The version or range that fixes it, when the tool says; NuGet's audit does not.</summary>
|
|
1093
|
+
</member>
|
|
1094
|
+
<member name="P:CodeMuster.Domain.VulnerablePackage.Direct">
|
|
1095
|
+
<summary>True when the manifest declares this package itself, false when it arrives through another package.</summary>
|
|
1096
|
+
</member>
|
|
1097
|
+
<member name="T:CodeMuster.Domain.DependencyFindings">
|
|
1098
|
+
<summary>How a dependency finding is labelled, so everything that reads findings agrees (D38).</summary>
|
|
1099
|
+
</member>
|
|
1100
|
+
<member name="F:CodeMuster.Domain.DependencyFindings.Category">
|
|
1101
|
+
<summary>The <c>category</c> every dependency finding carries.</summary>
|
|
1102
|
+
</member>
|
|
1103
|
+
<member name="F:CodeMuster.Domain.DependencyFindings.Lens">
|
|
1104
|
+
<summary>The <c>lens_id</c> every dependency finding carries; no lens text produced it.</summary>
|
|
1105
|
+
</member>
|
|
853
1106
|
</members>
|
|
854
1107
|
</doc>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/bin/codemuster.deps.json
CHANGED
|
@@ -7,12 +7,12 @@
|
|
|
7
7
|
"targets": {
|
|
8
8
|
".NETCoreApp,Version=v10.0": {},
|
|
9
9
|
".NETCoreApp,Version=v10.0/win-x64": {
|
|
10
|
-
"codemuster/0.
|
|
10
|
+
"codemuster/0.2.0": {
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"CodeMuster.Application": "0.
|
|
13
|
-
"CodeMuster.Infrastructure": "0.
|
|
14
|
-
"CodeMuster.Mapping.CSharp": "0.
|
|
15
|
-
"CodeMuster.Mapping.TypeScript": "0.
|
|
12
|
+
"CodeMuster.Application": "0.2.0",
|
|
13
|
+
"CodeMuster.Infrastructure": "0.2.0",
|
|
14
|
+
"CodeMuster.Mapping.CSharp": "0.2.0",
|
|
15
|
+
"CodeMuster.Mapping.TypeScript": "0.2.0",
|
|
16
16
|
"runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "10.0.12"
|
|
17
17
|
},
|
|
18
18
|
"runtime": {
|
|
@@ -1036,65 +1036,65 @@
|
|
|
1036
1036
|
}
|
|
1037
1037
|
}
|
|
1038
1038
|
},
|
|
1039
|
-
"CodeMuster.Application/0.
|
|
1039
|
+
"CodeMuster.Application/0.2.0": {
|
|
1040
1040
|
"dependencies": {
|
|
1041
|
-
"CodeMuster.Domain": "0.
|
|
1041
|
+
"CodeMuster.Domain": "0.2.0"
|
|
1042
1042
|
},
|
|
1043
1043
|
"runtime": {
|
|
1044
1044
|
"CodeMuster.Application.dll": {
|
|
1045
|
-
"assemblyVersion": "0.
|
|
1046
|
-
"fileVersion": "0.
|
|
1045
|
+
"assemblyVersion": "0.2.0.0",
|
|
1046
|
+
"fileVersion": "0.2.0.0"
|
|
1047
1047
|
}
|
|
1048
1048
|
}
|
|
1049
1049
|
},
|
|
1050
|
-
"CodeMuster.Domain/0.
|
|
1050
|
+
"CodeMuster.Domain/0.2.0": {
|
|
1051
1051
|
"runtime": {
|
|
1052
1052
|
"CodeMuster.Domain.dll": {
|
|
1053
|
-
"assemblyVersion": "0.
|
|
1054
|
-
"fileVersion": "0.
|
|
1053
|
+
"assemblyVersion": "0.2.0.0",
|
|
1054
|
+
"fileVersion": "0.2.0.0"
|
|
1055
1055
|
}
|
|
1056
1056
|
}
|
|
1057
1057
|
},
|
|
1058
|
-
"CodeMuster.Infrastructure/0.
|
|
1058
|
+
"CodeMuster.Infrastructure/0.2.0": {
|
|
1059
1059
|
"dependencies": {
|
|
1060
|
-
"CodeMuster.Domain": "0.
|
|
1060
|
+
"CodeMuster.Domain": "0.2.0",
|
|
1061
1061
|
"Microsoft.Data.Sqlite": "10.0.12"
|
|
1062
1062
|
},
|
|
1063
1063
|
"runtime": {
|
|
1064
1064
|
"CodeMuster.Infrastructure.dll": {
|
|
1065
|
-
"assemblyVersion": "0.
|
|
1066
|
-
"fileVersion": "0.
|
|
1065
|
+
"assemblyVersion": "0.2.0.0",
|
|
1066
|
+
"fileVersion": "0.2.0.0"
|
|
1067
1067
|
}
|
|
1068
1068
|
}
|
|
1069
1069
|
},
|
|
1070
|
-
"CodeMuster.Mapping.CSharp/0.
|
|
1070
|
+
"CodeMuster.Mapping.CSharp/0.2.0": {
|
|
1071
1071
|
"dependencies": {
|
|
1072
|
-
"CodeMuster.Domain": "0.
|
|
1072
|
+
"CodeMuster.Domain": "0.2.0",
|
|
1073
1073
|
"Microsoft.CodeAnalysis.CSharp.Workspaces": "5.9.0",
|
|
1074
1074
|
"Microsoft.CodeAnalysis.Workspaces.MSBuild": "5.9.0"
|
|
1075
1075
|
},
|
|
1076
1076
|
"runtime": {
|
|
1077
1077
|
"CodeMuster.Mapping.CSharp.dll": {
|
|
1078
|
-
"assemblyVersion": "0.
|
|
1079
|
-
"fileVersion": "0.
|
|
1078
|
+
"assemblyVersion": "0.2.0.0",
|
|
1079
|
+
"fileVersion": "0.2.0.0"
|
|
1080
1080
|
}
|
|
1081
1081
|
}
|
|
1082
1082
|
},
|
|
1083
|
-
"CodeMuster.Mapping.TypeScript/0.
|
|
1083
|
+
"CodeMuster.Mapping.TypeScript/0.2.0": {
|
|
1084
1084
|
"dependencies": {
|
|
1085
|
-
"CodeMuster.Domain": "0.
|
|
1085
|
+
"CodeMuster.Domain": "0.2.0"
|
|
1086
1086
|
},
|
|
1087
1087
|
"runtime": {
|
|
1088
1088
|
"CodeMuster.Mapping.TypeScript.dll": {
|
|
1089
|
-
"assemblyVersion": "0.
|
|
1090
|
-
"fileVersion": "0.
|
|
1089
|
+
"assemblyVersion": "0.2.0.0",
|
|
1090
|
+
"fileVersion": "0.2.0.0"
|
|
1091
1091
|
}
|
|
1092
1092
|
}
|
|
1093
1093
|
}
|
|
1094
1094
|
}
|
|
1095
1095
|
},
|
|
1096
1096
|
"libraries": {
|
|
1097
|
-
"codemuster/0.
|
|
1097
|
+
"codemuster/0.2.0": {
|
|
1098
1098
|
"type": "project",
|
|
1099
1099
|
"serviceable": false,
|
|
1100
1100
|
"sha512": ""
|
|
@@ -1286,27 +1286,27 @@
|
|
|
1286
1286
|
"path": "system.composition.typedparts/10.0.1",
|
|
1287
1287
|
"hashPath": "system.composition.typedparts.10.0.1.nupkg.sha512"
|
|
1288
1288
|
},
|
|
1289
|
-
"CodeMuster.Application/0.
|
|
1289
|
+
"CodeMuster.Application/0.2.0": {
|
|
1290
1290
|
"type": "project",
|
|
1291
1291
|
"serviceable": false,
|
|
1292
1292
|
"sha512": ""
|
|
1293
1293
|
},
|
|
1294
|
-
"CodeMuster.Domain/0.
|
|
1294
|
+
"CodeMuster.Domain/0.2.0": {
|
|
1295
1295
|
"type": "project",
|
|
1296
1296
|
"serviceable": false,
|
|
1297
1297
|
"sha512": ""
|
|
1298
1298
|
},
|
|
1299
|
-
"CodeMuster.Infrastructure/0.
|
|
1299
|
+
"CodeMuster.Infrastructure/0.2.0": {
|
|
1300
1300
|
"type": "project",
|
|
1301
1301
|
"serviceable": false,
|
|
1302
1302
|
"sha512": ""
|
|
1303
1303
|
},
|
|
1304
|
-
"CodeMuster.Mapping.CSharp/0.
|
|
1304
|
+
"CodeMuster.Mapping.CSharp/0.2.0": {
|
|
1305
1305
|
"type": "project",
|
|
1306
1306
|
"serviceable": false,
|
|
1307
1307
|
"sha512": ""
|
|
1308
1308
|
},
|
|
1309
|
-
"CodeMuster.Mapping.TypeScript/0.
|
|
1309
|
+
"CodeMuster.Mapping.TypeScript/0.2.0": {
|
|
1310
1310
|
"type": "project",
|
|
1311
1311
|
"serviceable": false,
|
|
1312
1312
|
"sha512": ""
|
package/bin/codemuster.dll
CHANGED
|
Binary file
|
package/bin/codemuster.exe
CHANGED
|
Binary file
|