@dzhechkov/harness-core 0.3.124 → 0.3.126
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/.dz-manifest.json +1485 -0
- package/README.md +3 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -1
- package/dist/release.d.ts +206 -0
- package/dist/release.d.ts.map +1 -0
- package/dist/release.js +509 -0
- package/dist/release.js.map +1 -0
- package/dist/sign.d.ts +6 -0
- package/dist/sign.d.ts.map +1 -1
- package/dist/sign.js +33 -0
- package/dist/sign.js.map +1 -1
- package/package.json +8 -6
- package/sbom.json +3703 -0
- package/src/index.ts +32 -0
- package/src/release.ts +692 -0
- package/src/sign.ts +29 -0
package/src/index.ts
CHANGED
|
@@ -167,6 +167,38 @@ export type { PackageDownloads, DownloadsReport } from './downloads.js';
|
|
|
167
167
|
export { discoverInstalled, checkUpgrades } from './upgrade.js';
|
|
168
168
|
export type { InstalledSkill, UpgradeCheck, UpgradeReport } from './upgrade.js';
|
|
169
169
|
export type { PublishResult, PublishReport, ProvenanceMode, ProvenanceDecision } from './publish.js';
|
|
170
|
+
// Verified-release engine (feature release-verified, ADR-001) — pure VERIFY-phase planner +
|
|
171
|
+
// classifier in front of the untouched publish path. formatPublishError is re-exported for the
|
|
172
|
+
// CLI executor's captured-output discipline.
|
|
173
|
+
export {
|
|
174
|
+
collectPackageFacts,
|
|
175
|
+
selectAffectedPackages,
|
|
176
|
+
planReleaseGates,
|
|
177
|
+
classifyGateExecutions,
|
|
178
|
+
buildFailureIssue,
|
|
179
|
+
buildReleaseNotes,
|
|
180
|
+
releaseTagName,
|
|
181
|
+
firstOutputLine,
|
|
182
|
+
RELEASE_GATE_ORDER,
|
|
183
|
+
RELEASE_TIMEOUTS,
|
|
184
|
+
} from './release.js';
|
|
185
|
+
export type {
|
|
186
|
+
ReleaseGateId,
|
|
187
|
+
ReleaseFailureClass,
|
|
188
|
+
ReleaseSkipClass,
|
|
189
|
+
ReleaseBinEntry,
|
|
190
|
+
ReleasePackageFacts,
|
|
191
|
+
GateStep,
|
|
192
|
+
GateSkip,
|
|
193
|
+
GatePlan,
|
|
194
|
+
GateExecution,
|
|
195
|
+
GateFailure,
|
|
196
|
+
GateResult,
|
|
197
|
+
ReleaseVerdict,
|
|
198
|
+
PlanReleaseGatesOptions,
|
|
199
|
+
FailureIssueContext,
|
|
200
|
+
} from './release.js';
|
|
201
|
+
export { formatPublishError } from './publish.js';
|
|
170
202
|
export { computeRiskScore } from './risk-scoring.js';
|
|
171
203
|
export type { RiskScore, RiskThresholds } from './risk-scoring.js';
|
|
172
204
|
export {
|