From 3d9cc4f77a9758db8eecde3aca9c1975bce7cedc Mon Sep 17 00:00:00 2001 From: CD Cabrera Date: Thu, 18 Nov 2021 22:19:16 -0500 Subject: [PATCH] build(nodejs): remove node 12 support (#86) --- .github/workflows/commit_lint.yml | 2 +- .github/workflows/integration.yml | 2 +- CONTRIBUTING.md | 2 +- README.md | 2 +- package.json | 6 +++++- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/commit_lint.yml b/.github/workflows/commit_lint.yml index 0c109ac..e7fca3b 100644 --- a/.github/workflows/commit_lint.yml +++ b/.github/workflows/commit_lint.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [14.x] + node-version: [16.x] steps: - uses: actions/checkout@v2 with: diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 182e074..9d8c4f6 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [12.x, 14.x, 16.x] + node-version: [14.x, 16.x] steps: - uses: actions/checkout@v2 - name: Setup Node.js ${{ matrix.node-version }} diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 249f3f6..ec0f6f8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -9,7 +9,7 @@ commit messaging follow the format ### Build Requirements To setup your work environment you'll need to use - * [NodeJS version 12+](https://nodejs.org/) + * [NodeJS version 14+](https://nodejs.org/) * [Yarn 1.22+](https://yarnpkg.com) * And if you plan on making container contributions you may want to setup - [Docker](https://docs.docker.com/engine/installation/) or diff --git a/README.md b/README.md index 2eead16..048a61c 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ a delay to see how your codebase will handle loading scenarios with a balls slow ## Requirements The basic requirements: - * [NodeJS version 12+](https://nodejs.org/) + * [NodeJS version 14+](https://nodejs.org/) * Optionally your system could be running - [Yarn 1.22+](https://yarnpkg.com), otherwise NPM should be adequate. - [Docker](https://docs.docker.com/engine/installation/) diff --git a/package.json b/package.json index d99248f..a5b6dc3 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "url": "https://github.com/cdcabrera/apidoc-mock/issues" }, "engines": { - "node": ">=12.0.0" + "node": ">=14.0.0" }, "bin": { "mock": "./bin/cli.js" @@ -67,6 +67,10 @@ "type": "perf", "section": "Performance Improvements" }, + { + "type": "build", + "section": "Build Updates" + }, { "type": "chore", "section": "Maintenance"