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()

  • [Billing Beta] Rename payment sources to method methods. (#6959) by @panteliselef

    Updates localization keys from commerce -> billing and paymentSource to paymentMethod.

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

  • [Billing Beta] Replace forOrganizations: true with for: "organization" in <PricingTable/>. (#6978) by @panteliselef

Patch Changes

@clerk/[email protected]

Minor Changes

  • [Billing Beta] Rename payment sources to method methods. (#6959) by @panteliselef

    Updates localization keys from commerce -> billing and paymentSource to paymentMethod.

  • 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()

  • [Billing Beta] Rename payment sources to method methods. (#6959) by @panteliselef

    Updates localization keys from commerce -> billing and paymentSource to paymentMethod.

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

  • [Billing Beta] Replace forOrganizations: true with for: "organization" in <PricingTable/>. (#6978) by @panteliselef

Patch Changes

  • Add enterpriseConnectionId to SamlAccount and EnterpriseAccount resources (#6961) by @LauraBeatris

  • 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, 6e09786, aa7210c, 2cd53cd, 1a2eee6, 2cd53cd, 1a2430a, 31a04fc, 22b8e49, a66357e, dacc1af]:

@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 14, 2025 6:32pm

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: ee52ffc

@github-actions github-actions bot force-pushed the changeset-release/main branch from 13c0745 to ac884a5 Compare October 13, 2025 07:21
@github-actions github-actions bot force-pushed the changeset-release/main branch from ac884a5 to eaba018 Compare October 13, 2025 07:36
@github-actions github-actions bot force-pushed the changeset-release/main branch from eaba018 to 44be669 Compare October 13, 2025 10:29
@github-actions github-actions bot force-pushed the changeset-release/main branch from 44be669 to e9799ff Compare October 13, 2025 11:54
@github-actions github-actions bot force-pushed the changeset-release/main branch from e9799ff to aca44b1 Compare October 13, 2025 14:22
@github-actions github-actions bot force-pushed the changeset-release/main branch from aca44b1 to 476508c Compare October 13, 2025 16:14
@github-actions github-actions bot force-pushed the changeset-release/main branch from 476508c to eedea96 Compare October 13, 2025 17:14
@github-actions github-actions bot force-pushed the changeset-release/main branch from eedea96 to cf5376c Compare October 14, 2025 08:10
@github-actions github-actions bot force-pushed the changeset-release/main branch from cf5376c to dae6994 Compare October 14, 2025 09:54
@github-actions github-actions bot force-pushed the changeset-release/main branch from dae6994 to 79f8cd1 Compare October 14, 2025 16:04
@github-actions github-actions bot force-pushed the changeset-release/main branch from 79f8cd1 to ee52ffc Compare October 14, 2025 18:31
@LauraBeatris LauraBeatris reopened this Oct 14, 2025
@LauraBeatris LauraBeatris merged commit 070c25b into main Oct 14, 2025
39 checks passed
@LauraBeatris LauraBeatris deleted the changeset-release/main branch October 14, 2025 19:08
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.

5 participants