From 1b286688c354fa8465aef82ee782e3b45b7e7332 Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Tue, 17 Jan 2023 14:57:50 +0100 Subject: [PATCH] chore: drop EOL Node versions (#532) --- .github/workflows/nodejs.yml | 2 +- CHANGELOG.md | 2 ++ package.json | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 0ce338b0..2d430a27 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [10.x, 12.x, 14.x, 16.x, 17.x, 18.x, 19.x] + node-version: [14.x, 16.x, 18.x, 19.x] os: [ubuntu-latest, windows-latest, macOS-latest] runs-on: ${{ matrix.os }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f469b90..89b0707b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ project adheres to [Semantic Versioning](http://semver.org/). ### Breaking +- drop support for Node.js versions 10, 12 and 17 + ### Changed - changed: updated the sample output in `example/default-metrics.js` diff --git a/package.json b/package.json index 34cf6c5e..4929cc14 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "index.d.ts" ], "engines": { - "node": ">=10" + "node": ">=14" }, "scripts": { "benchmarks": "node ./benchmarks/index.js",