From 8edcf74a089c425ccbe2ceb8e6598ee3e4f0116f Mon Sep 17 00:00:00 2001 From: Prabhu Subramanian Date: Tue, 10 Mar 2026 08:04:29 +0100 Subject: [PATCH 1/2] target lowest napi Signed-off-by: Prabhu Subramanian --- .github/workflows/ci.yml | 19 ------------------- package.json | 4 ++-- 2 files changed, 2 insertions(+), 21 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c8a5cf7..00e0f63 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,6 @@ jobs: - x64 node: - 20 - - 24 include: - os: macos-latest node: 20 @@ -42,18 +41,6 @@ jobs: node: 20 host: arm64 target: arm64 - - os: macos-latest - node: 24 - host: arm64 - target: arm64 - - os: ubuntu-22.04-arm - node: 24 - host: arm64 - target: arm64 - - os: windows-11-arm - node: 24 - host: arm64 - target: arm64 name: ${{ matrix.os }} (host=${{ matrix.host }}, target=${{ matrix.target }}) steps: @@ -131,16 +118,10 @@ jobs: variant: - alpine3.20 include: - - target: linux/arm64 - variant: alpine3.21 - node: 22 # musl x64 builds - target: linux/amd64 variant: alpine3.20 node: 20 - - target: linux/amd64 - variant: alpine3.21 - node: 22 name: ${{ matrix.variant }} (node=${{ matrix.node }}, target=${{ matrix.target }}) steps: - uses: actions/checkout@v4 diff --git a/package.json b/package.json index 6a3fee9..556ed09 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@appthreat/sqlite3", "description": "Asynchronous, non-blocking SQLite3 bindings. Modern rewrite of TryGhost/node-sqlite3", - "version": "8.0.0", + "version": "8.0.1", "homepage": "https://github.com/AppThreat/node-sqlite3", "author": "Team AppThreat ", "binary": { @@ -44,7 +44,7 @@ }, "scripts": { "install": "node-gyp-build", - "prebuild": "prebuildify --napi --strip", + "prebuild": "prebuildify --target node@20.20.1 --no-napi --strip", "rebuild": "node-gyp rebuild", "test": "node test/support/createdb.js && mocha -R spec --timeout 480000" }, From 4cf8ae8aa38b9194c6871eebcfe0b079f8559bc6 Mon Sep 17 00:00:00 2001 From: Prabhu Subramanian Date: Tue, 10 Mar 2026 10:08:19 +0100 Subject: [PATCH 2/2] target lowest napi Signed-off-by: Prabhu Subramanian --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 556ed09..17fd421 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ }, "scripts": { "install": "node-gyp-build", - "prebuild": "prebuildify --target node@20.20.1 --no-napi --strip", + "prebuild": "prebuildify --napi --strip", "rebuild": "node-gyp rebuild", "test": "node test/support/createdb.js && mocha -R spec --timeout 480000" },