From 26d7c8e60d30ad506ffa5cb2cbb4d9425d922147 Mon Sep 17 00:00:00 2001 From: lawrence Date: Wed, 11 Feb 2026 11:24:54 +0800 Subject: [PATCH 1/2] docs: update Node.js version requirement to 24.0.0 --- nodejs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodejs/README.md b/nodejs/README.md index 3a78f419..c7b64627 100644 --- a/nodejs/README.md +++ b/nodejs/README.md @@ -644,7 +644,7 @@ try { ## Requirements -- Node.js >= 18.0.0 +- Node.js >= 24.0.0 - GitHub Copilot CLI installed and in PATH (or provide custom `cliPath`) ## License From 7fd454ad53816b4d3afe9a81cd494d6bad889e2e Mon Sep 17 00:00:00 2001 From: lawrence Date: Wed, 11 Feb 2026 12:30:08 +0800 Subject: [PATCH 2/2] docs: update instruction file Node.js version requirement to 24.0.0 --- .github/copilot-instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index 7c362ab5..ea552176 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -43,7 +43,7 @@ - The SDK requires a Copilot CLI installation or an external server reachable via the `CLI URL option (language-specific casing)` (Node: `cliUrl`, Go: `CLIUrl`, .NET: `CliUrl`, Python: `cli_url`) or `COPILOT_CLI_PATH`. - Some scripts (typegen, formatting) call external tools: `gofmt`, `dotnet format`, `tsx` (available via npm), `quicktype`/`quicktype-core` (used by the Node typegen script), and `prettier` (provided as an npm devDependency). Most of these are available through the repo's package scripts or devDependencies—run `just install` (and `cd nodejs && npm ci`) to install them. Ensure the required tools are available in CI / developer machines. -- Tests may assume `node >= 18`, `python >= 3.9`, platform differences handled (Windows uses `shell=True` for npx in harness). +- Tests may assume `node >= 24`, `python >= 3.9`, platform differences handled (Windows uses `shell=True` for npx in harness). ## Where to add new code or tests 🧭