Skip to content

Releases: clerk/javascript

@clerk/vue@2.4.29

Choose a tag to compare

@clerk-cookie clerk-cookie released this 14 Aug 23:50
Immutable release. Only release title and notes can be modified.
6c63025

Patch Changes

  • Updated dependencies [7f5c294]:
    • @clerk/shared@4.29.1

@clerk/ui@1.30.3

Choose a tag to compare

@clerk-cookie clerk-cookie released this 14 Aug 23:50
Immutable release. Only release title and notes can be modified.
6c63025

Patch Changes

  • Add a "Back" action to the sign-in second-factor and client-trust steps, letting a stuck user abandon the attempt and return to the sign-in start. (#9190) by @alexcarpenter

  • Updated dependencies [7f5c294]:

    • @clerk/shared@4.29.1
    • @clerk/localizations@4.15.3

@clerk/testing@2.2.24

Choose a tag to compare

@clerk-cookie clerk-cookie released this 14 Aug 23:50
Immutable release. Only release title and notes can be modified.
6c63025

Patch Changes

  • Updated dependencies [7f5c294]:
    • @clerk/shared@4.29.1
    • @clerk/backend@3.16.6

@clerk/tanstack-react-start@1.5.2

Choose a tag to compare

@clerk-cookie clerk-cookie released this 14 Aug 23:50
Immutable release. Only release title and notes can be modified.
6c63025

Patch Changes

  • Updated dependencies [7f5c294]:
    • @clerk/shared@4.29.1
    • @clerk/backend@3.16.6
    • @clerk/react@6.14.3

@clerk/react@6.14.3

Choose a tag to compare

@clerk-cookie clerk-cookie released this 14 Aug 23:50
Immutable release. Only release title and notes can be modified.
6c63025

Patch Changes

  • Updated dependencies [7f5c294]:
    • @clerk/shared@4.29.1

@clerk/nextjs@7.7.6

Choose a tag to compare

@clerk-cookie clerk-cookie released this 14 Aug 23:50
Immutable release. Only release title and notes can be modified.
6c63025

Patch Changes

  • Fix a stray double space in the getAuth() "Clerk can't detect usage of clerkMiddleware()" error, so the first bullet renders as - clerkMiddleware() is used in your Next.js middleware or proxy file. (#9408) by @manovotny

  • Updated dependencies [7f5c294]:

    • @clerk/shared@4.29.1
    • @clerk/backend@3.16.6
    • @clerk/react@6.14.3

@clerk/hono@0.1.67

Choose a tag to compare

@clerk-cookie clerk-cookie released this 14 Aug 23:50
Immutable release. Only release title and notes can be modified.
6c63025

Patch Changes

  • Updated dependencies [7f5c294]:
    • @clerk/shared@4.29.1
    • @clerk/backend@3.16.6

@clerk/fastify@3.1.67

Choose a tag to compare

@clerk-cookie clerk-cookie released this 14 Aug 23:50
Immutable release. Only release title and notes can be modified.
6c63025

Patch Changes

  • Updated dependencies [7f5c294]:
    • @clerk/shared@4.29.1
    • @clerk/backend@3.16.6

@clerk/express@2.1.57

Choose a tag to compare

@clerk-cookie clerk-cookie released this 14 Aug 23:50
Immutable release. Only release title and notes can be modified.
6c63025

Patch Changes

  • Updated dependencies [7f5c294]:
    • @clerk/shared@4.29.1
    • @clerk/backend@3.16.6

@clerk/expo@4.3.0

Choose a tag to compare

@clerk-cookie clerk-cookie released this 14 Aug 23:50
Immutable release. Only release title and notes can be modified.
6c63025

Minor Changes

  • Add custom user profile pages to the native UserProfileView and UserButton components. Use content to render a React Native screen or href to open an external URL. (#9448) by @swolfand

    import { UserButton, UserProfileView } from '@clerk/expo/native';
    import type { UserProfileCustomPage } from '@clerk/expo/native';
    
    const customPages: UserProfileCustomPage[] = [
      {
        path: 'api-keys',
        label: 'API keys',
        icon: 'key',
        content: <APIKeysView />,
      },
      {
        path: 'docs',
        label: 'Docs',
        icon: 'book',
        href: 'https://clerk.com/docs',
      },
    ];
    
    <UserProfileView customPages={customPages} />;
    
    <UserButton userProfileProps={{ customPages }} />;

Patch Changes

  • Updated dependencies [7f5c294]:
    • @clerk/shared@4.29.1
    • @clerk/clerk-js@6.29.1
    • @clerk/react@6.14.3