Skip to content

ci(repo): Version packages #5665

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 21, 2025
Merged

ci(repo): Version packages #5665

merged 1 commit into from
Apr 21, 2025

Conversation

clerk-cookie
Copy link
Collaborator

@clerk-cookie clerk-cookie commented Apr 17, 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 Clerk.status for tracking the state of the clerk singleton. (#5476) by @panteliselef

    Possible values for Clerk.status are:

    • "loading": Set during initialization
    • "error": Set when hotloading clerk-js failed or Clerk.load() failed
    • "ready": Set when Clerk is fully operational
    • "degraded": Set when Clerk is partially operational

    The computed value of Clerk.loaded is:

    • true when Clerk.status is either "ready" or "degraded".
    • false when Clerk.status is "loading" or "error".
  • Introduce clerk.legacy.browser.js for legacy browser support. (#5495) by @dstaley

Patch Changes

  • Fix duplicate checkout calls when clicking Get Started buttons (#5664) by @aeliox

  • Remove the experimental commerce flag (#5666) by @aeliox

    • Adds support for collecting and verifying user email (when they don't already have one associated with their payer) during checkout (#5671) by @aeliox

    • Fixes incorrect org invoices endpoint.

    • Extracts plan CTA button styling, labeling, and selecting into context methods.

    • Adds UserProfile / OrgProfile specific scrollbox IDs for drawer portal-ing (fixes issue where both could be open)

    • Fixes incorrect button action in SubscriptionList for active but expiring subscriptions.

  • Rollback change to lazy-loading suspense wrapper (#5670) by @aeliox

  • Add <SubscriptionsList /> to both UserProfile and OrgProfile components. (#5658) by @alexcarpenter

    Introduce experimental method for opening <SubscriptionDetails /> component.

    clerk.__experimental_openSubscriptionDetails(...)
  • Updated dependencies [68dc2b6, 33201bf, 4334598, 0ae0403]:

@clerk/[email protected]

Minor Changes

  • Introduce useClerk().status alongside <ClerkFailed /> and <ClerkDegraded />. (#5476) by @panteliselef

    useClerk().status

    Possible values for useClerk().status are:

    • "loading": Set during initialization
    • "error": Set when hotloading clerk-js failed or Clerk.load() failed
    • "ready": Set when Clerk is fully operational
    • "degraded": Set when Clerk is partially operational
      The computed value of useClerk().loaded is:
    • true when useClerk().status is either "ready" or "degraded".
    • false when useClerk().status is "loading" or "error".

    <ClerkFailed />

    <ClerkLoaded>
      <MyCustomSignInForm/>
    </ClerkLoaded>
    <ClerkFailed>
      <ContactSupportBanner/>
    </ClerkFailed>

    <ClerkDegraded />

    <ClerkLoaded>
      <MyCustomPasskeyRegistration />
      <ClerkDegraded>We are experiencing issues, registering a passkey might fail.</ClerkDegraded>
    </ClerkLoaded>

Patch Changes

@clerk/[email protected]

Minor Changes

  • Introduce useClerk().status alongside <ClerkFailed /> and <ClerkDegraded />. (#5476) by @panteliselef

    useClerk().status

    Possible values for useClerk().status are:

    • "loading": Set during initialization
    • "error": Set when hotloading clerk-js failed or Clerk.load() failed
    • "ready": Set when Clerk is fully operational
    • "degraded": Set when Clerk is partially operational
      The computed value of useClerk().loaded is:
    • true when useClerk().status is either "ready" or "degraded".
    • false when useClerk().status is "loading" or "error".

    <ClerkFailed />

    <ClerkLoaded>
      <MyCustomSignInForm/>
    </ClerkLoaded>
    <ClerkFailed>
      <ContactSupportBanner/>
    </ClerkFailed>

    <ClerkDegraded />

    <ClerkLoaded>
      <MyCustomPasskeyRegistration />
      <ClerkDegraded>We are experiencing issues, registering a passkey might fail.</ClerkDegraded>
    </ClerkLoaded>

Patch Changes

@clerk/[email protected]

Minor Changes

  • Switching over our interception of FAPI calls from page.route to context.route as routes set up with page.route() take precedence over browser context routes when request matches both handlers. (#5673) by @jacekradko

    This allows for users to override calls to FAPI more consistently

Patch Changes

@clerk/[email protected]

Minor Changes

  • Introduce Clerk.status for tracking the state of the clerk singleton. (#5476) by @panteliselef

    Possible values for Clerk.status are:

    • "loading": Set during initialization
    • "error": Set when hotloading clerk-js failed or Clerk.load() failed
    • "ready": Set when Clerk is fully operational
    • "degraded": Set when Clerk is partially operational

    The computed value of Clerk.loaded is:

    • true when Clerk.status is either "ready" or "degraded".
    • false when Clerk.status is "loading" or "error".

Patch Changes

    • Adds support for collecting and verifying user email (when they don't already have one associated with their payer) during checkout (#5671) by @aeliox

    • Fixes incorrect org invoices endpoint.

    • Extracts plan CTA button styling, labeling, and selecting into context methods.

    • Adds UserProfile / OrgProfile specific scrollbox IDs for drawer portal-ing (fixes issue where both could be open)

    • Fixes incorrect button action in SubscriptionList for active but expiring subscriptions.

  • Add <SubscriptionsList /> to both UserProfile and OrgProfile components. (#5658) by @alexcarpenter

    Introduce experimental method for opening <SubscriptionDetails /> component.

    clerk.__experimental_openSubscriptionDetails(...)

@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

  • Account for all possible cases from not_allowed_access error codes (#5688) by @tmilewski

    • Adds support for collecting and verifying user email (when they don't already have one associated with their payer) during checkout (#5671) by @aeliox

    • Fixes incorrect org invoices endpoint.

    • Extracts plan CTA button styling, labeling, and selecting into context methods.

    • Adds UserProfile / OrgProfile specific scrollbox IDs for drawer portal-ing (fixes issue where both could be open)

    • Fixes incorrect button action in SubscriptionList for active but expiring subscriptions.

  • Add <SubscriptionsList /> to both UserProfile and OrgProfile components. (#5658) by @alexcarpenter

    Introduce experimental method for opening <SubscriptionDetails /> component.

    clerk.__experimental_openSubscriptionDetails(...)
  • Updated dependencies [33201bf, 4334598, 0ae0403]:

@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

Copy link

vercel bot commented Apr 17, 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 21, 2025 8:44pm

@github-actions github-actions bot force-pushed the changeset-release/main branch from 7ddab31 to b299806 Compare April 18, 2025 12:40
@github-actions github-actions bot force-pushed the changeset-release/main branch from b299806 to e54f1a3 Compare April 18, 2025 15:40
@github-actions github-actions bot force-pushed the changeset-release/main branch from e54f1a3 to a2f3478 Compare April 18, 2025 18:22
@github-actions github-actions bot force-pushed the changeset-release/main branch from a2f3478 to 030f6f6 Compare April 18, 2025 20:14
@github-actions github-actions bot force-pushed the changeset-release/main branch from 030f6f6 to d0e9064 Compare April 18, 2025 22:00
@github-actions github-actions bot force-pushed the changeset-release/main branch from d0e9064 to 9038060 Compare April 18, 2025 22:47
@github-actions github-actions bot force-pushed the changeset-release/main branch from 9038060 to ac4ef2d Compare April 21, 2025 14:57
@github-actions github-actions bot force-pushed the changeset-release/main branch from ac4ef2d to eb04346 Compare April 21, 2025 18:00
@github-actions github-actions bot force-pushed the changeset-release/main branch from eb04346 to c9a6757 Compare April 21, 2025 18:19
@tmilewski tmilewski merged commit d577c86 into main Apr 21, 2025
32 checks passed
@tmilewski tmilewski deleted the changeset-release/main branch April 21, 2025 22:59
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