Skip to content

Commit 49757d9

Browse files
add signed_nonce userfactor type (#414)
1 parent 7ffe66f commit 49757d9

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Okta Python SDK Changelog
22

3+
## 2.9.8
4+
* Add signed_nonce UserFactor type
5+
6+
## 2.9.7
7+
* Remove ecdsa dependency
8+
39
## 2.9.5
410
* Clear access token from cache on call to OAuth.clear_access_token()
511

okta/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.9.7'
1+
__version__ = '2.9.8'

okta/constants.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ def find_app_model(sign_on_mode, template_name):
6868
FT.TOKEN_SOFTWARE_TOTP: models.TotpUserFactor,
6969
FT.U_2_F: models.U2FUserFactor,
7070
FT.WEB: models.WebUserFactor,
71-
FT.WEBAUTHN: models.WebAuthnUserFactor
71+
FT.WEBAUTHN: models.WebAuthnUserFactor,
72+
FT.SIGNED_NONCE: models.UserFactor
7273
}
7374

7475

run_unit_tests.sh

100644100755
File mode changed.

0 commit comments

Comments
 (0)