Skip to content

Releases: clerk/javascript

@clerk/[email protected]

14 Oct 19:12
070c25b
Compare
Choose a tag to compare

Patch Changes

@clerk/[email protected]

14 Oct 19:12
070c25b
Compare
Choose a tag to compare

@clerk/[email protected]

06 Oct 17:32
c9ea544
Compare
Choose a tag to compare

Patch Changes

@clerk/[email protected]

06 Oct 17:33
c9ea544
Compare
Choose a tag to compare

Minor Changes

  • [Experimental] Add support for additional properties to Signal SignIn/SignUp (#6897) by @dstaley

Patch Changes

@clerk/[email protected]

06 Oct 17:32
c9ea544
Compare
Choose a tag to compare

Patch Changes

@clerk/[email protected]

06 Oct 17:32
c9ea544
Compare
Choose a tag to compare

Patch Changes

@clerk/[email protected]

06 Oct 17:32
c9ea544
Compare
Choose a tag to compare

Patch Changes

@clerk/[email protected]

06 Oct 17:32
c9ea544
Compare
Choose a tag to compare

Patch Changes

@clerk/[email protected]

06 Oct 17:32
c9ea544
Compare
Choose a tag to compare

Patch Changes

@clerk/[email protected]

06 Oct 17:32
c9ea544
Compare
Choose a tag to compare

Minor Changes

  • Added organizationSyncOptions option to clerkMiddleware(). It's used to activate a specific organization or personal account based on URL path parameters. (#6927) by @wobsoriano

    Usage:

    // app/root.tsx
    export const middleware: Route.MiddlewareFunction[] = [
      clerkMiddleware({
        organizationSyncOptions: {
          organizationPatterns: [
            '/orgs/:slug', // Match the org slug
            '/orgs/:slug/(.*)', // Wildcard match for optional trailing path segments
          ],
        },
      }),
    ];

    To learn more about best practices for using organization slugs to manage the active organization, check out this guide.

Patch Changes