From 49757d922af9a5bbc36e5d9b1507a45b2721be28 Mon Sep 17 00:00:00 2001 From: Bryan Apellanes <63638027+bryanapellanes-okta@users.noreply.github.com> Date: Thu, 8 Aug 2024 10:40:09 -0500 Subject: [PATCH] add signed_nonce userfactor type (#414) --- CHANGELOG.md | 6 ++++++ okta/__init__.py | 2 +- okta/constants.py | 3 ++- run_unit_tests.sh | 0 4 files changed, 9 insertions(+), 2 deletions(-) mode change 100644 => 100755 run_unit_tests.sh diff --git a/CHANGELOG.md b/CHANGELOG.md index 62e430bc..7583e64a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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() diff --git a/okta/__init__.py b/okta/__init__.py index 8a93c15a..0ddba430 100644 --- a/okta/__init__.py +++ b/okta/__init__.py @@ -1 +1 @@ -__version__ = '2.9.7' +__version__ = '2.9.8' diff --git a/okta/constants.py b/okta/constants.py index b9f55cf1..51835c51 100644 --- a/okta/constants.py +++ b/okta/constants.py @@ -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 } diff --git a/run_unit_tests.sh b/run_unit_tests.sh old mode 100644 new mode 100755