File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,21 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1111
1212- Replace ` TotpNotEnabledError ` with ` UnknownUserIdTotpError ` .
1313- Support for MFA recipe
14+ - Adds ` firstFactors ` and ` requiredSecondaryFactors ` for tenant config.
1415- Adds a new ` useStaticKey ` param to ` updateSessionInfo_Transaction `
1516 - This enables smooth switching between ` useDynamicAccessTokenSigningKey ` settings by allowing refresh calls to
1617 change the signing key type of a session
1718
19+ ### Migration
20+
21+ Make sure the core is already upgraded to version 8.0.0 before migrating
22+
23+ ``` sql
24+ ALTER TABLE totp_user_devices ADD COLUMN IF NOT EXISTS created_at BIGINT default 0 ;
25+ ALTER TABLE totp_user_devices
26+ ALTER COLUMN created_at DROP DEFAULT;
27+ ```
28+
1829## [ 6.0.0] - 2024-03-05
1930
2031- Implements ` deleteAllUserRoleAssociationsForRole `
You can’t perform that action at this time.
0 commit comments