From a586dd3045a2da00d903f77cb2dcb1ce3acf8eac Mon Sep 17 00:00:00 2001 From: "trop[bot]" <37223003+trop[bot]@users.noreply.github.com> Date: Mon, 5 Jan 2026 14:55:26 -0600 Subject: [PATCH] build: fixup release notes generation (#49306) Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: John Kleinschmidt --- script/release/notes/notes.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script/release/notes/notes.ts b/script/release/notes/notes.ts index 0da214361c..abd1c7e6c0 100644 --- a/script/release/notes/notes.ts +++ b/script/release/notes/notes.ts @@ -108,7 +108,8 @@ const runGit = async (dir: string, args: string[]) => { const response = spawnSync('git', args, { cwd: dir, encoding: 'utf8', - stdio: ['inherit', 'pipe', 'pipe'] + stdio: ['inherit', 'pipe', 'pipe'], + maxBuffer: 100 * 1024 * 1024 // 100MB buffer to handle large git outputs }); if (response.status !== 0) { throw new Error(response.stderr.trim());