Skip to content

Conversation

clerk-cookie
Copy link
Collaborator

@clerk-cookie clerk-cookie commented Sep 23, 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]

Major Changes

  • Introduce React Router middleware support with clerkMiddleware() for improved performance and streaming capabilities. (#6660) by @wobsoriano

    Usage of rootAuthLoader without the clerkMiddleware() installed is now deprecated and will be removed in the next major version.

    Before (Deprecated - will be removed):

    import { rootAuthLoader } from '@clerk/react-router/ssr.server';
    
    export const loader = (args: Route.LoaderArgs) => rootAuthLoader(args);

    After (Recommended):

    1. Enable the v8_middleware future flag:
    // react-router.config.ts
    export default {
      future: {
        v8_middleware: true,
      },
    } satisfies Config;
    1. Use the middleware in your app:
    import { clerkMiddleware, rootAuthLoader } from '@clerk/react-router/server';
    
    export const middleware: Route.MiddlewareFunction[] = [clerkMiddleware()];
    
    export const loader = (args: Route.LoaderArgs) => rootAuthLoader(args);

    Streaming Support (with middleware):

    export const middleware: Route.MiddlewareFunction[] = [clerkMiddleware()];
    
    export const loader = (args: Route.LoaderArgs) => {
      const nonCriticalData = new Promise(res => setTimeout(() => res('non-critical'), 5000));
    
      return rootAuthLoader(args, () => ({
        nonCriticalData,
      }));
    };

Minor Changes

Patch Changes

@clerk/[email protected]

Minor Changes

  • Udpate Tyepdoc links to fix temporary ignore warnings (#6846) by @SarahSoutoul

  • [Billing Beta] Update subscription item plan and planId properties to be null. (#6839) by @paddycarver

Patch Changes

@clerk/[email protected]

Minor Changes

Patch Changes

@clerk/[email protected]

Minor Changes

Patch Changes

@clerk/[email protected]

Minor Changes

Patch Changes

@clerk/[email protected]

Minor Changes

Patch Changes

@clerk/[email protected]

Minor Changes

Patch Changes

@clerk/[email protected]

Minor Changes

Patch Changes

@clerk/[email protected]

Minor Changes

  • Constrained TanStack dependencies to pre-RC versions. Please ensure you're using @tanstack/* versions below 1.132.0. (#6845) by @wobsoriano

  • Add new component (#6808) by @tmilewski

Patch Changes

@clerk/[email protected]

Minor Changes

  • Add Playwright testing helpers under unstable page-objects: userAvatar.goTo(), userAvatar.waitForMounted(), and userAvatar.toBeVisible() for . (#6808) by @tmilewski

Patch Changes

@clerk/[email protected]

Minor Changes

@clerk/[email protected]

Minor Changes

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

Copy link
Contributor

coderabbitai bot commented Sep 23, 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
  • 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

vercel bot commented Sep 23, 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 Sep 26, 2025 10:48pm

Copy link

pkg-pr-new bot commented Sep 23, 2025

Open in StackBlitz

@clerk/agent-toolkit

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

@clerk/astro

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

@clerk/backend

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

@clerk/chrome-extension

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

@clerk/clerk-js

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

@clerk/dev-cli

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

@clerk/elements

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

@clerk/clerk-expo

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

@clerk/expo-passkeys

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

@clerk/express

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

@clerk/fastify

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

@clerk/localizations

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

@clerk/nextjs

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

@clerk/nuxt

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

@clerk/clerk-react

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

@clerk/react-router

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

@clerk/remix

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

@clerk/shared

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

@clerk/tanstack-react-start

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

@clerk/testing

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

@clerk/themes

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

@clerk/types

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

@clerk/upgrade

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

@clerk/vue

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

commit: 5695633

@jacekradko jacekradko merged commit 5720787 into main Sep 27, 2025
36 of 41 checks passed
@jacekradko jacekradko deleted the changeset-release/main branch September 27, 2025 00:04
wobsoriano pushed a commit that referenced this pull request Sep 27, 2025
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
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.

3 participants