From 492808cae0e804793aef9a02a902fce988f9fc6d Mon Sep 17 00:00:00 2001 From: Jonas Hungershausen Date: Wed, 15 Nov 2023 15:11:27 +0100 Subject: [PATCH] feat(changelog): add support for native recovery (#3624) Adds the ability to complete the recovery flow properly on API flows. This PR also streamlines the behavior for SPA flows to not return 422 errors anymore. To enable this new behavior, set the features.use_continue_with_transitions flag in the config to `true`. See also https://github.com/ory/kratos/pull/3273 --- contrib/quickstart/kratos/email-password/kratos.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/contrib/quickstart/kratos/email-password/kratos.yml b/contrib/quickstart/kratos/email-password/kratos.yml index 935727cc2bad..d95e0ef68715 100644 --- a/contrib/quickstart/kratos/email-password/kratos.yml +++ b/contrib/quickstart/kratos/email-password/kratos.yml @@ -97,3 +97,6 @@ identity: courier: smtp: connection_uri: smtps://test:test@mailslurper:1025/?skip_ssl_verify=true + +feature_flags: + use_continue_with_transitions: true