[PR #776] [CLOSED] chore(deps): update dependency @simplewebauthn/browser to v13 - autoclosed #6873

Closed
opened 2026-03-01 17:14:46 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/0xJacky/nginx-ui/pull/776
Author: @renovate[bot]
Created: 12/9/2024
Status: Closed

Base: devHead: renovate/simplewebauthn-browser-13.x


📝 Commits (1)

  • e44ae5c chore(deps): update dependency @simplewebauthn/browser to v13

📊 Changes

2 files changed (+6 additions, -13 deletions)

View changed files

📝 app/package.json (+1 -1)
📝 app/pnpm-lock.yaml (+5 -12)

📄 Description

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@simplewebauthn/browser (source) ^12.0.0 -> ^13.0.0 age adoption passing confidence

Release Notes

MasterKale/SimpleWebAuthn (@​simplewebauthn/browser)

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:

  • [server] A new preferredAuthenticatorType argument can be set when calling
    generateRegistrationOptions() to generate options that encourage the browser to direct the user
    to register one of three types of authenticators: 'securityKey', 'localDevice', or
    'remoteDevice' (a.k.a. opinionated
    WebAuthn hints
    support) (#​653)
  • [browser] startRegistration() will recognize hints if specified in optionsJSON
    (#​652)
  • [server] Attestation verification now recognizes intermediate certificates as trust anchors
    (#​650)
  • [browser] [server] The types previously maintained in the types package are now included
    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:

import type {
  AuthenticationResponseJSON,
  RegistrationResponseJSON,
  WebAuthnCredential,
} from '@&#8203;simplewebauthn/types'; // <--

After:

import type {
  AuthenticationResponseJSON,
  RegistrationResponseJSON,
  WebAuthnCredential,
} from '@&#8203;simplewebauthn/server'; // <--

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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/0xJacky/nginx-ui/pull/776 **Author:** [@renovate[bot]](https://github.com/apps/renovate) **Created:** 12/9/2024 **Status:** ❌ Closed **Base:** `dev` ← **Head:** `renovate/simplewebauthn-browser-13.x` --- ### 📝 Commits (1) - [`e44ae5c`](https://github.com/0xJacky/nginx-ui/commit/e44ae5cd77ecaffb1a83beabf7f6982d9b245b83) chore(deps): update dependency @simplewebauthn/browser to v13 ### 📊 Changes **2 files changed** (+6 additions, -13 deletions) <details> <summary>View changed files</summary> 📝 `app/package.json` (+1 -1) 📝 `app/pnpm-lock.yaml` (+5 -12) </details> ### 📄 Description This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@simplewebauthn/browser](https://redirect.github.com/MasterKale/SimpleWebAuthn/tree/master/packages/browser#readme) ([source](https://redirect.github.com/MasterKale/SimpleWebAuthn/tree/HEAD/packages/browser)) | [`^12.0.0` -> `^13.0.0`](https://renovatebot.com/diffs/npm/@simplewebauthn%2fbrowser/12.0.0/13.0.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@simplewebauthn%2fbrowser/13.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@simplewebauthn%2fbrowser/13.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@simplewebauthn%2fbrowser/12.0.0/13.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@simplewebauthn%2fbrowser/12.0.0/13.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>MasterKale/SimpleWebAuthn (@&#8203;simplewebauthn/browser)</summary> ### [`v13.0.0`](https://redirect.github.com/MasterKale/SimpleWebAuthn/blob/HEAD/CHANGELOG.md#v1300---The-one-where-they-share-a-type) [Compare Source](https://redirect.github.com/MasterKale/SimpleWebAuthn/compare/v12.0.0...v13.0.0) 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 **[@&#8203;simplewebauthn/types](https://redirect.github.com/simplewebauthn/types)**. **Changes:** - **\[server]** A new `preferredAuthenticatorType` argument can be set when calling `generateRegistrationOptions()` to generate options that encourage the browser to direct the user to register one of three types of authenticators: `'securityKey'`, `'localDevice'`, or `'remoteDevice'` (a.k.a. opinionated [WebAuthn hints](https://w3c.github.io/webauthn/#dom-publickeycredentialcreationoptions-hints) support) ([#&#8203;653](https://redirect.github.com/MasterKale/SimpleWebAuthn/pull/653)) - **\[browser]** `startRegistration()` will recognize `hints` if specified in `optionsJSON` ([#&#8203;652](https://redirect.github.com/MasterKale/SimpleWebAuthn/pull/652)) - **\[server]** Attestation verification now recognizes intermediate certificates as trust anchors ([#&#8203;650](https://redirect.github.com/MasterKale/SimpleWebAuthn/pull/650)) - **\[browser] \[server]** The types previously maintained in the **types** package are now included within the **browser** and **server** packages. See Breaking Changes below for more info ([#&#8203;655](https://redirect.github.com/MasterKale/SimpleWebAuthn/pull/655)) ##### Breaking Changes **[@&#8203;typescript/types](https://redirect.github.com/typescript/types) is being retired.** Its types will now be included directly in **[@&#8203;simplewebauthn/browser](https://redirect.github.com/simplewebauthn/browser)** and **[@&#8203;simplewebauthn/server](https://redirect.github.com/simplewebauthn/server)**. To refactor existing imports from **/types**, simply import them from **/browser** or **/server** instead: **Before:** ```ts import type { AuthenticationResponseJSON, RegistrationResponseJSON, WebAuthnCredential, } from '@&#8203;simplewebauthn/types'; // <-- ``` **After:** ```ts import type { AuthenticationResponseJSON, RegistrationResponseJSON, WebAuthnCredential, } from '@&#8203;simplewebauthn/server'; // <-- ``` </details> --- ### 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/0xJacky/nginx-ui). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS40Mi40IiwidXBkYXRlZEluVmVyIjoiMzkuNDIuNCIsInRhcmdldEJyYW5jaCI6ImRldiIsImxhYmVscyI6W119--> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-01 17:14:46 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/nginx-ui#6873
No description provided.