From afccebc1ee7af95530faf52548bd16b9d07d3384 Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Thu, 6 Oct 2022 14:32:16 -0700 Subject: [PATCH] install-node: Upgrade Node.js from 16.17.0 to 18.10.0. Although Node.js 18 is not the active LTS release for another 3 weeks, the Node.js 16 end-of-life date was moved forward to September 2023, (https://nodejs.org/en/blog/announcements/nodejs16-eol/), so it seems prudent to switch now. Signed-off-by: Anders Kaseorg --- scripts/lib/install-node | 6 +++--- version.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/lib/install-node b/scripts/lib/install-node index d9458fe239..e428e999c2 100755 --- a/scripts/lib/install-node +++ b/scripts/lib/install-node @@ -1,18 +1,18 @@ #!/usr/bin/env bash set -euo pipefail -version=16.17.0 +version=18.10.0 arch="$(uname -m)" case $arch in x86_64) tarball="node-v$version-linux-x64.tar.xz" - sha256=f0867d7a17a4d0df7dbb7df9ac3f9126c2b58f75450647146749ef296b31b49b + sha256=1aff4537bbb81c29c5c1c7c96379c6a2133b43651812745b524db8e1b65ee12b ;; aarch64) tarball="node-v$version-linux-arm64.tar.xz" - sha256=a43100595e7960b9e8364bff5641e0956a9929feee2759e70cbb396a1d827b7c + sha256=bbe88afe35569780aae8a84d9be8b55e4944d13e9212b0d51883a5dcf6a7de8b ;; esac diff --git a/version.py b/version.py index 42b8f0f169..bd50816b2a 100644 --- a/version.py +++ b/version.py @@ -48,4 +48,4 @@ API_FEATURE_LEVEL = 151 # historical commits sharing the same major version, in which case a # minor version bump suffices. -PROVISION_VERSION = (205, 1) +PROVISION_VERSION = (205, 2)