diff --git a/.github/workflows/pull_request_review.yml b/.github/workflows/pull_request_review.yml index e7ac4b0d..0a60fc6b 100644 --- a/.github/workflows/pull_request_review.yml +++ b/.github/workflows/pull_request_review.yml @@ -13,7 +13,7 @@ jobs: build: strategy: matrix: - node: [12.x, 14.x] + node: [14.x] os: ['ubuntu-latest', 'windows-2019', 'macos-latest'] runs-on: ${{ matrix.os }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e0ae42b..6768554f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ### Draft +### 5.0.0 (2022-06-06) + +- feat: strf-9791 Drop Node 12 Support ([x](https://github.com/bigcommerce/stencil-cli/pull/x)) + ### 4.1.1 (2022-05-24) - fix: strf-9781 Bump dev packages for linting ([932](https://github.com/bigcommerce/stencil-cli/pull/932)) diff --git a/README.md b/README.md index cecaedd5..05699a45 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ The BigCommerce server emulator for local theme development. ## Install _Note: Stencil requires the Node.js runtime environment, -version 12.x and 14.x (Recommended) are supported. +version 14.x is supported. We do not yet have support for versions greater than Node 14._ Run `npm install -g @bigcommerce/stencil-cli`. diff --git a/package-lock.json b/package-lock.json index e3de2b2f..a8815059 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@bigcommerce/stencil-cli", - "version": "4.1.1", + "version": "5.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 25b8ebf6..8d517b0b 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { "name": "@bigcommerce/stencil-cli", - "version": "4.1.1", + "version": "5.0.0", "description": "CLI tool to run BigCommerce Stores locally for theme development.", "main": "index.js", "engines": { - "node": ">=12.0.0 <15.0.0", + "node": ">=14.0.0 <15.0.0", "npm": ">=v6.11.3 <9.0.0" }, "scripts": {