chore: version packages - #204
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
September 13, 2026 15:52
1ba65f1 to
c85fd03
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-cli@0.16.0
Minor Changes
b9529c6:
seamless initlearns themobiletemplate kind.seamless-templatesgains a third kind next towebandapi, starting with an Expo (ReactNative) starter. The CLI treated an unknown kind as if it were not there: the alias resolver
skipped it, the prompts never offered it, and
verifyfiltered it out without a word.A mobile starter is optional.
initasks "Mobile app" after the backend, defaulting to none;--mobile=<id|alias>(or the bare alias,--mobile/--expo) includes one;--yesscaffoldswithout, since a native app brings prerequisites (an associated domain for passkeys) an
unattended run should not opt into; and a registry that predates the kind offers nothing, so
there is no question to ask. A chosen starter lands at
mobile/with its.envfilled from themanifest, is recorded as
services.mobileinseamless.config.json, is checked byseamless checkonly when recorded, and is called out in the success output with how to start it and theAndroid emulator host.
verifyannounces the mobile templates it cannot drive instead offiltering them silently. Template copying skips
.expo,ios, andandroid.The templates registry pin moves to the release that carries the starter in a follow-up.
Patch Changes
4bbf7ac:
seamless verify --localpacks@seamless-auth/clientalongside@seamless-auth/reactwhen the React SDK checkout is an npm workspace.
The client SDK repo is becoming a workspace that publishes a framework-agnostic
@seamless-auth/clientnext to@seamless-auth/react, and the react tarball depends onthe client one. Packing only the root of such a checkout would produce the private root
package, and installing the react tarball alone would go to the registry for a client
version that is not published yet. The harness now reads
workspacesfrom the checkout'spackage.json, packs both packages when it finds one, and the react image installs everytarball in one
npm installso the dependency resolves from the sibling file. A checkoutthat predates the workspace is packed as before. The version line reported for
@seamless-auth/reactreads the react package's own manifest in a workspace.