Skip to content

Commit

Permalink
add signed_nonce userfactor type (#414)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanapellanes-okta authored Aug 8, 2024
1 parent 7ffe66f commit 49757d9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Okta Python SDK Changelog

## 2.9.8
* Add signed_nonce UserFactor type

## 2.9.7
* Remove ecdsa dependency

## 2.9.5
* Clear access token from cache on call to OAuth.clear_access_token()

Expand Down
2 changes: 1 addition & 1 deletion okta/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.9.7'
__version__ = '2.9.8'
3 changes: 2 additions & 1 deletion okta/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ def find_app_model(sign_on_mode, template_name):
FT.TOKEN_SOFTWARE_TOTP: models.TotpUserFactor,
FT.U_2_F: models.U2FUserFactor,
FT.WEB: models.WebUserFactor,
FT.WEBAUTHN: models.WebAuthnUserFactor
FT.WEBAUTHN: models.WebAuthnUserFactor,
FT.SIGNED_NONCE: models.UserFactor
}


Expand Down
Empty file modified run_unit_tests.sh
100644 → 100755
Empty file.

0 comments on commit 49757d9

Please sign in to comment.