You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,22 @@
1
1
# Change Log
2
2
3
3
## 3.0 (Beta)
4
+
5
+
This is a major cleanup and CSS adjustments so please test before deployment.
6
+
4
7
* Updated to fido2==1.1.3
5
-
* Removed: CBOR and exchange is done in JSON now
8
+
* Removed: CBOR and exchange is done in JSON now.
9
+
* Removed: `simplejson` package from dependencies.
10
+
* Email OTP is always 6 numbers.
11
+
* Better support for bootstrap 4 and 5.
6
12
* Added: the following settings
7
13
*`MFA_FIDO2_RESIDENT_KEY`: Defaults to `Discouraged` which was the old behaviour
8
14
*`MFA_FIDO2_AUTHENTICATOR_ATTACHMENT`: If you like to have a PLATFORM Authenticator, Defaults to NONE
9
15
*`MFA_FIDO2_USER_VERIFICATION`: If you need User Verification
10
16
*`MFA_FIDO2_ATTESTATION_PREFERENCE`: If you like to have an Attention
17
+
*`MFA_ENFORCE_EMAIL_TOKEN`: if you want the user to receive OTP by email without enrolling, if this the case, the system admins shall make sure that emails are valid.
18
+
*`MFA_SHOW_OTP_IN_EMAIL_SUBJECT`: If you like to show the OTP in the email subject
19
+
*`MFA_OTP_EMAIL_SUBJECT`: The subject of the email after the token allows placeholder '%s' for otp
MFA_ENFORCE_EMAIL_TOKEN=False# If you want the user to receive OTP by email without enrolling, if this the case, the system admins shall make sure that emails are valid.
113
+
MFA_SHOW_OTP_IN_EMAIL_SUBJECT=False#If you like to show the OTP in the email subject
114
+
MFA_OTP_EMAIL_SUBJECT="OTP"# The subject of the email after the token
Usually your login function will check for username and password, log the user in if the username and password are correct and create the user session, to support mfa, this has to change
0 commit comments