Skip to content

ci(repo): Version packages#5127

Merged
LauraBeatris merged 1 commit intomainfrom
changeset-release/main
Feb 13, 2025
Merged

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

Conversation

@clerk-cookie
Copy link
Collaborator

@clerk-cookie clerk-cookie commented Feb 10, 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/astro@2.2.0

Minor Changes

  • Add support for type-safe environment variables using the astro:env API. (#5104) by @wobsoriano

    The 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 enableEnvSchema to false:

    export default defineConfig({
      integrations: [clerk({ enableEnvSchema: false })],
    });

Patch Changes

@clerk/types@4.46.0

Minor Changes

@clerk/vue@1.2.0

Minor Changes

  • Add support for <OrganizationProfile> custom pages and links through <OrganizationSwitcher> (#5129) by @wobsoriano

    Example:

    <script setup lang="ts">
    import { OrganizationSwitcher } from '@clerk/vue';
    import Icon from './Icon.vue';
    </script>
    
    <template>
      <header>
        <OrganizationSwitcher>
          <OrganizationSwitcher.OrganizationProfilePage
            label="Custom Page"
            url="custom"
          >
            <template #labelIcon>
              <Icon />
            </template>
            <div>
              <h1>Custom Organization Profile Page</h1>
              <p>This is the custom organization profile page</p>
            </div>
          </OrganizationSwitcher.OrganizationProfilePage>
          <OrganizationSwitcher.OrganizationProfileLink
            label="Homepage"
            url="/"
          >
            <template #labelIcon>
              <Icon />
            </template>
          </OrganizationSwitcher.OrganizationProfileLink>
        </OrganizationSwitcher>
      </header>
    </template>

Patch Changes

  • Add the ability to specify an appearance for modal component usages. (#5125) by @alexcarpenter

  • Adds ability to render custom <UserProfile> links inside <UserButton> component. (#5128) by @wobsoriano

    Example:

    <script setup>
    import { UserButton } from '@clerk/vue';
    </script>
    
    <template>
      <UserButton>
        <UserButton.UserProfileLink
          label="Homepage"
          url="/"
        >
          <template #labelIcon>
            <div>Icon</div>
          </template>
        </UserButton.UserProfileLink>
      </UserButton>
    </template>
  • Updated dependencies [dd2cbfe9f30358b6b298901bb52fa378b0acdca3, 570d8386f6aa596bf7bb1659bdddb8dd4d992b1d]:

    • @clerk/types@4.46.0
    • @clerk/shared@2.21.1

@clerk/backend@1.24.1

Patch Changes

@clerk/chrome-extension@2.2.9

Patch Changes

@clerk/clerk-js@5.52.3

Patch Changes

@clerk/elements@0.22.22

Patch Changes

@clerk/clerk-expo@2.7.7

Patch Changes

@clerk/expo-passkeys@0.1.20

Patch Changes

@clerk/express@1.3.48

Patch Changes

@clerk/fastify@2.1.21

Patch Changes

@clerk/localizations@3.10.6

Patch Changes

@clerk/nextjs@6.11.3

Patch Changes

@clerk/nuxt@1.1.4

Patch Changes

@clerk/clerk-react@5.22.13

Patch Changes

@clerk/react-router@1.0.8

Patch Changes

@clerk/remix@4.4.24

Patch Changes

@clerk/shared@2.21.1

Patch Changes

@clerk/tanstack-start@0.9.6

Patch Changes

@clerk/testing@1.4.22

Patch Changes

@clerk/themes@2.2.18

Patch Changes

@clerk/ui@0.3.23

Patch Changes

@clerk/upgrade@1.2.4

Patch Changes

  • Remove an internal function that was executed but its return value wasn't used. In some instances this function threw an error. (#5138) by @LekoArts

@clerk/agent-toolkit@0.0.2

Patch Changes

  • Introduce @clerk/agent-toolkit package. The Clerk Agent Toolkit enables popular agent frameworks, including Vercel's AI SDK and LangChain, to integrate with Clerk using tools (also known as function calling). (#5130) by @nikosdouvlis

    This package exposes a subset of Clerk's functionality to agent frameworks, allowing you to build powerful agentic systems capable of managing users, user data, organizations, and more.

    Please note: All relevant information and instructions on how to set it up can be found in the package's README. It's an early developer preview and can't be considered stable yet.

  • Updated dependencies [dd2cbfe9f30358b6b298901bb52fa378b0acdca3, 570d8386f6aa596bf7bb1659bdddb8dd4d992b1d, 128fd8909ae083c0d274dee7c6810e8574e1ce33]:

    • @clerk/types@4.46.0
    • @clerk/backend@1.24.1
    • @clerk/shared@2.21.1

@vercel
Copy link

vercel bot commented Feb 10, 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 Feb 12, 2025 4:34pm

@github-actions github-actions bot force-pushed the changeset-release/main branch from 4bd2674 to 1c35f3a Compare February 11, 2025 00:11
@github-actions github-actions bot force-pushed the changeset-release/main branch from 1c35f3a to 3bd04c7 Compare February 11, 2025 09:36
@github-actions github-actions bot force-pushed the changeset-release/main branch from 3bd04c7 to ae04aa1 Compare February 11, 2025 14:52
@github-actions github-actions bot force-pushed the changeset-release/main branch from ae04aa1 to bd4f80a Compare February 11, 2025 19:17
@github-actions github-actions bot force-pushed the changeset-release/main branch from bd4f80a to 005018d Compare February 12, 2025 10:41
@github-actions github-actions bot force-pushed the changeset-release/main branch from 005018d to b159b2c Compare February 12, 2025 11:22
@github-actions github-actions bot force-pushed the changeset-release/main branch from b159b2c to 69d70b7 Compare February 12, 2025 11:31
@github-actions github-actions bot force-pushed the changeset-release/main branch from 69d70b7 to b32a282 Compare February 12, 2025 13:02
@github-actions github-actions bot force-pushed the changeset-release/main branch from b32a282 to 0058a3f Compare February 12, 2025 14:28
@github-actions github-actions bot force-pushed the changeset-release/main branch from 0058a3f to 9e9b0d6 Compare February 12, 2025 16:10
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