@simplewebauthn/server
Advanced tools
Changelog
v9.0.0 - The one in which 11 characters were saved
@simplewebauthn/typescript-types
package has been renamed to
@simplewebauthn/types
(#508)@simplwebauthn/typescript-types
will need to be replaced with the new package
name @simplewebauthn/types
:Before:
import { ... } from '@simplwebauthn/typescript-types';
After:
$> npm uninstall @simplewebauthn/typescript-types
$> npm install -D @simplewebauthn/types
import { ... } from '@simplwebauthn/types';
Changelog
v8.3.7
WebAuthnError
class can now be imported from @simplewebauthn/browser
for
simpler error detection and handling when calling startRegistration()
and
startAuthentication()
(#505, with
thanks to @zoontek)COSEPublicKeyEC2
, COSEPublicKeyOKP
, and COSEPublicKeyRSA
types can now be
imported from @simplwebauthn/server/helpers
to help type possible return values from
decodeCredentialPublicKey()
(#504, with
thanks to @mmv08)generateRegistrationOptions()
will now be
treated as UTF-8 strings to align with the existing behavior of generateAuthenticationOptions()
(#507)Changelog
v8.3.3
deno vendor
will no longer error out because typescript-types/src/dom.ts
is missing (#466)Changelog
v8.2.0
startRegistration()
will no longer error out on registration responses generated
by the 1Password browser extension (#443,
with thanks to @unix)base64URLStringToBuffer()
and bufferToBase64URLString()
are now
exported from @simplewebauthn/browser
(#444)verifyRegistrationResponse()
and verifyAuthenticationResponse()
now accept a new
expectedType
argument that can be used to, for example, verify Secure Payment Confirmation
responses (#436, with thanks to
@fabiancook)