chore: version packages - #32
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 31, 2026 03:24
49d7cbb to
fa428f6
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
seamless-templates@0.8.0
Minor Changes
6abdb46: Move the templates onto the Seamless SDK releases that let a user finish registration without a
passkey.
Registration used to end on a screen with one control on it. A user who did not want a passkey, or
whose device could not make one, had no way forward.
@seamless-auth/react0.8.0 offers a skip whenthe instance has a login method other than
passkeyenabled, and says plainly when it does not.The web and API templates have to move together for that to work. The skip is gated on reading
GET /system-config/publicfrom the auth server, and the adapters serve routes from an explicitlist, so the React templates on 0.8.0 need an API template that proxies the new route. A web
template upgraded on its own would read nothing, and fall back to showing no skip at all.
@seamless-auth/react0.7.0 to 0.8.0 in both React templates@seamless-auth/express0.11.0 to 0.12.0@seamless-auth/fastify0.2.0 to 0.3.0Patch Changes
71fb00b: Fix two boot-time footguns in the Fastify API starter.
PORTis read with||rather than??, so an emptyPORT=in.envfalls back to 3000. Itpreviously reached
Number(""), which is0, and Fastify binds port 0 to a random free port, so theAPI came up somewhere nobody was looking.
pino-prettymoves fromdevDependenciestodependencies. The logger loads it for anyNODE_ENVother than
production, so an install that omitted dev dependencies, which is the usual shape of astaging deploy, failed to boot on a missing transport target.