Update documented Node requirement#6546
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates the README.md to specify NodeJS 24.x and PNPM 10.26.0 as prerequisites. The feedback suggests specifying >= 10.26.0 for PNPM instead of a fixed version, as the global installation command installs the latest version and a fixed version might mislead developers.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| ### Prerequisite | ||
|
|
||
| - Install [PNPM](https://pnpm.io/installation) | ||
| - Install [PNPM](https://pnpm.io/installation) 10.26.0 |
There was a problem hiding this comment.
Specifying an exact version like 10.26.0 might lead developers to believe only that exact version is supported, whereas the installation command npm i -g pnpm will install the latest version of PNPM. It is better to specify >= 10.26.0 to allow newer minor/patch versions of PNPM v10.
| - Install [PNPM](https://pnpm.io/installation) 10.26.0 | |
| - Install [PNPM](https://pnpm.io/installation) >= 10.26.0 |
There was a problem hiding this comment.
Updated in the latest commit to document pnpm as >= 10.26.0, matching the engine minimum without implying only one exact patch version is supported.
Summary
Fixes #4138
Tests
git diff --checkNotes
package.jsonengines and CI workflow versions.