From b665c72c5e73ccdea09d64547e59cdeeae450333 Mon Sep 17 00:00:00 2001 From: Ryan Block Date: Tue, 5 Sep 2023 10:47:10 -0700 Subject: [PATCH] Set minimum Node.js version to 16.x; fixes #169 Add 20.x to CI --- .github/workflows/build.yml | 2 +- changelog.md | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9716bad..16c995d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - node-version: [ 14.x, 16.x, 18.x ] + node-version: [ 16.x, 18.x, 20.x ] os: [ windows-latest, ubuntu-latest, macOS-latest ] # Go diff --git a/changelog.md b/changelog.md index 8240076..f49a4fd 100644 --- a/changelog.md +++ b/changelog.md @@ -15,7 +15,7 @@ Hello! After a bit of a hiatus, the [Architect team](https://github.com/architec ### Changed -- [Breaking change] Introduced minimum Node.js version of >= 14; fixes [#169](https://github.com/architect/dynalite/issues/169) +- [Breaking change] Introduced minimum Node.js version of >= 16; fixes [#169](https://github.com/architect/dynalite/issues/169) - Changed license from MIT to Apache 2.0; see [#166](https://github.com/architect/dynalite/issues/166) - Updated dependencies (which themselves dropped support for older versions of Node.js) - Updated tests diff --git a/package.json b/package.json index 3851b1d..7c641b9 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "lint": "eslint . --fix" }, "engines": { - "node": ">=14" + "node": ">=16" }, "author": "Michael Hart ", "license": "Apache-2.0",