github clerk/javascript @clerk/shared@3.0.0

latest releases: @clerk/types@4.92.0, @clerk/clerk-js@5.99.0, @clerk/fastify@2.4.37...
8 months ago

Major Changes

  • This new version introduces the following breaking changes: (#5144) by @nikosdouvlis

    • Introduced a new retry utility function to replace the deprecated callWithRetry.
    • Removed the callWithRetry function and its associated tests.
    • Renamed runWithExponentialBackOff to retry for consistency.

    Migration steps:

    • Replace any usage of callWithRetry with the new retry function.
    • Update import statements from:
      import { callWithRetry } from '@clerk/shared/callWithRetry';
      to:
      import { retry } from '@clerk/shared/retry';
    • Replace any usage of runWithExponentialBackOff with retry.
    • Update import statements from:
      import { runWithExponentialBackOff } from '@clerk/shared/utils';
      to:
      import { retry } from '@clerk/shared/retry';

Minor Changes

Patch Changes

Don't miss a new javascript release

NewReleases is sending notifications on new releases.