From 8bcbbdb385828760bb2be241298a7aeb5d88ac5d Mon Sep 17 00:00:00 2001 From: Jared Perreault Date: Tue, 3 May 2022 11:25:45 -0400 Subject: [PATCH] CHANGELOG / semver --- CHANGELOG.md | 4 ++++ package.json | 2 +- test/spec/idx/authenticator/WebauthnVerification.ts | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 74f72f3e2..c8dbcbb64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 6.4.4 + +- [#1199](https://github.com/okta/okta-auth-js/pull/1199) Fixes webauthn enrollment/verification to accept `credentials` object + ## 6.4.3 ### Fixes diff --git a/package.json b/package.json index 7abcb3699..a5503d0c7 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "private": true, "name": "@okta/okta-auth-js", "description": "The Okta Auth SDK", - "version": "6.4.3", + "version": "6.4.4", "homepage": "https://github.com/okta/okta-auth-js", "license": "Apache-2.0", "main": "build/cjs/index.js", diff --git a/test/spec/idx/authenticator/WebauthnVerification.ts b/test/spec/idx/authenticator/WebauthnVerification.ts index 03c64a4f0..1f7f8e798 100644 --- a/test/spec/idx/authenticator/WebauthnVerification.ts +++ b/test/spec/idx/authenticator/WebauthnVerification.ts @@ -8,7 +8,7 @@ const VALID_CREDS = { signatureData:'foo', }; -describe('idx/authenticator/WebauthnEnrollment', () => { +describe('idx/authenticator/WebauthnVerification', () => { let testContext; beforeEach(() => { const idxAuthenticator: IdxAuthenticator = WebauthnAuthenticatorFactory.build();