From a5da889f44804dd91bca42e95a29c3e8dcee1470 Mon Sep 17 00:00:00 2001 From: Garry Tan Date: Mon, 20 Jul 2026 16:12:18 -0700 Subject: [PATCH] =?UTF-8?q?fix(migrate):=20v124=20notice=20to=20stderr=20?= =?UTF-8?q?=E2=80=94=20the=20stdout-cleanliness=20guard=20caught=20it=20on?= =?UTF-8?q?=20master?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Same class as #3019's v123 fix; the guard test added there flagged this within one push. Route the notice through process.stderr.write. Co-Authored-By: Claude Fable 5 --- src/core/migrate.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/migrate.ts b/src/core/migrate.ts index c19a07574..124b79c8b 100644 --- a/src/core/migrate.ts +++ b/src/core/migrate.ts @@ -5667,7 +5667,8 @@ export const MIGRATIONS: Migration[] = [ END; $fn$ LANGUAGE plpgsql; `); - console.log(` v124: update_page_search_vector() no longer indexes compiled_truth (was overflowing tsvector on large pages, #2704)`); + process.stderr.write(` v124: update_page_search_vector() no longer indexes compiled_truth (was overflowing tsvector on large pages, #2704) +`); }, }, ];