From 15745ce566322fbce53a7a4d1c76b7c7427ffc04 Mon Sep 17 00:00:00 2001 From: Alex Carpenter Date: Thu, 13 Feb 2025 12:06:26 -0500 Subject: [PATCH 1/2] chore(repo): Add missing changeset for tanstack-start EmailLinkErrorCodeStatus --- .changeset/unlucky-spiders-kick.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .changeset/unlucky-spiders-kick.md diff --git a/.changeset/unlucky-spiders-kick.md b/.changeset/unlucky-spiders-kick.md new file mode 100644 index 00000000000..eab4e294ecd --- /dev/null +++ b/.changeset/unlucky-spiders-kick.md @@ -0,0 +1,12 @@ +--- +'@clerk/tanstack-start': minor +--- + +Introduce `EmailLinkErrorCodeStatus` to support users in custom flows and mark `EmailLinkErrorCode` as deprecated. + +```diff +- import { EmailLinkErrorCode } from '@clerk/nextjs/errors' ++ import { EmailLinkErrorCodeStatus } from '@clerk/nextjs/errors' +``` + +PR https://github.com/clerk/javascript/pull/5142 From a4fa8bd7e1de8f3ee9de117831581e12240673ad Mon Sep 17 00:00:00 2001 From: Alex Carpenter Date: Thu, 13 Feb 2025 12:15:29 -0500 Subject: [PATCH 2/2] Update .changeset/unlucky-spiders-kick.md Co-authored-by: panteliselef --- .changeset/unlucky-spiders-kick.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.changeset/unlucky-spiders-kick.md b/.changeset/unlucky-spiders-kick.md index eab4e294ecd..0d48ade56f2 100644 --- a/.changeset/unlucky-spiders-kick.md +++ b/.changeset/unlucky-spiders-kick.md @@ -5,8 +5,8 @@ Introduce `EmailLinkErrorCodeStatus` to support users in custom flows and mark `EmailLinkErrorCode` as deprecated. ```diff -- import { EmailLinkErrorCode } from '@clerk/nextjs/errors' -+ import { EmailLinkErrorCodeStatus } from '@clerk/nextjs/errors' +- import { EmailLinkErrorCode } from '@clerk/tanstack-start/errors' ++ import { EmailLinkErrorCodeStatus } from '@clerk/tanstack-start/errors' ``` PR https://github.com/clerk/javascript/pull/5142