Skip to content

Releases: clerk/javascript

@clerk/[email protected]

08 Apr 18:53
97735eb

Choose a tag to compare

Patch Changes

@clerk/[email protected]

08 Apr 18:53
97735eb

Choose a tag to compare

Minor Changes

  • Add support for rendering the Banned badge in the organization members list. (#8261) by @dstaley

Patch Changes

@clerk/[email protected]

08 Apr 18:53
97735eb

Choose a tag to compare

Patch Changes

@clerk/[email protected]

08 Apr 18:53
97735eb

Choose a tag to compare

Patch Changes

@clerk/[email protected]

08 Apr 18:53
97735eb

Choose a tag to compare

Minor Changes

  • Add support for rendering the Banned badge in the organization members list. (#8261) by @dstaley

Patch Changes

  • Improve types for signIn.create and signUp.create methods. (#8267) by @dstaley

  • Fixed API keys "Revoke" confirmation modal being stuck disabled when using a localization. (#8258) by @wobsoriano

@clerk/[email protected]

08 Apr 18:53
97735eb

Choose a tag to compare

Patch Changes

@clerk/[email protected]

08 Apr 18:53
97735eb

Choose a tag to compare

Patch Changes

@clerk/[email protected]

08 Apr 18:53
97735eb

Choose a tag to compare

Patch Changes

@clerk/[email protected]

08 Apr 18:53
97735eb

Choose a tag to compare

Patch Changes

  • Re-exports useAPIKeys() hook. (#8269) by @wobsoriano

    Usage example:

    'use client';
    
    import { useAPIKeys } from '@clerk/nextjs';
    
    export default function CustomAPIKeys() {
      const { data, isLoading, page, pageCount, fetchNext, fetchPrevious } = useAPIKeys({
        pageSize: 10,
        initialPage: 1,
      });
    
      if (isLoading) return <div>Loading...</div>;
    
      return (
        <ul>
          {data?.map(key => (
            <li key={key.id}>{key.name}</li>
          ))}
        </ul>
      );
    }
  • Updated dependencies [fdac10e, 4e3cb0a, aa32bbc]:

@clerk/[email protected]

08 Apr 18:53
97735eb

Choose a tag to compare

Minor Changes

  • Add support for rendering the Banned badge in the organization members list. (#8261) by @dstaley

Patch Changes