Version Packages - #336
Open
gtbuchanan[bot] wants to merge 1 commit into
Open
Conversation
gtbuchanan
Bot
force-pushed
the
changeset-release/main
branch
from
July 30, 2026 14:10
acfd09e to
27e089c
Compare
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
@gtbuchanan/eslint-config@0.4.0
Minor Changes
44daadb: Derive lint ignores from
.gitignoreconfigure()now reads.gitignorethrougheslint-config-flat-gitignoreand contributes the converted patterns as a global-ignores entry, so untracked paths — build output, caches, generated files — are never linted without being enumerated. Nested.gitignorefiles are discovered too, and a repo without one contributes no patterns instead of throwing.The new
gitignoreoption takesfalseto opt out, or aFlatGitignoreOptionsobject merged overdefaultGitignoreOptions.Because
.gitignorenow covers generated paths, the defaultignoreslist was narrowed to the tracked files another tool owns the format of: lockfiles — matched by naming convention rather than per package manager — andCHANGELOG.md. That list is exported asdefaultIgnoresso it can be spread when overriding, sinceignoresreplaces its default wholesale.Repos that pass
gitignore: falseand relied on the previous defaults to skip build output now have to list those paths themselves.@gtbuchanan/libsql-termux-shim@0.1.0
Minor Changes
@gtbuchanan/libsql-termux-shim, a stand-in for libsql's native bindingimplemented on
node:sqlite. libsql publishes no@libsql/android-arm64, sodependents such as promptfoo fail at startup on Termux; aliasing the missing
target to this package lets them run. Local databases only — embedded replicas
throw.