chore: version packages - #46
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 29, 2026 07:17
9535174 to
f4d26f5
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 29, 2026 08:01
f4d26f5 to
63fbf27
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 the packages will be published to npm 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
bna-ui@3.1.0
Minor Changes
8a71548Thanks @ahmedbna! - Addbna-ui mcpandbna-ui info.bna-ui mcpruns an MCP server over the registry, so Claude Code, Cursor,VS Code and other assistants can list, search and read components — including
props, usage and full source — instead of recalling the library from training
data or scraping the docs site. It reuses the same registry client as
add, soit shares the
~/.cache/bna-uiETag cache, honours--registryandBNA_UI_REGISTRY, and works offline against a warm cache. It never writes todisk:
get_install_planreturns the command for you to run.bna-ui info <component>prints the same bundle for agents that cannot speakMCP, with
--jsonfor piping.Requires a registry serving
/r/ai/*.json, so deploy the docs site first.1c4dfd2Thanks @ahmedbna! - Addbna-ui convex --no-auth, a Convex scaffold with no authentication.bna-ui convexpreviously had one shape: a Convex backend with@convex-dev/authwired in — Google, Apple, password and email OTP — and no way to opt out. Getting
a plain Convex backend meant scaffolding the auth starter and deleting six
sign-in screens, eight
convex/modules and seven npm dependencies.--no-authnow scaffolds a backend-only variant: ataskstable, a live queryand the mutations behind it, rendered on the home tab so the first run shows the
backend working.
ConvexProviderreplacesConvexAuthProvider, and the onlydependency added over the plain Expo starter is
convex.Bare
npx bna-ui convexis unchanged and still produces the full auth setup. Italso now prints the
AUTH_RESEND_KEYcommand on completion — email OTP andpassword reset fail silently without it, and nothing in the flow asked for it
before.