summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2022-07-04 09:32:09 -0700
committerMatthew Miller <matthew@millerti.me>2022-07-04 09:32:09 -0700
commitb9f8bbb30b95dc933cc485ffcf7e21e92c32abda (patch)
tree00367694f64c09a0fcb64020d193859524ff64c1
parent60a37ae66653369325b921a7582d9903699e57e4 (diff)
Update CHANGELOG to v5.3.0
-rw-r--r--CHANGELOG.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8b9139f..7a6db01 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,20 @@
# Changelog
+## v5.3.0
+
+**Packages:**
+
+- @simplewebauthn/browser@5.3.0
+- @simplewebauthn/server@5.3.0
+- @simplewebauthn/typescript-types@5.3.0
+
+**Changes:**
+
+- **[browser]** `startAuthentication()` now accepts a second `useBrowserAutofill` boolean argument that sets up support for credential selection via a browser's autofill prompt (a.k.a. Conditional UI). The new `browserSupportsWebAuthnAutofill()` helper method can be used independently to determine when this feature is supported by the browser ([#214](https://github.com/MasterKale/SimpleWebAuthn/pull/214))
+- **[browser]** `startRegistration()` and `startAuthentication()` will return a new `authenticatorAttachment` value when present that captures whether a cross-platform or platform authenticator was just used ([#221](https://github.com/MasterKale/SimpleWebAuthn/pull/221))
+- **[typescript-types]** A new `PublicKeyCredentialFuture` interface has been added to define new properties currently defined in the WebAuthn L3 spec draft. These new values support the above new functionality until official TypeScript types are updated accordingly ([#214](https://github.com/MasterKale/SimpleWebAuthn/pull/214), [#221](https://github.com/MasterKale/SimpleWebAuthn/pull/221))
+- **[typescript-types]** A new `"hybrid"` transport has been added to `AuthenticatorTransportFuture` while browsers migrate away from the existing `"cable"` transport for cross-device auth ([#222](https://github.com/MasterKale/SimpleWebAuthn/pull/222))
+
## v5.2.1
**Packages:**