v0.12.0
Minor Changes
-
3da6f14: Re-export webhook verification helper
Usage:
Required: Set your
CLERK_WEBHOOK_SIGNING_SECRETenvironment variable to protect webhooks. It is automatically read byverifyWebhook().import { clerkPlugin } from "elysia-clerk"; import { verifyWebhook } from "elysia-clerk/webhooks"; new Elysia() .use(clerkPlugin()) .get("/webhook", ({ request }) => { const result = await verifyWebhook(request); // do something with the result }) .listen(3000);
Patch Changes
- be91dec: Bump
@clerk/backendto 2.4.1 and@clerk/sharedto 3.11.0