From 94c949abed3759c15cdaa98afc6896343e8a6edd Mon Sep 17 00:00:00 2001 From: Dave Liu <7david12liu@gmail.com> Date: Fri, 14 Aug 2026 00:52:35 -0700 Subject: [PATCH] WEB-002D: repause Netlify release authority --- config/netlify-production-release.json | 2 +- netlify.toml | 2 +- tests/release-workflow.test.js | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/config/netlify-production-release.json b/config/netlify-production-release.json index 31a645c..bc86a25 100644 --- a/config/netlify-production-release.json +++ b/config/netlify-production-release.json @@ -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", diff --git a/netlify.toml b/netlify.toml index 9c4cafe..663bef0 100644 --- a/netlify.toml +++ b/netlify.toml @@ -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" diff --git a/tests/release-workflow.test.js b/tests/release-workflow.test.js index f41181e..efa22a1 100644 --- a/tests/release-workflow.test.js +++ b/tests/release-workflow.test.js @@ -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', @@ -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) => {