chore: update version and changelog#89
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
3 times, most recently
from
July 20, 2026 18:32
67b56a5 to
be818c4
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 21, 2026 18:37
be818c4 to
5ae22b9
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
seamless-auth-api@0.3.0
Minor Changes
system_configor replacing the whole config array. New endpoints under the existing SystemConfig admin surface:GET /system-config/oauth-providers(list),POST /system-config/oauth-providers(add, 409 on duplicate id),PATCH /system-config/oauth-providers/:id(update, 404 on unknown id), andDELETE /system-config/oauth-providers/:id(remove, 404 on unknown id). Each route requires an admin access token (requireAdmin('read')for the list,requireAdmin('write')for mutations), validates againstOAuthProviderConfigSchema, invalidates the system-config cache after writes, and records asystem_config_updatedaudit event. Client secrets stay out of the API surface: providers continue to referenceclientSecretEnvand the routes never accept or return a raw secret. Providers remain editable through the existingPATCH /system-config/adminwhole-array patch, so this is additive.canReturnExternalDeliveryno longer treats a non-productionNODE_ENVas sufficient, so thex-seamless-auth-delivery-mode: externalheader must now be accompanied by anx-seamless-service-tokenthat passes issuer, audience, and subject validation.canReturnSensitiveDevelopmentDetailsis gated the same way. Local development that cannot present a service token can setALLOW_UNCREDENTIALED_DELIVERY_SECRETS=true, an explicit opt-in that is ignored whenNODE_ENV=production./consolesubpath on the API's own origin. Static serving is additive and gated behindSERVE_ADMIN_DASHBOARD(enabled by default): the admin API routes are registered first and keep priority, and an SPA history fallback returns the dashboardindex.htmlfor unmatched/consoleand/console/*navigations, with correct MIME types, long-lived immutable caching for hashed assets, andno-storeon the shell./consoleis used instead of/adminso the SPA namespace never overlaps the admin API under/admin/*. The Docker image builds the dashboard from a pinned git ref (theSEAMLESS_ADMIN_DASHBOARD_REFbuild ARG) with base path/consoleand copies it into the runtime image. No CORS changes are needed because the dashboard is same-origin.Patch Changes
Response validation failedobject and leaked internal Zod issues to clients. It now logs the drift server-side and returns the controller's intended response unchanged.audclaim on signed user tokens.signAccessToken,signRefreshToken, andsignEphemeralTokennow call.setAudience(ISSUER)in addition to.setIssuer(ISSUER). The Seamless adapter verifies signed auth responses withaud === audience, and the deployment contract requires the adopter'saudienceto equal itsauthServerUrl, which is byte-identical to this server'sISSUER. Without the claim, jose rejects every token the adapter checks, so login, registration, OAuth, OTP, magic-link, and organization-switch all fail once the adapter's audience binding ships. The claim is additive and ignored by verifiers that do not check it.