From b366492eded6989c7f568b377ed7462c30cd598d Mon Sep 17 00:00:00 2001 From: Nikos Polykandriotis Date: Mon, 18 Nov 2024 19:39:21 +0200 Subject: [PATCH 1/6] Add changes for api version 2024-10-01 --- docs/backend-requests/versioning/available-versions.mdx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/backend-requests/versioning/available-versions.mdx b/docs/backend-requests/versioning/available-versions.mdx index 56eb20b1f6..56898d0c2b 100644 --- a/docs/backend-requests/versioning/available-versions.mdx +++ b/docs/backend-requests/versioning/available-versions.mdx @@ -5,6 +5,14 @@ description: A list of the available API versions and their breaking changes. Below is a list of all the available API versions with their respective breaking changes. +### 2024-10-01 + +- Notification for new sign ins to users' accounts feature becomes available +- The response for Sign Ins with an email address that matches a **SAML connection** is updated : + - Instead of responding with a status of `needs_identifier` the API will now return a status of `needs_first_factor` + - The email address that matched will be returned in the identifier field. + - The only strategy that will be included in supported first factors is `enterprise_sso`. + ### 2021-02-05 The initial API version was released on 2021-02-05 as part of the first Clerk release. It predates the versioning system. All changes made to it since then are backwards compatible. From e64645b965e9c1c49812af4d40de5fe6ba7803ff Mon Sep 17 00:00:00 2001 From: victoria Date: Tue, 26 Nov 2024 16:38:46 -0500 Subject: [PATCH 2/6] Update docs/backend-requests/versioning/available-versions.mdx --- docs/backend-requests/versioning/available-versions.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/backend-requests/versioning/available-versions.mdx b/docs/backend-requests/versioning/available-versions.mdx index 56898d0c2b..39451c6652 100644 --- a/docs/backend-requests/versioning/available-versions.mdx +++ b/docs/backend-requests/versioning/available-versions.mdx @@ -7,7 +7,7 @@ Below is a list of all the available API versions with their respective breaking ### 2024-10-01 -- Notification for new sign ins to users' accounts feature becomes available +- Notification for new sign-ins to users' accounts feature becomes available - The response for Sign Ins with an email address that matches a **SAML connection** is updated : - Instead of responding with a status of `needs_identifier` the API will now return a status of `needs_first_factor` - The email address that matched will be returned in the identifier field. From 84f8d5392fba067ccd1508fb12895581bd85609e Mon Sep 17 00:00:00 2001 From: victoria Date: Tue, 26 Nov 2024 16:38:56 -0500 Subject: [PATCH 3/6] Update docs/backend-requests/versioning/available-versions.mdx --- docs/backend-requests/versioning/available-versions.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/backend-requests/versioning/available-versions.mdx b/docs/backend-requests/versioning/available-versions.mdx index 39451c6652..9248a8a3af 100644 --- a/docs/backend-requests/versioning/available-versions.mdx +++ b/docs/backend-requests/versioning/available-versions.mdx @@ -9,7 +9,7 @@ Below is a list of all the available API versions with their respective breaking - Notification for new sign-ins to users' accounts feature becomes available - The response for Sign Ins with an email address that matches a **SAML connection** is updated : - - Instead of responding with a status of `needs_identifier` the API will now return a status of `needs_first_factor` + - Instead of responding with a status of `needs_identifier`, the API now returns a status of `needs_first_factor` - The email address that matched will be returned in the identifier field. - The only strategy that will be included in supported first factors is `enterprise_sso`. From 4f3752ced70d2a06948f47bc613f2f6766d1ed4c Mon Sep 17 00:00:00 2001 From: Alexis Aguilar <98043211+alexisintech@users.noreply.github.com> Date: Wed, 27 Nov 2024 09:43:52 -0500 Subject: [PATCH 4/6] Update docs/backend-requests/versioning/available-versions.mdx Co-authored-by: victoria --- docs/backend-requests/versioning/available-versions.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/backend-requests/versioning/available-versions.mdx b/docs/backend-requests/versioning/available-versions.mdx index 9248a8a3af..893774a734 100644 --- a/docs/backend-requests/versioning/available-versions.mdx +++ b/docs/backend-requests/versioning/available-versions.mdx @@ -8,7 +8,7 @@ Below is a list of all the available API versions with their respective breaking ### 2024-10-01 - Notification for new sign-ins to users' accounts feature becomes available -- The response for Sign Ins with an email address that matches a **SAML connection** is updated : +- The response for sign-ins with an email address that matches a **SAML connection** is updated: - Instead of responding with a status of `needs_identifier`, the API now returns a status of `needs_first_factor` - The email address that matched will be returned in the identifier field. - The only strategy that will be included in supported first factors is `enterprise_sso`. From e9d69a39c24a1e3976be4e7f339cfe729068e0dc Mon Sep 17 00:00:00 2001 From: Alexis Aguilar <98043211+alexisintech@users.noreply.github.com> Date: Wed, 27 Nov 2024 09:44:17 -0500 Subject: [PATCH 5/6] Update docs/backend-requests/versioning/available-versions.mdx --- docs/backend-requests/versioning/available-versions.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/backend-requests/versioning/available-versions.mdx b/docs/backend-requests/versioning/available-versions.mdx index 893774a734..82b7b6d81c 100644 --- a/docs/backend-requests/versioning/available-versions.mdx +++ b/docs/backend-requests/versioning/available-versions.mdx @@ -7,7 +7,7 @@ Below is a list of all the available API versions with their respective breaking ### 2024-10-01 -- Notification for new sign-ins to users' accounts feature becomes available +- Notification for new sign-ins to users' accounts feature becomes available. - The response for sign-ins with an email address that matches a **SAML connection** is updated: - Instead of responding with a status of `needs_identifier`, the API now returns a status of `needs_first_factor` - The email address that matched will be returned in the identifier field. From f55aab1deea4a5bcf0cf25888670119a7f338f35 Mon Sep 17 00:00:00 2001 From: Alexis Aguilar <98043211+alexisintech@users.noreply.github.com> Date: Wed, 27 Nov 2024 09:44:28 -0500 Subject: [PATCH 6/6] Update docs/backend-requests/versioning/available-versions.mdx --- docs/backend-requests/versioning/available-versions.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/backend-requests/versioning/available-versions.mdx b/docs/backend-requests/versioning/available-versions.mdx index 82b7b6d81c..726e69fd79 100644 --- a/docs/backend-requests/versioning/available-versions.mdx +++ b/docs/backend-requests/versioning/available-versions.mdx @@ -9,7 +9,7 @@ Below is a list of all the available API versions with their respective breaking - Notification for new sign-ins to users' accounts feature becomes available. - The response for sign-ins with an email address that matches a **SAML connection** is updated: - - Instead of responding with a status of `needs_identifier`, the API now returns a status of `needs_first_factor` + - Instead of responding with a status of `needs_identifier`, the API now returns a status of `needs_first_factor`. - The email address that matched will be returned in the identifier field. - The only strategy that will be included in supported first factors is `enterprise_sso`.