Skip to content

Commit ebdd33d

Browse files
authored
Changelog (#208)
* fix: changelog and migration * fix: changelog and migration * fix: changelog and migration * fix: changelog
1 parent 715f05f commit ebdd33d

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff 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`

0 commit comments

Comments
 (0)