From 2b717b28b645c55fa969e79878eabefd0222eb05 Mon Sep 17 00:00:00 2001 From: Curt Tudor Date: Thu, 9 Nov 2023 10:45:37 -0700 Subject: [PATCH] add support for NodeJS v21 --- .github/workflows/build.yml | 2 +- README.md | 1 + package.json | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3f4232b..54c5272 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,7 +45,7 @@ jobs: - { os: ubuntu-20.04, target: "linux", arch: "arm64" } - { os: macos-latest, target: "macos", arch: "x64" } - { os: macos-latest, target: "macos", arch: "arm64" } - node_ver: [ 16, 18, 19, 20] + node_ver: [ 16, 18, 19, 20, 21] fail-fast: false steps: diff --git a/README.md b/README.md index 7f8947c..f2768b3 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,7 @@ The `@openziti/ziti-sdk-nodejs` module works with the following Node.js versions - v18.x - v19.x - v20.x +- v21.x The `@openziti/ziti-sdk-nodejs` module works with the following architectures: - amd64 diff --git a/package.json b/package.json index 4b417ce..5877da0 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@openziti/ziti-sdk-nodejs", "description": "A NodeJS-based SDK for delivering secure applications over a Ziti Network", - "version": "0.14.1", + "version": "0.14.2", "main": "./lib/ziti", "scripts": { "build": "npm run build:init && npm run build:configure && npm run build:make",