Minor Changes
-
Add support for type-safe environment variables using the
astro:envAPI. (#5104) by @wobsorianoThe integration now provides a type-safe schema for all Clerk environment variables by default. You can use the environment variables like so:
import { PUBLIC_CLERK_PUBLISHABLE_KEY } from 'astro:env/client'; import { CLERK_SECRET_KEY } from 'astro:env/server';
To override this behavior, you can disable the feature by setting
enableEnvSchematofalse:export default defineConfig({ integrations: [clerk({ enableEnvSchema: false })], });
Patch Changes
-
Add the ability to specify an appearance for modal component usages. (#5125) by @alexcarpenter
-
Updated dependencies [
dd2cbfe9f30358b6b298901bb52fa378b0acdca3,570d8386f6aa596bf7bb1659bdddb8dd4d992b1d,128fd8909ae083c0d274dee7c6810e8574e1ce33]:- @clerk/types@4.46.0
- @clerk/backend@1.24.1
- @clerk/shared@2.21.1