From 22f1dd5c63ab8439aaa025f0b6ee5a37173b7295 Mon Sep 17 00:00:00 2001 From: danielpeintner Date: Fri, 8 Sep 2023 11:48:01 +0200 Subject: [PATCH 1/4] chore: disable Node.js 16 --- .github/workflows/ci-full.yaml | 2 +- .github/workflows/ci.yaml | 2 +- README.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-full.yaml b/.github/workflows/ci-full.yaml index 854c052c1..6163db521 100644 --- a/.github/workflows/ci-full.yaml +++ b/.github/workflows/ci-full.yaml @@ -8,7 +8,7 @@ jobs: strategy: matrix: os: [macos-latest, ubuntu-latest, windows-latest] - node-version: [16.x, 18.x, 20.x] + node-version: [18.x, 20.x] steps: - name: Checkout diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 209bb9480..86493d03e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,7 +8,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node-version: [16.x, 18.x, 20.x] + node-version: [18.x, 20.x] steps: - name: Checkout diff --git a/README.md b/README.md index 21a73413c..2d316bd9f 100644 --- a/README.md +++ b/README.md @@ -99,9 +99,9 @@ cs.addCodec(new MyCodec("application/myType")); ### To use with Node.js -> **Warning**: We no longer actively support Node.js version 14 and lower. +> **Warning**: We no longer actively support Node.js version 16 and lower. -- [Node.js](https://nodejs.org/) version 14+ +- [Node.js](https://nodejs.org/) version 16+ - [npm](https://www.npmjs.com/) version 7+ #### Linux From e4129dfe52edfcf015a0e3bfac8ae3ed634c5c16 Mon Sep 17 00:00:00 2001 From: danielpeintner Date: Fri, 8 Sep 2023 11:53:14 +0200 Subject: [PATCH 2/4] chore: update node versions of GitHub workflow also --- .github/workflows/ci-full.yaml | 8 ++++---- .github/workflows/ci.yaml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci-full.yaml b/.github/workflows/ci-full.yaml index 6163db521..1ca67e11e 100644 --- a/.github/workflows/ci-full.yaml +++ b/.github/workflows/ci-full.yaml @@ -38,10 +38,10 @@ jobs: - name: Checkout uses: actions/checkout@v2 - - name: Use Node.js 16 + - name: Use Node.js 18 uses: actions/setup-node@v1 with: - node-version: 16 + node-version: 18 - name: Install run: npm ci @@ -54,10 +54,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - - name: install node v16 + - name: install node v18 uses: actions/setup-node@v1 with: - node-version: 16 + node-version: 18 - name: verify packages version consistency accross sub-modules run: npm run check:versions diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 86493d03e..abd87e08a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -38,10 +38,10 @@ jobs: - name: Checkout uses: actions/checkout@v2 - - name: Use Node.js 16 + - name: Use Node.js 18 uses: actions/setup-node@v1 with: - node-version: 16 + node-version: 18 - name: Install run: npm ci @@ -54,10 +54,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - - name: install node v16 + - name: install node v18 uses: actions/setup-node@v1 with: - node-version: 16 + node-version: 18 - name: verify packages version consistency accross sub-modules run: npm run check:versions From 10477f51018163926ac595c53844eebea3238b55 Mon Sep 17 00:00:00 2001 From: danielpeintner Date: Mon, 11 Sep 2023 17:24:30 +0200 Subject: [PATCH 3/4] chore: increase to NPM 9 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2d316bd9f..e02b02d04 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,7 @@ cs.addCodec(new MyCodec("application/myType")); > **Warning**: We no longer actively support Node.js version 16 and lower. - [Node.js](https://nodejs.org/) version 16+ -- [npm](https://www.npmjs.com/) version 7+ +- [npm](https://www.npmjs.com/) version 9+ #### Linux From a8c1ea4185617f80f9ff5b5b4ce4a10638562d28 Mon Sep 17 00:00:00 2001 From: Cristiano Aguzzi Date: Tue, 12 Sep 2023 16:35:59 +0200 Subject: [PATCH 4/4] fix(README): minimum node version Co-authored-by: Jan Romann --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e02b02d04..a2811e500 100644 --- a/README.md +++ b/README.md @@ -101,7 +101,7 @@ cs.addCodec(new MyCodec("application/myType")); > **Warning**: We no longer actively support Node.js version 16 and lower. -- [Node.js](https://nodejs.org/) version 16+ +- [Node.js](https://nodejs.org/) version 18+ - [npm](https://www.npmjs.com/) version 9+ #### Linux