From 65f9ef4967e03c8ed7c9ed2a456fbcafac6a2878 Mon Sep 17 00:00:00 2001 From: Ian Littman Date: Mon, 20 Jan 2025 15:50:28 -0600 Subject: [PATCH] Bump Node version to 20.18.1 (#25591) For #25590. # Checklist for submitter If some of the following don't apply, delete the relevant line. - [x] Changes file added for user-visible changes in `changes/`, `orbit/changes/` or `ee/fleetd-chrome/changes`. See [Changes files](https://github.com/fleetdm/fleet/blob/main/docs/Contributing/Committing-Changes.md#changes-files) for more information. - [x] Manual QA for all new/changed functionality --- changes/25590-node | 1 + docs/Contributing/Building-Fleet.md | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 changes/25590-node diff --git a/changes/25590-node b/changes/25590-node new file mode 100644 index 0000000000..ab82059aaa --- /dev/null +++ b/changes/25590-node @@ -0,0 +1 @@ +* Bump Node.js version to 20.18.1 diff --git a/docs/Contributing/Building-Fleet.md b/docs/Contributing/Building-Fleet.md index 20de06ffd3..8747b49507 100644 --- a/docs/Contributing/Building-Fleet.md +++ b/docs/Contributing/Building-Fleet.md @@ -38,7 +38,7 @@ sudo npm install -g yarn # Install nvm to manage node versions (apt very out of date) https://github.com/nvm-sh/nvm#install--update-script curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash # refresh your session before continuing -nvm install v20.11.1 +nvm install v20.18.1 ``` #### Windows @@ -72,7 +72,7 @@ The binaries are now available in `./build/`. To set up a working local development environment, you must install the following minimum toolset: * [Go](https://golang.org/doc/install) -* [Node.js v20.11.1](https://nodejs.org/en/download/) and [Yarn](https://yarnpkg.com/en/docs/install) +* [Node.js v20.18.1](https://nodejs.org/en/download/) and [Yarn](https://yarnpkg.com/en/docs/install) * [GNU Make](https://www.gnu.org/software/make/) (probably already installed if you're on macOS/Linux) Once you have those minimum requirements, check out this [Loom video](https://www.loom.com/share/e7439f058eb44c45af872abe8f8de4a1) that walks through starting up a local development environment for Fleet. diff --git a/package.json b/package.json index ebc7b96732..559abc0779 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "0.99.99", "description": "The premier osquery fleet manager.", "engines": { - "node": "20.11.1", + "node": "20.18.1", "yarn": ">=1.22.21" }, "private": true,