-
Notifications
You must be signed in to change notification settings - Fork 4
Update dependency @simplewebauthn/server to v13 #568
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
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/simplewebauthn-server-13.x
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2551619
to
7f05675
Compare
7f05675
to
703be8e
Compare
703be8e
to
1c963e1
Compare
1c963e1
to
df998e5
Compare
df998e5
to
be66ff4
Compare
be66ff4
to
d5cd078
Compare
a5d52a9
to
31bf88b
Compare
31bf88b
to
4fc7ff8
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^11.0.0
->^13.0.0
Release Notes
MasterKale/SimpleWebAuthn (@simplewebauthn/server)
v13.1.2
Compare Source
Changes
ResidentKeyRequirement
type to help with type inference(#704)
v13.1.1
Compare Source
Changes:
"android-key"
attestation statement verification has been modernized(#675)
"tpm"
attestation statements(#673)
v13.1.0
Compare Source
Changes:
cross-fetch
dependency has been removed from the project to silence in theconsole
DeprecationWarning
's about a "punycode
" module(#661)
startRegistration()
andstartAuthentication()
will now warn about calls madeusing the pre-v11 call structure to encourage refactoring to use the current call structure, but
still try to handle such calls the best they can
(#664)
v13.0.0
Compare Source
Hot on the heels of the last major release, v13 introduces support for registration hints! Refined
types and improved attestation trust anchor verification are also included. Last but not least, we
say goodbye to one of the project's packages for better docs and fewer dependencies to install. Read
on for more information, including refactor advice for dealing with the retirement of
@simplewebauthn/types.
Changes:
preferredAuthenticatorType
argument can be set when callinggenerateRegistrationOptions()
to generate options that encourage the browser to direct the userto register one of three types of authenticators:
'securityKey'
,'localDevice'
, or'remoteDevice'
(a.k.a. opinionatedWebAuthn hints
support) (#653)
startRegistration()
will recognizehints
if specified inoptionsJSON
(#652)
(#650)
within the browser and server packages. See Breaking Changes below for more info
(#655)
Breaking Changes
@typescript/types is being retired
Its types will now be included directly in @simplewebauthn/browser and
@simplewebauthn/server.
To refactor existing imports from /types, simply import them from /browser or /server
instead:
Before:
After:
[server]
attestationType
no longer accepts'indirect'
The benefits of indirect attestation are too minimal to be useful for Relying Parties. In practice
it is almost never used over ignoring the concept completely with
'none'
or needing to beintentional and setting
'direct'
.RP's that have been specifying
attestationType: 'indirect'
when callinggenerateRegistrationOptions()
will need to refactor their code to either omitattestationType
(generateRegistrationOptions()
will default toattestationType: 'none'
) or setattestationType: 'direct'
instead:Before:
After:
-or-
v12.0.0
Compare Source
All SimpleWebAuthn packages are now available for installation from the
JavaScript Registry (JSR)! JSR is an "open-source package registry
for modern JavaScript and TypeScript" - you can read more about this new package registry and its
ESM-centric capabilities here.
All packages in v12.0.0 are functionally identical to v11.0.0! And JSR package hosting is in
addition to existing package hosting on NPM. Nothing changes about package installation via
npm install
. Read on for more information.Packages
Changes
imports are supported (#634)
@simplewebauthn/browser (#634)
To install from JSR, use
npx jsr add @​simplewebauthn/...
ordeno add jsr:@​simplewebauthn/...
depending on which package manager is available.
Projects using
npm
for package management:Projects using
deno
for package management:Projects using HTTPS modules via deno.land/x:
v12.0.0 officially deprecates importing SimpleWebAuthn from deno.land/x. See Breaking Changes
below for refactor guidance.
Breaking Changes
Importing SimpleWebAuthn packages from
"https://deno.land/x/simplewebauthn/..."
URLs is no longersupported. Please use Deno's native support for JSR imports instead, available in projects running
Deno v1.42 and higher.
Before:
After:
Alternatively, use
deno add
to install these packages fromJSR:
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.