chore: version packages#70
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
2 times, most recently
from
July 21, 2026 20:09
23d1c35 to
9a44eb1
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 21, 2026 21:11
9a44eb1 to
dbb5d1f
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.9.0
Minor Changes
seamless config oauth-providers <list|add|update|remove>for per-provider OAuth management, backed by the auth API's dedicated provider routes (GET/POST /system-config/oauth-providers,PATCH/DELETE /system-config/oauth-providers/:id). Each command touches a single provider, so concurrent edits no longer clobber the wholeoauth_providersarray the wayconfig set oauth_providers/config applydo.addandupdateaccept an inline JSON object or--file <path>;removeconfirms first (skip with--yes). Client secrets stay server-side: providers are referenced byclientSecretEnvand the secret value is never sent. The whole-config editor commands are unchanged.seamless login --localfor self-hosted and local instances. It asks the instance to return the email or phone OTP in the response body instead of sending it, then verifies with that code automatically, so logins work without a real mail or SMS provider. It only runs against local hosts and requires the auth API to run outside production withALLOW_UNCREDENTIALED_DELIVERY_SECRETS=true.Patch Changes
seamless loginrejecting valid email OTP codes. Email OTPs are six letters, but the code prompt only accepted digits, so no real email code could be entered. The prompt is now channel-aware: it accepts a six-letter code (case-insensitive, normalized to uppercase) for email logins and a numeric code for phone logins, with matching placeholder text.seamless verify --local) failing to build after the ecosystem moved to Express 5 on Node 24. The verify adapter app pinnedexpress@^4, but@seamless-auth/expressnow requiresexpress@>=5as a peer, so installing the locally-built SDK tarball aborted with anERESOLVEpeer conflict and the Docker build failed. The adapter now depends onexpress@^5.1.0(and@seamless-auth/express@^0.8.0), and the verify Docker images are bumped fromnode:20tonode:24to match the ecosystem's supported runtime.