From 2af08b5bdd5d5061994ec2d1b6abd2e0e44b6153 Mon Sep 17 00:00:00 2001 From: dhmlau Date: Wed, 20 May 2026 15:19:50 -0400 Subject: [PATCH] chore: drop Node.js 20 support BREAKING CHANGE: drop Node.js 20 support Signed-off-by: dhmlau --- .github/workflows/continuous-integration.yml | 2 +- package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 3bcd8cf..be62ea1 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -15,7 +15,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node-version: [20, 22, 24] + node-version: [22, 24, 26] fail-fast: false runs-on: ${{ matrix.os }} steps: diff --git a/package.json b/package.json index 5db0ba8..90d6827 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "3.0.9", "description": "LoopBack Connector common code for IBM databases", "engines": { - "node": ">=20" + "node": ">=22" }, "keywords": [ "IBM", @@ -45,5 +45,5 @@ "url": "https://github.com/strongloop/loopback-ibmdb/issues" }, "license": "Artistic-2.0", - "author": "IBM Corp." + "author": "IBM Corp. and LoopBack contributors" }