Version Packages#36
Merged
Merged
Conversation
kulesy
approved these changes
May 19, 2026
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
sqlite-level@2.1.0
Minor Changes
06e0c9d: Bump
better-sqlite3from^11.8.1to^12.10.0so consumers pick up Node-24 (NODE_MODULE_VERSION 137) prebuilt binaries. Thebetter-sqlite3v11.x line tops out at Node 23 prebuilts (node-v131), so a freshnpm installon Node 24 falls back tonode-gyp rebuildand fails without a local Python + C++ toolchain (see tinacms/tinacms#6686).better-sqlite3@12adds Node 24 to its build matrix and drops EOL Node 18 — no API changes affectSqliteLevel's usage ofDatabase,prepare,exec, oriterate.Platform-support narrowing — please read if you're on Node 20 or 23:
This caret pin (
^12.10.0) resolves tobetter-sqlite3@12.10.0, whose release notes call out: "Add support for Node.js v26 prebuilds and remove EOL builds (Node.js v20, v23)". So the prebuild matrix is now Node 22, 24, 25, 26 only. Consumers on:node-gyp rebuildand require a local Python + C++ toolchain. Same failure mode this PR fixes for Node 24, just on a different Node major. Upgrading to Node 22 LTS is the recommended path.enginesfield. Was already not picking up Node 18 prebuilds.Tina-first-party consumers (TinaCloud content-api, TinaCMS's
@tinacms/search, thetina-self-hosted-demoexample) all target Node 22+ and are unaffected.Picks up the work in #25 (closed unmerged), now rebased onto the post-ESM v2.0.0 main.