Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/netlify-production-release.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"schemaVersion": 1,
"active": true,
"active": false,
"releaseId": "WEB-002D-KEYBOARD-FOCUS-2026-08-14",
"issueNumber": 659,
"previewBranch": "codex/issue-659-netlify-release",
Expand Down
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
command = "node ./scripts/netlify-release-build.js"

[context.deploy-preview]
# The #659 control-branch preview verifies its exact pinned source. Other
# The temporary #659 production authority is inactive again. Ordinary
# previews use their checked-out tree; production still needs the exact gate.
command = "node ./scripts/netlify-release-build.js --preview"

Expand Down
8 changes: 4 additions & 4 deletions tests/release-workflow.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -242,10 +242,10 @@ test('Netlify production is an exact-artifact release while previews remain avai
});
});

test('Netlify manifest pins the active bounded #659 keyboard-focus release', () => {
test('Netlify manifest pins the inactive bounded #659 keyboard-focus release', () => {
const loaded = loadManifest(NETLIFY_MANIFEST_PATH);
assert.equal(loaded.ok, true);
assert.equal(loaded.manifest.active, true);
assert.equal(loaded.manifest.active, false);
assert.equal(
loaded.manifest.releaseId,
'WEB-002D-KEYBOARD-FOCUS-2026-08-14',
Expand Down Expand Up @@ -289,11 +289,11 @@ test('Netlify manifest pins the active bounded #659 keyboard-focus release', ()
test('completed #623 records stay live while #659 is pending', () => {
assert.match(
netlifyConfig,
/#659 control-branch preview verifies its exact pinned source/i,
/temporary #659 production authority is inactive again/i,
);
assert.match(
netlifyConfig,
/Other[\s\S]{0,20}previews use their checked-out tree/i,
/Ordinary[\s\S]{0,20}previews use their checked-out tree/i,
);

finalReleaseTruth.forEach((contents, relativePath) => {
Expand Down