From a072caab0b22b102f2be73189b1b5cd14eee5ae6 Mon Sep 17 00:00:00 2001 From: Fabian <43351274+0xk1f0@users.noreply.github.com> Date: Sat, 20 Jul 2024 00:18:56 +0200 Subject: [PATCH] node_runtime: Bump downloaded Node.js version to Current (Jod) (#14687) This PR bumps the hard-coded Node.js version from v18.x (Hydrogen), which was LTS until October 2023, to v22.x (Jod) which will be the next LTS release in October 2024. Release Notes: - Updated Zed's node version (v18.x -> v22.x) --- crates/node_runtime/src/node_runtime.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/node_runtime/src/node_runtime.rs b/crates/node_runtime/src/node_runtime.rs index 5f482de22a..82c738dc70 100644 --- a/crates/node_runtime/src/node_runtime.rs +++ b/crates/node_runtime/src/node_runtime.rs @@ -22,7 +22,7 @@ use util::ResultExt; #[cfg(windows)] use smol::process::windows::CommandExt; -const VERSION: &str = "v18.15.0"; +const VERSION: &str = "v22.5.1"; #[cfg(not(windows))] const NODE_PATH: &str = "bin/node";