From ae41671e755a95c9a8951cf885d598eecf496418 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Pierzcha=C5=82a?= Date: Mon, 7 Sep 2026 13:00:50 +0200 Subject: [PATCH] chore: drop the stale planned-operations closure approval The APPROVED_OVER_CEILING row for packages/command-registry/src/planned-operations.ts was consumed by #2329. Now that main carries the entry, the no-growth rule governs it and the row can no longer change any verdict, so the "no row is stale" probe fails on main and on every PR based on it. Remove the row, as the probe instructs. --- scripts/__tests__/eager-closure-budgets.ts | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/scripts/__tests__/eager-closure-budgets.ts b/scripts/__tests__/eager-closure-budgets.ts index 29aeba14ec..2e44a0745d 100644 --- a/scripts/__tests__/eager-closure-budgets.ts +++ b/scripts/__tests__/eager-closure-budgets.ts @@ -126,16 +126,7 @@ export const NEW_ENTRY_CEILINGS: Readonly> = Objec */ export const APPROVED_OVER_CEILING: Readonly< Record -> = Object.freeze({ - 'packages/command-registry/src/planned-operations.ts': { - issue: '#2198', - reason: - 'Flattens the required runtime operations of the remaining batch steps from the registry, ' + - 'so its closure is the registry entry itself plus the operation-name vocabulary; a lighter ' + - 'closure would mean a second copy of the descriptors.', - owner: 'thymikee', - }, -}); +> = Object.freeze({}); /** The category is a function of the path, never a hand-written column. */ export function entryCategoryOf(entryFile: string): EntryCategory {