From 6f220f37497c22779df895f814a7716f30d1d9ce Mon Sep 17 00:00:00 2001 From: Michael Rochester Date: Wed, 24 Jul 2024 08:42:09 +0100 Subject: [PATCH 1/2] feat(node): remove support for 14 and 16, add for 20 and 22 BREAKING CHANGE : remove support for 14 and 16. Although we are removing support for these versions, this package may still work with the versions until we add some feature that requires newer nodeJS --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 63e3818..a611084 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: tests: strategy: matrix: - node: [ '14.x', '16.x', '18.x' ] + node: [ '18.x', '20.x', '22.x' ] os: [ ubuntu-latest, windows-latest, macos-latest ] runs-on: ${{ matrix.os }} name: Node ${{ matrix.node }} - ${{ matrix.os }} From a0e5e0b97657f31360ceba1dfe277b7cba859a0d Mon Sep 17 00:00:00 2001 From: Michael Rochester Date: Wed, 24 Jul 2024 08:43:32 +0100 Subject: [PATCH 2/2] feat(node): remove support for 14 and 16, add for 20 and 22 --- .github/workflows/health-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/health-check.yml b/.github/workflows/health-check.yml index ce9c074..ba6e362 100644 --- a/.github/workflows/health-check.yml +++ b/.github/workflows/health-check.yml @@ -9,7 +9,7 @@ jobs: tests: strategy: matrix: - node: [ '14.x', '16.x', '18.x' ] + node: [ '18.x', '20.x', '22.x' ] os: [ ubuntu-latest, windows-latest, macos-latest ] runs-on: ${{ matrix.os }} name: Node ${{ matrix.node }} - ${{ matrix.os }}