Skip to content

ci(repo): Version packages#8252

Merged
dstaley merged 1 commit intomainfrom
changeset-release/main
Apr 8, 2026
Merged

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

Conversation

@clerk-cookie
Copy link
Copy Markdown
Collaborator

@clerk-cookie clerk-cookie commented Apr 7, 2026

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]

Minor Changes

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

Patch Changes

@clerk/[email protected]

Minor Changes

  • Deprecated requireAuth() middleware. It will be removed in the next major version. (#8241) by @wobsoriano

    The requireAuth() middleware redirects unauthenticated requests to a sign-in page, which is often unexpected for API routes where a 401 response is more appropriate. Use clerkMiddleware() with getAuth() instead for explicit control over authentication behavior.

    Before (deprecated):

    import { requireAuth } from '@clerk/express';
    
    app.get('/api/protected', requireAuth(), (req, res) => {
      // handle authenticated request
    });

    After (recommended):

    import { clerkMiddleware, getAuth } from '@clerk/express';
    
    app.use(clerkMiddleware());
    
    app.get('/api/protected', (req, res) => {
      const { userId } = getAuth(req);
      if (!userId) {
        return res.status(401).json({ error: 'Unauthorized' });
      }
      // handle authenticated request
    });

Patch Changes

@clerk/[email protected]

Minor Changes

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

Patch Changes

@clerk/[email protected]

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]

Minor Changes

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

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

  • 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>
      );
    }
  • Update esbuild dev dependency to ^0.25.0 to address a security vulnerability. (#8253) by @renovate

  • Updated dependencies [fdac10e, 4e3cb0a, aa32bbc]:

@clerk/[email protected]

Patch Changes

@clerk/[email protected]

Patch Changes

@clerk/[email protected]

Patch Changes

@clerk/[email protected]

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]

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

@vercel
Copy link
Copy Markdown

vercel bot commented Apr 7, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
clerk-js-sandbox Ready Ready Preview, Comment Apr 8, 2026 5:56pm

Request Review

@pkg-pr-new
Copy link
Copy Markdown

pkg-pr-new bot commented Apr 7, 2026

Open in StackBlitz

@clerk/agent-toolkit

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

@clerk/astro

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

@clerk/backend

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

@clerk/chrome-extension

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

@clerk/clerk-js

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

@clerk/dev-cli

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

@clerk/expo

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

@clerk/expo-passkeys

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

@clerk/express

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

@clerk/fastify

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

@clerk/hono

npm i https://pkg.pr.new/@clerk/hono@8252

@clerk/localizations

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

@clerk/nextjs

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

@clerk/nuxt

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

@clerk/react

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

@clerk/react-router

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

@clerk/shared

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

@clerk/tanstack-react-start

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

@clerk/testing

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

@clerk/ui

npm i https://pkg.pr.new/@clerk/ui@8252

@clerk/upgrade

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

@clerk/vue

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

commit: beccf8d

@github-actions github-actions bot force-pushed the changeset-release/main branch from 38310af to 968e538 Compare April 7, 2026 15:11
@github-actions github-actions bot force-pushed the changeset-release/main branch from 968e538 to e6314db Compare April 7, 2026 16:19
@github-actions github-actions bot force-pushed the changeset-release/main branch from e6314db to 2b51414 Compare April 7, 2026 16:39
@github-actions github-actions bot force-pushed the changeset-release/main branch from 2b51414 to 65c3ed9 Compare April 7, 2026 16:51
@github-actions github-actions bot force-pushed the changeset-release/main branch from 65c3ed9 to f90a3ff Compare April 8, 2026 01:50
@github-actions github-actions bot force-pushed the changeset-release/main branch from f90a3ff to a400ab3 Compare April 8, 2026 14:40
@github-actions github-actions bot force-pushed the changeset-release/main branch from a400ab3 to edb270c Compare April 8, 2026 15:01
@github-actions github-actions bot force-pushed the changeset-release/main branch from edb270c to 2cb8525 Compare April 8, 2026 17:08
@github-actions github-actions bot force-pushed the changeset-release/main branch from 2cb8525 to a64a83f Compare April 8, 2026 17:30
@github-actions github-actions bot force-pushed the changeset-release/main branch from a64a83f to 3267774 Compare April 8, 2026 17:37
@github-actions github-actions bot force-pushed the changeset-release/main branch from 3267774 to 8745c30 Compare April 8, 2026 17:44
@dstaley dstaley closed this Apr 8, 2026
@dstaley dstaley reopened this Apr 8, 2026
@dstaley dstaley merged commit 97735eb into main Apr 8, 2026
71 of 72 checks passed
@dstaley dstaley deleted the changeset-release/main branch April 8, 2026 18:48
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.

2 participants