From 26d2f87cd5b6dfba5946ede55a5c2d70fc8b4416 Mon Sep 17 00:00:00 2001 From: Miki Date: Mon, 20 Feb 2023 08:55:38 -0800 Subject: [PATCH] Relax Node.js version to `^14.20.1` and bump `.nvmrc` to `v14.21.3` * `engines.node` is relaxed from `14.20.1` to `^14.20.1`: yarn and OSD will allow versions 14.20.1 or greater, but less than 15, to be used but do not impose upgrading to avoid being a breaking change. Users will be able to install any version of Node.js that satisfies `^14.20.1`, moving ahead without waiting for a change in OSD when new versions are released. * `.nvmrc` is bumped to the latest security patch: `14.21.3` Signed-off-by: Miki --- .nvmrc | 2 +- CHANGELOG.md | 2 ++ package.json | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.nvmrc b/.nvmrc index 285152276014..f46d5e394243 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -14.20.1 +14.21.3 diff --git a/CHANGELOG.md b/CHANGELOG.md index 34946e0e37b2..69c9d735a0e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -132,6 +132,8 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) - Bumps `re2` and `supertest` ([3018](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/3018)) - Bump `vega-tooltip` version from ^0.24.2 to ^0.30.0 ([#3358](https://github.com/opensearch-project/OpenSearch-Dashboards/issues/3358)) - Allow relaxing the Node.js runtime version requirement ([3402](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/3402)) +- Relax the Node.js requirement to `^14.20.1` ([3463](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/3463)) +- Bump the version of Node.js installed by `nvm` to `14.21.3` ([3463](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/3463)) ### 🪛 Refactoring diff --git a/package.json b/package.json index 360ecffdae5e..9524ec908b30 100644 --- a/package.json +++ b/package.json @@ -466,7 +466,7 @@ "zlib": "^1.0.5" }, "engines": { - "node": "14.20.1", + "node": "^14.20.1", "yarn": "^1.21.1" } }