@resolveio/server-lib 22.3.180 → 22.3.181
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/package.json +1 -1
- package/util/ai-run-evidence-adapters.js +2 -2
- package/util/ai-run-evidence-adapters.js.map +1 -1
- package/util/ai-run-evidence.js +1 -1
- package/util/ai-run-evidence.js.map +1 -1
- package/util/ai-runner-manager-policy.d.ts +1 -0
- package/util/ai-runner-manager-policy.js +19 -12
- package/util/ai-runner-manager-policy.js.map +1 -1
- package/util/support-runner-v5.js +4 -4
- package/util/support-runner-v5.js.map +1 -1
|
@@ -2989,7 +2989,7 @@ function decideResolveIOSupportV5AutonomousNextAction(input) {
|
|
|
2989
2989
|
}
|
|
2990
2990
|
if (action === 'repair_release_hotfix_first') {
|
|
2991
2991
|
return primaryCommand === 'record_hotfix_evidence'
|
|
2992
|
-
? 'Hotfix evidence is recorded with sourceCommitSha, githubCommitUrl, and passed gitPushStatus before any live backend apply or continuation.'
|
|
2992
|
+
? 'Hotfix evidence is recorded with sourceCommitSha, githubCommitUrl, passed gitCommitStatus, and passed gitPushStatus before any live backend apply or continuation.'
|
|
2993
2993
|
: 'The smallest release/hotfix gate changes state, with duplicate full deploy blocked unless force evidence is explicit.';
|
|
2994
2994
|
}
|
|
2995
2995
|
if (action === 'ready_for_release_gate') {
|
|
@@ -3050,7 +3050,7 @@ function decideResolveIOSupportV5AutonomousNextAction(input) {
|
|
|
3050
3050
|
'Stop if the same failure class, blocker fingerprint, and evidence hash repeat without material evidence.',
|
|
3051
3051
|
'Stop if the action would edit outside diagnosis owner_files without a revised diagnosis gate.',
|
|
3052
3052
|
'Stop if route-load, screenshot-only, scorecard-only, or model-claim proof is the only acceptance evidence.',
|
|
3053
|
-
liveHotfixBlockedUntilCommit ? 'Stop before live backend hotfix until sourceCommitSha, githubCommitUrl, and passed gitPushStatus are recorded.' : ''
|
|
3053
|
+
liveHotfixBlockedUntilCommit ? 'Stop before live backend hotfix until sourceCommitSha, githubCommitUrl, passed gitCommitStatus, and passed gitPushStatus are recorded.' : ''
|
|
3054
3054
|
], __read(continuationProofCheckpoint.requiredResetEvidence.map(function (entry) { return "Reset requires: ".concat(entry); })), false).filter(Boolean))).slice(0, 24);
|
|
3055
3055
|
var createdAt = isoNow(input.now);
|
|
3056
3056
|
return {
|
|
@@ -3344,14 +3344,14 @@ function decideResolveIOSupportV5AutonomousNextAction(input) {
|
|
|
3344
3344
|
], false)));
|
|
3345
3345
|
var hotfixRequiredEvidence = Array.from(new Set(__spreadArray([
|
|
3346
3346
|
'hotfix evidence',
|
|
3347
|
-
'full sourceCommitSha, githubCommitUrl, and passed gitPushStatus for the exact pushed GitHub commit',
|
|
3347
|
+
'full sourceCommitSha, githubCommitUrl, passed gitCommitStatus, and passed gitPushStatus for the exact pushed GitHub commit',
|
|
3348
3348
|
'checksum before/after',
|
|
3349
3349
|
'health/self-test pass',
|
|
3350
3350
|
'release gate result'
|
|
3351
3351
|
], __read(hotfixContinuation.requiredEvidence), false)));
|
|
3352
3352
|
var hotfixForbiddenActions = [
|
|
3353
3353
|
'Do not apply a live hotfix before the exact diff is committed and pushed to GitHub.',
|
|
3354
|
-
'Do not mark a hotfix durable without sourceCommitSha, githubCommitUrl, and passed gitPushStatus.',
|
|
3354
|
+
'Do not mark a hotfix durable without sourceCommitSha, githubCommitUrl, passed gitCommitStatus, and passed gitPushStatus.',
|
|
3355
3355
|
'Do not run a full deploy to clear a duplicate release loop unless force evidence explicitly allows one.'
|
|
3356
3356
|
];
|
|
3357
3357
|
var hotfixGitGuard = hotfixContinuation.githubCommitGuard;
|