fix: bump better-sqlite3 to 12.10.1 for Node 26 compatibility#1827
Open
0xSkybreaker wants to merge 1 commit into
Open
fix: bump better-sqlite3 to 12.10.1 for Node 26 compatibility#18270xSkybreaker wants to merge 1 commit into
0xSkybreaker wants to merge 1 commit into
Conversation
fix: bump better-sqlite3 to 12.10.1 for Node 26 compatibility better-sqlite3@12.6.2 only supports Node 20.x–25.x. Node 26.x fails to load the native binding, causing a server crash loop on startup. better-sqlite3@12.10.1 adds prebuilt binaries for Node 26 (ABI 147). Fixes decolua#1812 Co-Authored-By: Claude <noreply@anthropic.com> @
bloodf
pushed a commit
to bloodf/9router
that referenced
this pull request
Jun 19, 2026
… for Node 26 compatibility
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
@
Summary
Fixes #1812 —
better-sqlite3@12.6.2does not support Node 26.x, causing a server crash loop on startup.Problem
better-sqlite3@12.6.2enginesfield is20.x || 22.x || 23.x || 24.x || 25.x. On Node 26.x, the native binding fails to load:Fix
One-line change in
cli/hooks/sqliteRuntime.js: bumpBETTER_SQLITE3_VERSIONfrom12.6.2to12.10.1, which adds prebuilt binaries for Node 26 (ABI 147).Verification
better-sqlite3@12.10.1ships prebuilt binaries for Node 26package.jsonoptionalDependency range^12.6.2already covers12.10.1🤖 Generated with Claude Code
@