chore: update version and changelog#100
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
4 times, most recently
from
July 25, 2026 23:54
58926d4 to
3c83d46
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 25, 2026 23:55
3c83d46 to
30e9a08
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.4.0
Minor Changes
7ea0a9d: Add a
DISABLE_AUTH_RATE_LIMITStesting escape hatch.Beyond the configurable global limiter (
RATE_LIMIT), dedicated per-IP andper-identity limiters guard the OTP, magic-link, registration, and OAuth routes,
plus JWKS. An automated test or conformance suite driving many of these flows from
a single IP trips them. Setting
DISABLE_AUTH_RATE_LIMITS=truenow makes everyauth limiter skip. It is refused under
NODE_ENV=production(likeALLOW_UNCREDENTIALED_DELIVERY_SECRETS), so it can never weaken a deployed server.Defaults to off.
47282ee: Surface actionable OAuth callback failure codes.
The OAuth callback previously collapsed every profile failure into a generic
400 { error: 'OAuth login failed' }, so a user whose provider returned no email(the most common case, for example a GitHub account with no public email) had no
way to know what to fix. The callback now returns a stable machine-readable
codealongside the existing
errorstring for the curated, user-actionable cases:oauth_missing_email,oauth_email_not_verified, andoauth_missing_subject.Unexpected internal failures still return the generic message with no detail, and
the audit event records the specific reason instead of the blanket
callback_failedfor the known cases.8c218c4: Make admin system-config writes authoritative so they survive a restart.
Env-mapped
system_configrows are re-seeded from their environment variable onevery boot for any row whose
updatedByisNULL. Admin console writes wentthrough the access-token path, which never populated
updatedBy(only theservice-token path did), so a change made in the console (for example adding an
OAuth provider or enabling the
oauthlogin method) was silently reverted on thenext restart, contradicting the documented contract.
The whole-config
PATCH /system-config/adminand the per-provider/system-config/oauth-providersendpoints now record the acting admin's id inupdatedByon the access-token path, in addition to the existing service-tokenpath, so an admin change is genuinely authoritative and is no longer overwritten
from env. Boot now also logs a warning when it overwrites a stored value that
differs from the env-derived one, so the reseed is no longer silent.
docs/configuration.mdis updated to describe the real precedence.