ci(repo): Version Packages - #403
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 31, 2026 14:52
ee467f0 to
1ee47c5
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 31, 2026 18:14
1ee47c5 to
74d9dbf
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
clerk@3.0.0
Major Changes
Make keyless mode the default for unauthenticated
clerk initruns on keyless-capable frameworks, and let an unclaimed keyless application be configured end to end without an account. (#395) by @rafa-thaytoclerk initwhile signed out now bootstraps with auto-generated development keys instead of forcing a browser login; runningclerk auth loginlater claims the application.--keylessforces keyless mode even when signed in,--loginforces the authenticated flow, and--template <b2b-saas|b2c-saas|native|waitlist>shapes the application at creation. Re-running init keeps an existing unclaimed application — whetherclerk initor a Clerk SDK minted it — unless--freshexplicitly asks for a replacement.clerk config pullandclerk config patchwork on an unclaimed application through the Backend API, addressing its resources directly:instance,communication,restrictions,organization_settings,protect,oauth_application_settings, andinstance_settings. Unsupported groups and unrecognizedinstancefields exit with a usage error naming what the API accepts, instead of printing success while the write was silently dropped; applied writes are verified against the API's own response.clerk enable orgs/disable orgs,clerk whoami,clerk env pull,clerk doctor,clerk open,clerk users, andclerk apiall operate on an unclaimed keyless application, resolving the project's own secret key from its env files or the SDK's.clerk/.tmp/keyless.json. An exportedCLERK_SECRET_KEYkeeps its existing precedence, including over a linked profile. Commands that genuinely need a claimed application (billing,config put,config schema,users open) say so and name the reason instead of failing with "not linked".clerk whoamiandclerk env pulldetect a publishable/secret key pair belonging to two different applications —whoamiwarns,env pullrefuses to write the pair.whoamiin an unlinked directory also points out a local secret key when one is present, sinceclerk apiandclerk userswill use that key's instance rather than the signed-in account.Minor Changes
Close the
clerk initframework scaffolding gaps. (#394) by @rafa-thayto<ClerkProvider>and the secure token cache, andclerk init --starter --framework expobootstraps a new Expo app.clerkMiddleware()/clerkPluginwired into the server entry file (ESM and CommonJS), plus the request type augmentation for TypeScript Express apps.clerk init --framework ios|androidis accepted; init links the app, pulls API keys, and prints the exact SDK setup steps.Patch Changes
clerk users createconfirm before writing. The command registers--yesas "Skip confirmation prompt" and its examples recommend passing it, but no prompt existed, so the flag did nothing and the user was created immediately. Human mode now previews the redacted request body and asks before the POST. Agent mode is unchanged: it never prompts, so--dry-runremains the safety net there. (#400) by @manovotny