Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add signed_nonce userfactor type #414

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
Loading