From 4bb55dbfcb798360f0484e7f8a52d702425c4d22 Mon Sep 17 00:00:00 2001 From: Thomas Wang Date: Wed, 7 Apr 2021 12:15:02 -0700 Subject: [PATCH 1/2] Update node engine requirement https://nodejs.org/en/about/releases/ --- packages/ember-cli-fastboot/package.json | 2 +- packages/fastboot-app-server/package.json | 2 +- packages/fastboot-express-middleware/package.json | 2 +- packages/fastboot/package.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/ember-cli-fastboot/package.json b/packages/ember-cli-fastboot/package.json index 196f539c..2ebe2bb5 100644 --- a/packages/ember-cli-fastboot/package.json +++ b/packages/ember-cli-fastboot/package.json @@ -79,7 +79,7 @@ "rsvp": "^4.8.3" }, "engines": { - "node": "10.* || 12.* || >= 14.*" + "node": "12.* || 14.* || >=16" }, "publishConfig": { "registry": "https://registry.npmjs.org/" diff --git a/packages/fastboot-app-server/package.json b/packages/fastboot-app-server/package.json index b85a7647..3b3caf78 100644 --- a/packages/fastboot-app-server/package.json +++ b/packages/fastboot-app-server/package.json @@ -44,7 +44,7 @@ "request-promise": "^4.2.1" }, "engines": { - "node": "10.* || 12.* || >= 14" + "node": "12.* || 14.* || >=16" }, "volta": { "extends": "../../package.json" diff --git a/packages/fastboot-express-middleware/package.json b/packages/fastboot-express-middleware/package.json index 5e54a5aa..dffb9f67 100644 --- a/packages/fastboot-express-middleware/package.json +++ b/packages/fastboot-express-middleware/package.json @@ -44,7 +44,7 @@ "request-promise": "^4.2.1" }, "engines": { - "node": "10.* || 12.* || >= 14" + "node": "12.* || 14.* || >=16" }, "volta": { "extends": "../../package.json" diff --git a/packages/fastboot/package.json b/packages/fastboot/package.json index faa32316..fb98a257 100644 --- a/packages/fastboot/package.json +++ b/packages/fastboot/package.json @@ -56,7 +56,7 @@ "tmp": "^0.2.1" }, "engines": { - "node": "10.* || >=12" + "node": "12.* || 14.* || >=16" }, "volta": { "extends": "../../package.json" From 6a0e28cea3a3cf1957bcf56dfe6e117caf7ae935 Mon Sep 17 00:00:00 2001 From: Chris Manson Date: Fri, 28 May 2021 17:45:26 +0100 Subject: [PATCH 2/2] remove v10 and add v16 to node-version matrix --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d393a12c..dcf3bc95 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: strategy: matrix: - node-version: [14.x, 12.x, 10.x] + node-version: [16.x, 14.x, 12.x] os: [ubuntu-latest, windows-latest] steps: @@ -53,7 +53,7 @@ jobs: strategy: matrix: - node-version: [14.x, 12.x, 10.x] + node-version: [16.x, 14.x, 12.x] os: [ubuntu-latest, windows-latest] steps: @@ -66,7 +66,7 @@ jobs: - name: Yarn Install run: yarn install --ignore-engines --frozen-lockfile - name: Integration Tests - run: yarn workspace integration-tests test + run: yarn workspace integration-tests test test-packages: name: Test Packages @@ -74,7 +74,7 @@ jobs: strategy: matrix: - node-version: [14.x, 12.x, 10.x] + node-version: [16.x, 14.x, 12.x] os: [ubuntu-latest, windows-latest] steps: