diff --git a/CHANGELOG.md b/CHANGELOG.md index 730f324..8e456fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,11 @@ # Change Log +## 2.5.0 + + * Fixed: issue in the 'Authorize' button don't show on Firefox and Chrome on iOS. + Note: It seems Firefox doesn't support WebAuthn on iOS + * Fixed: Support for bootstrap5 +Thanks to @ezrajrice + ## 2.4.0 * Fixed: issue in the 'Authorize' button don't show on Safari Mobile. diff --git a/README.md b/README.md index 32c18a2..2953966 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Depends on * ua-parser * user-agents * python-jose -* fido2==0.9.0 +* fido2==1.0.0 # Installation 1. using pip @@ -187,6 +187,7 @@ function some_func() { * [willingham](https://github.com/willingham) * [AndreasDickow](https://github.com/AndreasDickow) * [mnelson4](https://github.com/mnelson4) +* [ezrajrice](https://github.com/ezrajrice) # Security contact information diff --git a/example/example/settings.py b/example/example/settings.py index cc9633c..6c1b772 100644 --- a/example/example/settings.py +++ b/example/example/settings.py @@ -146,5 +146,5 @@ MFA_SUCCESS_REGISTRATION_MSG="Go to Home" TOKEN_ISSUER_NAME="PROJECT_NAME" #TOTP Issuer name U2F_APPID="https://localhost" #URL For U2F -FIDO_SERVER_ID=u"local.mkalioby.com" # Server rp id for FIDO2, it the full domain of your project -FIDO_SERVER_NAME=u"TestApp" +FIDO_SERVER_ID="localhost" # Server rp id for FIDO2, it the full domain of your project +FIDO_SERVER_NAME="TestApp" diff --git a/example/example/templates/base.html b/example/example/templates/base.html index 786d08b..e5b1a6e 100644 --- a/example/example/templates/base.html +++ b/example/example/templates/base.html @@ -36,7 +36,7 @@