Skip to content
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

ci(repo): Version packages #5149

Merged
merged 1 commit into from
Feb 18, 2025
Merged

ci(repo): Version packages #5149

merged 1 commit into from
Feb 18, 2025

Conversation

clerk-cookie
Copy link
Collaborator

@clerk-cookie clerk-cookie commented Feb 13, 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

  • Introduce EmailLinkErrorCodeStatus to support users in custom flows and mark EmailLinkErrorCode as deprecated. (#5142) by @alexcarpenter

    - import { EmailLinkErrorCode } from '@clerk/nextjs/errors'
    + import { EmailLinkErrorCodeStatus } from '@clerk/nextjs/errors'
  • Fix issue where unsafeMetadata was not associated with sign-ups in the combined sign-in-or-up flow. (#5161) by @dstaley

Patch Changes

@clerk/[email protected]

Minor Changes

  • Introduce EmailLinkErrorCodeStatus to support users in custom flows and mark EmailLinkErrorCode as deprecated. (#5142) by @alexcarpenter

    - import { EmailLinkErrorCode } from '@clerk/nextjs/errors'
    + import { EmailLinkErrorCodeStatus } from '@clerk/nextjs/errors'

Patch Changes

@clerk/[email protected]

Minor Changes

  • Introduce getAuth() helper to retrieve authentication state from the event object. (#5158) by @wobsoriano

    Example:

    import { getAuth } from '@clerk/nuxt/server';
    
    export default eventHandler(event => {
      const { userId } = getAuth(event);
    
      if (!userId) {
        // User is not authenticated
      }
    });

Patch Changes

@clerk/[email protected]

Minor Changes

  • Introduce EmailLinkErrorCodeStatus to support users in custom flows and mark EmailLinkErrorCode as deprecated. (#5142) by @alexcarpenter

    - import { EmailLinkErrorCode } from '@clerk/nextjs/errors'
    + import { EmailLinkErrorCodeStatus } from '@clerk/nextjs/errors'

Patch Changes

@clerk/[email protected]

Minor Changes

  • Introduce EmailLinkErrorCodeStatus to support users in custom flows and mark EmailLinkErrorCode as deprecated. (#5142) by @alexcarpenter

    - import { EmailLinkErrorCode } from '@clerk/nextjs/errors'
    + import { EmailLinkErrorCodeStatus } from '@clerk/nextjs/errors'

Patch Changes

@clerk/[email protected]

Minor Changes

  • Introduce EmailLinkErrorCodeStatus to support users in custom flows and mark EmailLinkErrorCode as deprecated. (#5142) by @alexcarpenter

    - import { EmailLinkErrorCode } from '@clerk/nextjs/errors'
    + import { EmailLinkErrorCodeStatus } from '@clerk/nextjs/errors'

Patch Changes

@clerk/[email protected]

Minor Changes

  • Introduce EmailLinkErrorCodeStatus to support users in custom flows and mark EmailLinkErrorCode as deprecated. (#5142) by @alexcarpenter

    - import { EmailLinkErrorCode } from '@clerk/nextjs/errors'
    + import { EmailLinkErrorCodeStatus } from '@clerk/nextjs/errors'
  • Support passing additional properties to eventPrebuiltComponentMounted(), and ensure withSignUp is collected on SignIn mount. (#5150) by @brkalow

Patch Changes

@clerk/[email protected]

Minor Changes

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

@clerk/[email protected]

Patch Changes

@clerk/[email protected]

Patch Changes

  • Support passing additional properties to eventPrebuiltComponentMounted(), and ensure withSignUp is collected on SignIn mount. (#5150) by @brkalow

@clerk/[email protected]

Patch Changes

@clerk/[email protected]

Patch Changes

  • Previously, the getCurrentOrganizationMembership() function was duplicated in both @clerk/vue and @clerk/shared/react. This change moves the function to @clerk/shared/organization. (#5168) by @wobsoriano

  • Re-export error handling utilities from @clerk/shared (#5155) by @wobsoriano

    Example:

    <script setup lang="ts">
    import { useSignIn } from '@clerk/vue';
    import { isClerkAPIResponseError } from '@clerk/vue/errors';
    
    // ... form state refs and other setup ...
    const { signIn } = useSignIn();
    
    const handleSubmit = async () => {
      try {
        const signInAttempt = await signIn.value.create({
          identifier: email.value,
          password: password.value,
        });
        // ... handle successful sign in ...
      } catch (err) {
        // Type guard to safely handle Clerk API errors
        if (isClerkAPIResponseError(err)) {
          errors.value = err.errors; // err.errors is properly typed as ClerkAPIError[]
        }
      }
    };
    </script>
    
    <template>
      <!-- Form template here -->
    </template>
  • Updated dependencies [d76c4699990b8477745c2584b1b98d5c92f9ace6, a9b0087fca3f427f65907b358d9b5bc0c95921d8, 92d17d7c087470b262fa5407cb6720fe6b17d333]:

@clerk/[email protected]

Patch Changes

Copy link

vercel bot commented Feb 13, 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 18, 2025 8:57am

@github-actions github-actions bot force-pushed the changeset-release/main branch from b78a608 to ea6a139 Compare February 16, 2025 08:00
@github-actions github-actions bot force-pushed the changeset-release/main branch from ea6a139 to bc9c967 Compare February 16, 2025 08:18
@github-actions github-actions bot force-pushed the changeset-release/main branch from bc9c967 to 46fcb45 Compare February 17, 2025 08:42
@github-actions github-actions bot force-pushed the changeset-release/main branch from 46fcb45 to e5a3504 Compare February 17, 2025 09:30
@github-actions github-actions bot force-pushed the changeset-release/main branch from e5a3504 to ad86e22 Compare February 17, 2025 09:42
@github-actions github-actions bot force-pushed the changeset-release/main branch from ad86e22 to 97dc458 Compare February 17, 2025 09:54
@github-actions github-actions bot force-pushed the changeset-release/main branch from 97dc458 to 32beb32 Compare February 17, 2025 12:03
@github-actions github-actions bot force-pushed the changeset-release/main branch from 32beb32 to 5266490 Compare February 17, 2025 17:59
@github-actions github-actions bot force-pushed the changeset-release/main branch from 5266490 to e7ef0dc Compare February 18, 2025 08:46
@nikosdouvlis nikosdouvlis merged commit 93acb6f into main Feb 18, 2025
29 checks passed
@nikosdouvlis nikosdouvlis deleted the changeset-release/main branch February 18, 2025 15:17
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