Skip to content

ci(repo): Version packages #5626

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 16, 2025
Merged

ci(repo): Version packages #5626

merged 1 commit into from
Apr 16, 2025

Conversation

clerk-cookie
Copy link
Collaborator

@clerk-cookie clerk-cookie commented Apr 14, 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]

Minor Changes

  • Adds the following functionality for Instances to the Backend API client. (#5600) by @tmilewski

      import { createClerkClient } from '@clerk/backend';
    
      const clerkClient = createClerkClient(...);
    
      await clerkClient.instance.get();
      await clerkClient.instance.update({...});
      await clerkClient.instance.updateRestrictions({...});
      await clerkClient.instance.updateOrganizationSettings({...});
  • Adds the ability to perform CRUD operations on OAuth Applications to the Backend API client. (#5599) by @tmilewski

      import { createClerkClient } from '@clerk/backend';
    
      const clerkClient = createClerkClient(...);
    
      await clerkClient.oauthApplications.list({...});
      await clerkClient.oauthApplications.get('templateId');
      await clerkClient.oauthApplications.create({...});
      await clerkClient.oauthApplications.update({...});
      await clerkClient.oauthApplications.delete('templateId');
      await clerkClient.oauthApplications.rotateSecret('templateId');
  • Adds domain endpoints to the Backend API client. (#5621) by @tmilewski

      import { createClerkClient } from '@clerk/backend';
    
      const clerkClient = createClerkClient(...);
      await clerkClient.domains.list();
      await clerkClient.domains.add({...});
      await clerkClient.domains.update({...});
      await clerkClient.domains.delete('satelliteDomainId');
  • Adds the ability to retrieve and update Sign Up Attempts to the Backend API client. (#5625) by @tmilewski

      import { createClerkClient } from '@clerk/backend';
    
      const clerkClient = createClerkClient(...);
    
      await clerkClient.signUps.get('signUpAttemptId');
      await clerkClient.signUps.update({...});
  • Adds the ability to change production domains [beta] to the Backend API client. (#5633) by @tmilewski

      import { createClerkClient } from '@clerk/backend';
    
      const clerkClient = createClerkClient(...);
    
      await clerkClient.betaFeatures.changeDomain({
        homeUrl: 'https://www.example.com',
        isSecondary: false,
      });

Patch Changes

  • Append expired status to invitation types (#5646) by @tmilewski

  • Improve JSDoc comments (#5630) by @LekoArts

  • Include expiresAt in OAuth access token resource (#5631) by @Nikpolik

  • Update typing of Organization.slug (#5636) by @tmilewski

  • Adds the ability to list and create waitlist entries to the Backend API client. (#5591) by @tmilewski

      import { createClerkClient } from '@clerk/backend';
    
      const clerkClient = createClerkClient(...);
    
      await clerkClient.waitlistEntries.list({...});
      await clerkClient.waitlistEntries.create({
        emailAddress: '[email protected]',
        notify: true
      });
  • Adds the ability to create and revoke actor tokens to the Backend API client. (#5585) by @tmilewski

      import { createClerkClient } from '@clerk/backend';
    
      const clerkClient = createClerkClient(...);
    
      const { id } = await clerkClient.actorTokens.create({...});
      await clerkClient.actorTokens.revoke(id);
  • Updated dependencies [ab939fd, 03284da, 7389ba3, f6ef841, e634830, f8887b2]:

@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

@clerk/[email protected]

Patch Changes

  • Add support for webhook verification with Next.js Pages Router. (#5618) by @wobsoriano

    // Next.js Pages Router
    import type { NextApiRequest, NextApiResponse } from 'next';
    import { verifyWebhook } from '@clerk/nextjs/webhooks';
    
    export const config = {
      api: {
        bodyParser: false,
      },
    };
    
    export default async function handler(req: NextApiRequest, res: NextApiResponse) {
      try {
        const evt = await verifyWebhook(req);
        // Handle webhook event
        res.status(200).json({ received: true });
      } catch (err) {
        res.status(400).json({ error: 'Webhook verification failed' });
      }
    }
    
    // tRPC
    import { verifyWebhook } from '@clerk/nextjs/webhooks';
    
    const webhookRouter = router({
      webhook: publicProcedure.input(/** schema */).mutation(async ({ ctx }) => {
        const evt = await verifyWebhook(ctx.req);
        // Handle webhook event
        return { received: true };
      }),
    });
  • Updated dependencies [ab939fd, 03284da, 7389ba3, 00f16e4, bb35660, efb5d8c, c2712e7, aa93f7f, a7f3ebc, d3fa403, f6ef841, 6cba4e2, fb6aa20, e634830, f8887b2]:

@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

  • Improve JSDoc comments (#5641) by @LekoArts

  • Append expired status to invitation types (#5646) by @tmilewski

  • Improve JSDoc comments (#5630) by @LekoArts

  • Chore: tidy up checkout complete state for upcoming subscriptions (#5644) by @aeliox

  • Hide Billing tabs from UP and OP when no paid plans exist for an instance. (#5628) by @panteliselef

  • Updates PricingTable and SubscriptionDetailDrawer to handle upcoming and "expiring" subscriptions. (#5601) by @aeliox

@clerk/[email protected]

Patch Changes

Copy link

vercel bot commented Apr 14, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
clerk-js-sandbox ✅ Ready (Inspect) Visit Preview 💬 Add feedback Apr 16, 2025 7:42pm

@github-actions github-actions bot force-pushed the changeset-release/main branch from 2d8b78e to c670fcf Compare April 15, 2025 06:52
@github-actions github-actions bot force-pushed the changeset-release/main branch from c670fcf to 83570a0 Compare April 15, 2025 07:48
@github-actions github-actions bot force-pushed the changeset-release/main branch from 83570a0 to ac53fd1 Compare April 15, 2025 08:25
@github-actions github-actions bot force-pushed the changeset-release/main branch from ac53fd1 to d669fe9 Compare April 15, 2025 11:32
@github-actions github-actions bot force-pushed the changeset-release/main branch from d669fe9 to c368df3 Compare April 15, 2025 13:21
@github-actions github-actions bot force-pushed the changeset-release/main branch from c368df3 to a61b4de Compare April 15, 2025 13:31
@github-actions github-actions bot force-pushed the changeset-release/main branch from a61b4de to c7f196c Compare April 15, 2025 13:43
@github-actions github-actions bot force-pushed the changeset-release/main branch from c7f196c to a385208 Compare April 15, 2025 14:56
@github-actions github-actions bot force-pushed the changeset-release/main branch from a385208 to 8898808 Compare April 15, 2025 17:51
@github-actions github-actions bot force-pushed the changeset-release/main branch from 8898808 to c86129c Compare April 15, 2025 18:07
@github-actions github-actions bot force-pushed the changeset-release/main branch from c86129c to 29b803e Compare April 15, 2025 18:32
@github-actions github-actions bot force-pushed the changeset-release/main branch from 29b803e to c032bbb Compare April 15, 2025 19:09
@github-actions github-actions bot force-pushed the changeset-release/main branch from c032bbb to b64f609 Compare April 16, 2025 01:00
@github-actions github-actions bot force-pushed the changeset-release/main branch from b64f609 to 43835d1 Compare April 16, 2025 01:29
@tmilewski tmilewski merged commit 40cb80b into main Apr 16, 2025
32 checks passed
@tmilewski tmilewski deleted the changeset-release/main branch April 16, 2025 19:54
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