From c38f59f6579910b922d89b341d80e5fa01fee3d7 Mon Sep 17 00:00:00 2001 From: Marvin Hagemeister Date: Tue, 5 Mar 2024 17:02:08 +0100 Subject: [PATCH] fix: update node process version to latest node LTS (#22709) The issue seems to be already fixed since we upped to a newer 18.x version string in [another PR](https://github.com/denoland/deno/pull/20366). Updating to latest node LTS version can't hurt though. Fixes https://github.com/denoland/deno/issues/21515 --- ext/node/polyfills/_process/process.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/node/polyfills/_process/process.ts b/ext/node/polyfills/_process/process.ts index cc52e77064..6dfb897ddb 100644 --- a/ext/node/polyfills/_process/process.ts +++ b/ext/node/polyfills/_process/process.ts @@ -96,7 +96,7 @@ export const env: InstanceType & Record = * it pointed to Deno version, but that led to incompability * with some packages. */ -export const version = "v18.18.0"; +export const version = "v20.11.1"; /** * https://nodejs.org/api/process.html#process_process_versions @@ -107,7 +107,7 @@ export const version = "v18.18.0"; * with some packages. Value of `v8` field is still taken from `Deno.version`. */ export const versions = { - node: "18.17.1", + node: "20.11.1", uv: "1.43.0", zlib: "1.2.11", brotli: "1.0.9",