Skip to content

ci(repo): Version packages#6933

Merged
LauraBeatris merged 1 commit intomainfrom
changeset-release/main
Oct 14, 2025
Merged

ci(repo): Version packages#6933
LauraBeatris merged 1 commit intomainfrom
changeset-release/main

Conversation

@clerk-cookie
Copy link
Copy Markdown
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/backend@2.18.0

Minor Changes

Patch Changes

@clerk/clerk-js@5.100.0

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

  • Ensure inputs are properly connected to feedback messages via aria-describedby usage. (#6914) by @alexcarpenter

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

    • Update checkbox checked background color and icon (#6934) by @alexcarpenter

    • Increase role select options contrast

    • Updates user preview subtitle text variant

  • 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

  • Only navigate to enterprise connections chooser when there are multiple enterprise_sso strategies as supported_first_factors (#6983) by @NicolasLopes7

  • Updated dependencies [65b7cc7, 6e09786, aa7210c, 2cd53cd, 1a2eee6, 2cd53cd, 1a2430a, 31a04fc, 9766c4a, 22b8e49, a66357e, 43a9c2b, dacc1af, b1ac445]:

    • @clerk/types@4.93.0
    • @clerk/shared@3.27.4
    • @clerk/localizations@3.26.0

@clerk/localizations@3.26.0

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/clerk-react@5.52.0

Minor Changes

Patch Changes

@clerk/tanstack-react-start@0.26.0

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/types@4.93.0

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/agent-toolkit@0.1.39

Patch Changes

@clerk/astro@2.13.7

Patch Changes

@clerk/chrome-extension@2.7.4

Patch Changes

@clerk/elements@0.23.70

Patch Changes

@clerk/clerk-expo@2.16.2

Patch Changes

@clerk/expo-passkeys@0.4.7

Patch Changes

@clerk/express@1.7.38

Patch Changes

@clerk/fastify@2.4.38

Patch Changes

@clerk/nextjs@6.33.4

Patch Changes

@clerk/nuxt@1.10.1

Patch Changes

@clerk/react-router@2.1.1

Patch Changes

@clerk/remix@4.13.4

Patch Changes

@clerk/shared@3.27.4

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/types@4.93.0

@clerk/testing@1.13.4

Patch Changes

@clerk/themes@2.4.26

Patch Changes

@clerk/vue@1.14.4

Patch Changes

@vercel
Copy link
Copy Markdown

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

@coderabbitai
Copy link
Copy Markdown
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.

@pkg-pr-new
Copy link
Copy Markdown

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 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
Copy Markdown

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

@panteliselef
Copy link
Copy Markdown
Contributor

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.

5 participants