Skip to content

Conversation

clerk-cookie
Copy link
Collaborator

@clerk-cookie clerk-cookie commented Oct 6, 2025

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

@clerk/[email protected]

Minor Changes

Patch Changes

@clerk/[email protected]

Minor Changes

  • [Billing Beta] Rename payment source descriptors to use "payment method". (#6951) by @panteliselef

  • When fetching a new Session token, broadcast the token value to other tabs so they can pre-warm their in-memory Session Token cache with the most recent token. (#6891) by @jacekradko

  • Add support for sign up locale (#6915) by @guilherme6191

  • [Experimental] Fix signIn.password emailAddress parameter name. (#6932) by @dstaley

  • [Experimental] Fix issue where calling this.create() would not correctly propagate errors. (#6932) by @dstaley

  • [Billing Beta] Rename payment source to payment method. (#6865) by @panteliselef

    Clerk.user.initializePaymentSource() -> Clerk.user.initializePaymentMethod()
    Clerk.user.addPaymentSource() -> Clerk.user.addPaymentMethod()
    Clerk.user.getPaymentSources() -> Clerk.user.getPaymentMethods()

    Clerk.organization.initializePaymentSource() -> Clerk.organization.initializePaymentMethod()
    Clerk.organization.addPaymentSource() -> Clerk.organization.addPaymentMethod()
    Clerk.organization.getPaymentSources() -> Clerk.organization.getPaymentMethods()

  • Introduce experimental step to choose enterprise connection on sign-in/sign-up (#6947) by @LauraBeatris

Patch Changes

@clerk/[email protected]

Minor Changes

  • Introduce experimental step to choose enterprise connection on sign-in/sign-up (#6947) by @LauraBeatris

Patch Changes

@clerk/[email protected]

Minor Changes

Patch Changes

@clerk/[email protected]

Minor Changes

  • Added support for TanStack Start v1 RC! Includes a new clerkMiddleware() global middleware replacing the custom server handler. (#6859) by @wobsoriano

    Usage:

    1. Create a src/start.ts file and add clerkMiddleware() to the list of request middlewares:
    // src/start.ts
    import { clerkMiddleware } from '@clerk/tanstack-react-start/server';
    import { createStart } from '@tanstack/react-start';
    
    export const startInstance = createStart(() => {
      return {
        requestMiddleware: [clerkMiddleware()],
      };
    });
    1. Add <ClerkProvider> to your root route
    // src/routes/__root.tsx
    import { ClerkProvider } from '@clerk/tanstack-react-start'
    
    export const Route = createRootRoute({...})
    
    function RootDocument({ children }: { children: React.ReactNode }) {
      return (
        <ClerkProvider>
          <html>
            <head>
              <HeadContent />
            </head>
            <body>
              {children}
              <Scripts />
            </body>
          </html>
        </ClerkProvider>
      )
    }

    The getAuth() helper is now auth() and can now be called within server routes and functions, without passing a Request object:

    import { auth } from '@clerk/tanstack-react-start/server';
    
    const authStateFn = createServerFn().handler(async () => {
      const { userId } = await auth();
    
      if (!userId) {
        throw redirect({
          to: '/sign-in',
        });
      }
    
      return { userId };
    });
    
    export const Route = createFileRoute('/')({
      component: Home,
      beforeLoad: async () => await authStateFn(),
      loader: async ({ context }) => {
        return { userId: context.userId };
      },
    });

Patch Changes

@clerk/[email protected]

Minor Changes

  • [Billing Beta] Rename payment source descriptors to use "payment method". (#6951) by @panteliselef

  • Add support for sign up locale (#6915) by @guilherme6191

  • [Experimental] Fix signIn.password emailAddress parameter name. (#6932) by @dstaley

  • [Experimental] Fix issue where calling this.create() would not correctly propagate errors. (#6932) by @dstaley

  • [Billing Beta] Rename payment source to payment method. (#6865) by @panteliselef

    Clerk.user.initializePaymentSource() -> Clerk.user.initializePaymentMethod()
    Clerk.user.addPaymentSource() -> Clerk.user.addPaymentMethod()
    Clerk.user.getPaymentSources() -> Clerk.user.getPaymentMethods()

    Clerk.organization.initializePaymentSource() -> Clerk.organization.initializePaymentMethod()
    Clerk.organization.addPaymentSource() -> Clerk.organization.addPaymentMethod()
    Clerk.organization.getPaymentSources() -> Clerk.organization.getPaymentMethods()

  • Introduce experimental step to choose enterprise connection on sign-in/sign-up (#6947) by @LauraBeatris

Patch Changes

  • Add success text descriptor to otp input field. (#6958) by @alexcarpenter

    • Add experimental property last_authenticated_at to SamlAccount resource, which represents the date when the SAML account was last authenticated (#6954) by @LauraBeatris

    • Add experimental support for enterprise_sso as a strategy param for session.prepareFirstFactorVerification

@clerk/[email protected]

Patch Changes

@clerk/[email protected]

Patch Changes

@clerk/[email protected]

Patch Changes

@clerk/[email protected]

Patch Changes

@clerk/[email protected]

Patch Changes

@clerk/[email protected]

Patch Changes

@clerk/[email protected]

Patch Changes

@clerk/[email protected]

Patch Changes

@clerk/[email protected]

Patch Changes

@clerk/[email protected]

Patch Changes

@clerk/[email protected]

Patch Changes

@clerk/[email protected]

Patch Changes

@clerk/[email protected]

Patch Changes

  • [Billing Beta] Rename payment source to payment method. (#6865) by @panteliselef

    Clerk.user.initializePaymentSource() -> Clerk.user.initializePaymentMethod()
    Clerk.user.addPaymentSource() -> Clerk.user.addPaymentMethod()
    Clerk.user.getPaymentSources() -> Clerk.user.getPaymentMethods()

    Clerk.organization.initializePaymentSource() -> Clerk.organization.initializePaymentMethod()
    Clerk.organization.addPaymentSource() -> Clerk.organization.addPaymentMethod()
    Clerk.organization.getPaymentSources() -> Clerk.organization.getPaymentMethods()

  • Introduce deprecation warning for LocalStorageBroadcastChannel (#6891) by @jacekradko

  • Updated dependencies [65b7cc7, aa7210c, 2cd53cd, 1a2eee6, 2cd53cd, 1a2430a, 22b8e49, a66357e]:

@clerk/[email protected]

Patch Changes

@clerk/[email protected]

Patch Changes

@clerk/[email protected]

Patch Changes

Copy link

vercel bot commented Oct 6, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
clerk-js-sandbox Ready Ready Preview Comment Oct 10, 2025 8:26pm

Copy link
Contributor

coderabbitai bot commented Oct 6, 2025

Important

Review skipped

Ignore keyword(s) in the title.

⛔ Ignored keywords (1)
  • ci(repo): Version packages

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

✨ Finishing touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch changeset-release/main

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link

pkg-pr-new bot commented Oct 6, 2025

Open in StackBlitz

@clerk/agent-toolkit

npm i https://pkg.pr.new/@clerk/agent-toolkit@6933

@clerk/astro

npm i https://pkg.pr.new/@clerk/astro@6933

@clerk/backend

npm i https://pkg.pr.new/@clerk/backend@6933

@clerk/chrome-extension

npm i https://pkg.pr.new/@clerk/chrome-extension@6933

@clerk/clerk-js

npm i https://pkg.pr.new/@clerk/clerk-js@6933

@clerk/dev-cli

npm i https://pkg.pr.new/@clerk/dev-cli@6933

@clerk/elements

npm i https://pkg.pr.new/@clerk/elements@6933

@clerk/clerk-expo

npm i https://pkg.pr.new/@clerk/clerk-expo@6933

@clerk/expo-passkeys

npm i https://pkg.pr.new/@clerk/expo-passkeys@6933

@clerk/express

npm i https://pkg.pr.new/@clerk/express@6933

@clerk/fastify

npm i https://pkg.pr.new/@clerk/fastify@6933

@clerk/localizations

npm i https://pkg.pr.new/@clerk/localizations@6933

@clerk/nextjs

npm i https://pkg.pr.new/@clerk/nextjs@6933

@clerk/nuxt

npm i https://pkg.pr.new/@clerk/nuxt@6933

@clerk/clerk-react

npm i https://pkg.pr.new/@clerk/clerk-react@6933

@clerk/react-router

npm i https://pkg.pr.new/@clerk/react-router@6933

@clerk/remix

npm i https://pkg.pr.new/@clerk/remix@6933

@clerk/shared

npm i https://pkg.pr.new/@clerk/shared@6933

@clerk/tanstack-react-start

npm i https://pkg.pr.new/@clerk/tanstack-react-start@6933

@clerk/testing

npm i https://pkg.pr.new/@clerk/testing@6933

@clerk/themes

npm i https://pkg.pr.new/@clerk/themes@6933

@clerk/types

npm i https://pkg.pr.new/@clerk/types@6933

@clerk/upgrade

npm i https://pkg.pr.new/@clerk/upgrade@6933

@clerk/vue

npm i https://pkg.pr.new/@clerk/vue@6933

commit: cb56850

@github-actions github-actions bot force-pushed the changeset-release/main branch from 1c8591e to 114cbc6 Compare October 9, 2025 12:35
@github-actions github-actions bot force-pushed the changeset-release/main branch from 114cbc6 to 8347402 Compare October 9, 2025 12:43
@github-actions github-actions bot force-pushed the changeset-release/main branch from 8347402 to 20472df Compare October 9, 2025 14:08
@github-actions github-actions bot force-pushed the changeset-release/main branch from 20472df to 9e220ad Compare October 9, 2025 14:30
@github-actions github-actions bot force-pushed the changeset-release/main branch from 9e220ad to 8bb9864 Compare October 9, 2025 15:57
@github-actions github-actions bot force-pushed the changeset-release/main branch from 8bb9864 to ad99be3 Compare October 9, 2025 17:06
@github-actions github-actions bot force-pushed the changeset-release/main branch from ad99be3 to 5b930e4 Compare October 9, 2025 17:44
@github-actions github-actions bot force-pushed the changeset-release/main branch from 5b930e4 to 707c2a9 Compare October 9, 2025 20:13
@samueldrai
Copy link

Hi!
Is there any other blocking issue before this PR can be merged? Happy to help if that's the case.

@panteliselef
Copy link
Member

this is resolved

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants