Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Apr 22, 2024

This PR contains the following updates:

Package Change Age Confidence
@clerk/clerk-js (source) ^4.54.2 -> ^5.0.0 age confidence

Release Notes

clerk/javascript (@​clerk/clerk-js)

v5.109.0

Compare Source

Minor Changes
  • Introduced initial Clerk Protect dynamic loader and related types to support dynamically enabling and rolling out Protect in the environment. (#​7227) by @​zourzouvillys

  • Standardized API keys naming convention (#​7223) by @​wobsoriano

  • [Experimental] Add support for sign-up via modal in signals implementation (#​7193) by @​dstaley

Patch Changes

v5.108.0

Compare Source

Minor Changes
  • Support for email_code and email_link as a second factor when user is signing in on a new device. (#​7116) by @​tmilewski

  • Update SocialButtons to show "Continue with" prefix for last auth strategy, and improve mobile layout consistency. (#​7169) by @​alexcarpenter

  • [Experimental] Update errors to have specific field types based on whether it's a sign-in or a sign-up. (#​7195) by @​dstaley

  • Removed internal parameter when creating API keys (#​7207) by @​wobsoriano

Patch Changes

v5.107.0

Compare Source

Minor Changes
Patch Changes

v5.106.0

Compare Source

Minor Changes
Patch Changes

v5.105.1

Compare Source

Patch Changes
  • Add aria live region to ensure feedback messages are read to screen readers when feedback changes. (#​7111) by @​alexcarpenter

v5.105.0

Compare Source

Minor Changes
  • Replaced the persistent key column in the API keys table with a one-time modal that displays the secret immediately after creation. (#​7107) by @​wobsoriano
Patch Changes

v5.104.0

Compare Source

Minor Changes
  • Adds client_trust_state field to Client and SignIn resources to support new fraud protection feature. (#​7096) by @​chriscanin
Patch Changes

v5.103.2

Compare Source

Patch Changes
  • Propagate locale from ClerkProvider to PaymentElement (#​6885) by @​aeliox

  • Deprecate @clerk/types in favor of @clerk/shared/types (#​7022) by @​nikosdouvlis

    The @clerk/types package is now deprecated. All type definitions have been consolidated and moved to @clerk/shared/types to improve consistency across the Clerk ecosystem.

    Backward Compatibility:

    The @clerk/types package will remain available and will continue to re-export all types from @clerk/shared/types to ensure backward compatibility. Existing applications will continue to work without any immediate breaking changes. However, we strongly recommend migrating to @clerk/shared/types as new type definitions and updates will only be added to @clerk/shared/types starting with the next major release.

    Migration Steps:

    Please update your imports from @clerk/types to @clerk/shared/types:

    // Before
    import type { ClerkResource, UserResource } from '@​clerk/types';
    
    // After
    import type { ClerkResource, UserResource } from '@​clerk/shared/types';

    What Changed:

    All type definitions including:

    • Resource types (User, Organization, Session, etc.)
    • API response types
    • Configuration types
    • Authentication types
    • Error types
    • And all other shared types

    Have been moved from packages/types/src to packages/shared/src/types and are now exported via @clerk/shared/types.

  • Add debug logging to session update flows when browser is offline (#​7113) by @​jacekradko

  • Remove last used badge from rendering on sign-up. (#​7100) by @​alexcarpenter

  • Bug fix for Checkout success screen to not mention payment if a payment was not made. (#​7140) by @​panteliselef

  • Optimize Session.#hydrateCache to only cache token if it's new/different (#​7105) by @​jacekradko

  • Navigates to /sign-up/continue on sign-up with missing_requirements status using ticket as strategy (#​7101) by @​LauraBeatris

    It fixes IdP-initiated flows with missing requirements such as accepting legal consent

  • Updated dependencies [3e0ef92, 2587aa6]:

v5.103.1

Compare Source

Patch Changes

v5.103.0

Compare Source

Minor Changes
Patch Changes

v5.102.1

Compare Source

Patch Changes

v5.102.0

Compare Source

Minor Changes
Patch Changes

v5.101.1

Compare Source

Patch Changes

v5.101.0

Compare Source

Minor Changes
Patch Changes

v5.100.0

Compare Source

Minor Changes
  • [Billing Beta] Rename payment source descriptors to use "payment method". (#​6951) by @​panteliselef

  • When fetching a new Session token, broadcast the token value to other tabs so they can pre-warm their in-memory Session Token cache with the most recent token. (#​6891) by @​jacekradko

  • Add support for sign up locale (#​6915) by @​guilherme6191

  • [Experimental] Fix signIn.password emailAddress parameter name. (#​6932) by @​dstaley

  • [Experimental] Fix issue where calling this.create() would not correctly propagate errors. (#​6932) by @​dstaley

  • [Billing Beta] Rename payment source to payment method. (#​6865) by @​panteliselef

    Clerk.user.initializePaymentSource() -> Clerk.user.initializePaymentMethod()
    Clerk.user.addPaymentSource() -> Clerk.user.addPaymentMethod()
    Clerk.user.getPaymentSources() -> Clerk.user.getPaymentMethods()

    Clerk.organization.initializePaymentSource() -> Clerk.organization.initializePaymentMethod()
    Clerk.organization.addPaymentSource() -> Clerk.organization.addPaymentMethod()
    Clerk.organization.getPaymentSources() -> Clerk.organization.getPaymentMethods()

  • [Billing Beta] Rename payment sources to method methods. (#​6959) by @​panteliselef

    Updates localization keys from commerce -> billing and paymentSource to paymentMethod.

  • Introduce experimental step to choose enterprise connection on sign-in/sign-up (#​6947) by @​LauraBeatris

  • [Billing Beta] Replace forOrganizations: true with for: "organization" in <PricingTable/>. (#​6978) by @​panteliselef

Patch Changes

v5.99.0

Compare Source

Minor Changes
  • [Experimental] Add support for additional properties to Signal SignIn/SignUp (#​6897) by @​dstaley
Patch Changes

v5.98.0

Compare Source

Minor Changes
Patch Changes

v5.97.0

Compare Source

Minor Changes
  • [Billing Beta] Drop top level billing flags from environment. Instead, use the payer specific flags. (#​6882) by @​panteliselef
Patch Changes

v5.96.0

Compare Source

Minor Changes
Patch Changes

v5.95.0

Minor Changes
  • [Experimental] Add support for ticket sign-ins and sign-ups (#​6806) by @​dstaley

  • [Billing Beta] Rename types, interfaces and classes that contain commerce to use billing instead. (#​6757) by @​panteliselef

Patch Changes

v5.94.0

Minor Changes
  • [Experimental] Signal email link support (#​6766) by @​dstaley

  • Add retry attempt tracking to FAPI client GET requests (#​6777) by @​jacekradko

    The FAPI client now adds a _clerk_retry_attempt query parameter to retry attempts for GET requests, allowing servers to track and handle retry scenarios appropriately. This parameter is only added during retry attempts, not on the initial request.

  • [Billing Beta] Remove deprecated subscription attribute from Billing (#​6788) by @​mauricioabreu

Patch Changes

v5.93.0

Compare Source

Minor Changes
  • [Billing Beta] Removal of Billing experimental methods: organization.getSubscriptions() and billing.getSubscriptions() (#​6738) by @​mauricioabreu

  • [Experimental] Add support for additional params for SignUp (#​6716) by @​dstaley

Patch Changes

v5.92.1

Compare Source

Patch Changes
  • Hides the subscription "Manage" button when no subscription items exist instead of the subscription itself being absent. (#​6734) by @​panteliselef

v5.92.0

Compare Source

Minor Changes
Patch Changes

v5.91.2

Compare Source

Patch Changes

v5.91.1

Compare Source

Patch Changes

v5.91.0

Compare Source

Minor Changes
  • [Experimental] Signal phone code support (#​6650) by @​dstaley

  • [Billing Beta] checkout.confirm() now infers the resource id resulting in less repetition and improved DX. (#​6642) by @​panteliselef

    After

    const checkout = Clerk.billing.startCheckout({ orgId });
    checkout.confirm(); // orgId is always implied

    Before

    const checkout = clerk.billing.startCheckout({ orgId });
    checkout.confirm({ orgId });
  • [Experimental] Signal MFA support (#​6659) by @​dstaley

Patch Changes

v5.90.0

Compare Source

Minor Changes
Patch Changes

v5.89.0

Compare Source

Minor Changes
  • Rework the OTP input to use a single transparent input (via input-otp) to improve password manager compatibility and iOS/Android SMS-based autofill. Removes individual digit fields; a single invisible input drives the six visual slots. (#​6551) by @​tmilewski

    If you're using @clerk/testing, please ensure that you're using the latest version.

  • [Experimental] Signal transfer support (#​6614) by @​dstaley

  • [Experimental] Signals isLoaded removal (#​6605) by @​dstaley

Patch Changes

v5.88.0

Compare Source

Minor Changes
Patch Changes

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - "after 9am and before 5pm Monday" (UTC).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch from ebe6af9 to 0ce7bd4 Compare April 22, 2024 04:36
@renovate renovate bot changed the title fix(deps): update dependency @clerk/clerk-js to v5 fix(deps): update dependency @clerk/clerk-js to v5 - autoclosed May 1, 2024
@renovate renovate bot closed this May 1, 2024
@renovate renovate bot deleted the renovate/clerk-clerk-js-5.x branch May 1, 2024 09:05
@renovate renovate bot changed the title fix(deps): update dependency @clerk/clerk-js to v5 - autoclosed fix(deps): update dependency @clerk/clerk-js to v5 May 1, 2024
@renovate renovate bot reopened this May 1, 2024
@renovate renovate bot restored the renovate/clerk-clerk-js-5.x branch May 1, 2024 13:36
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch from 0ce7bd4 to d9c726f Compare May 6, 2024 04:17
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch from d9c726f to 6cb8ff6 Compare May 13, 2024 04:36
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch from 6cb8ff6 to 8fd7499 Compare May 27, 2024 03:30
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch 2 times, most recently from 8fb6ddf to 73727ca Compare June 10, 2024 04:08
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch from 73727ca to 1c9705e Compare July 29, 2024 05:14
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch from 1c9705e to 7bdf8c4 Compare August 19, 2024 03:15
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch from 7bdf8c4 to a5bbd7d Compare September 2, 2024 04:12
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch from a5bbd7d to 042428e Compare September 23, 2024 03:21
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch 2 times, most recently from 492c095 to b2a9bf1 Compare October 7, 2024 03:32
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch from b2a9bf1 to c762031 Compare October 14, 2024 03:31
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch from c762031 to 218feb8 Compare October 21, 2024 03:51
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch from 218feb8 to 6166fbb Compare November 11, 2024 04:23
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch from 6166fbb to 7d76545 Compare December 2, 2024 03:26
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch 4 times, most recently from 337523f to 71c65aa Compare July 29, 2025 18:10
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch 2 times, most recently from 5c27862 to fad8b1e Compare August 6, 2025 16:49
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch 2 times, most recently from 5048f3f to bc110a6 Compare August 12, 2025 10:58
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch 2 times, most recently from 2a78cc1 to 48d45d6 Compare August 21, 2025 17:13
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch 2 times, most recently from 346031d to b2b7ffa Compare August 27, 2025 20:25
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch 4 times, most recently from dcf5aa9 to b637407 Compare September 13, 2025 21:07
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch 3 times, most recently from dd3319e to 171f078 Compare September 27, 2025 00:36
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch 3 times, most recently from 2282070 to cb10802 Compare October 6, 2025 18:34
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch 4 times, most recently from 01acf94 to 2c14aae Compare October 17, 2025 20:05
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch 2 times, most recently from c0bdd4a to 6597750 Compare October 22, 2025 18:27
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch 3 times, most recently from 4c610ed to 5c51274 Compare November 5, 2025 01:10
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch 4 times, most recently from a141834 to 43edbe9 Compare November 12, 2025 22:44
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch from 43edbe9 to 4bf35db Compare November 18, 2025 03:11
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot force-pushed the renovate/clerk-clerk-js-5.x branch from 4bf35db to cc54119 Compare November 18, 2025 23:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants