How often is node-version updated #6570
-
I understand that code-server is supposed to update the node-version when vscode does, but what is the general timeline for this? There was a security finding on node 18.15.0 and I am being asked to update the version to 18.18.2 (LTS). Can this be done ad-hoc or do we need to wait on a new code-server update (via vscode update). If we have to wait, where can I find documentation on the timeline for this? I tried searching through the vscode issues but didn't see anything. Any assistance would be appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Yup, you can replace the Node version ad-hoc, either by replacing the Node binary code-server ships with or by launching code-server with your own Node binary (for example I am not sure what VS Code's process or timeline is for updating. You can sometimes find information by looking up issues about updates to Electron and then checking what version of Node that version of Electron uses. We just check the The main branch currently targets 18.17.1 which looks like it will be released in 1.86 (next month, I think, because 1.85 was just released). |
Beta Was this translation helpful? Give feedback.
Yup, you can replace the Node version ad-hoc, either by replacing the Node binary code-server ships with or by launching code-server with your own Node binary (for example
node /path/to/installed/code-server
, wherever thepackage.json
is).I am not sure what VS Code's process or timeline is for updating. You can sometimes find information by looking up issues about updates to Electron and then checking what version of Node that version of Electron uses. We just check the
.yarnrc
on every release.The main branch currently targets 18.17.1 which looks like it will be released in 1.86 (next month, I think, because 1.85 was just released).