Skip to content

fix(deps): update all non-major dependencies#521

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all-minor-patch
Open

fix(deps): update all non-major dependencies#521
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented Feb 26, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@playwright/test (source) 1.60.01.61.1 age confidence
@types/node (source) 24.10.1324.13.3 age confidence
@vitejs/plugin-vue (source) 6.0.76.0.8 age confidence
algoliasearch (source) 4.26.04.27.0 age confidence
element-plus (source) 2.13.22.14.3 age confidence
katex (source) 0.16.330.17.0 age confidence
less (source) 4.5.14.6.7 age confidence
marked (source) 18.0.418.0.6 age confidence
mermaid 11.15.011.16.0 age confidence
nodejieba 3.5.23.5.8 age confidence
puppeteer (source) 24.40.024.43.1 age confidence
rollup-plugin-visualizer 7.0.07.0.1 age confidence
tsx (source) 4.19.34.23.1 age confidence
unplugin-vue-components 32.0.032.1.0 age confidence
vite (source) 8.0.168.1.5 age confidence
vitest (source) 4.1.84.1.10 age confidence
vue (source) 3.5.293.5.40 age confidence
vue-router (source) 5.0.35.2.0 age confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.61.1

Compare Source

v1.61.0

Compare Source

🔑 WebAuthn passkeys

New Credentials virtual authenticator, available via browserContext.credentials, lets tests register passkeys and answer navigator.credentials.create() / navigator.credentials.get() ceremonies in the page — no real hardware key required, works in all browsers:

const context = await browser.newContext();

// Seed a passkey your backend provisioned for a test user.
await context.credentials.create('example.com', {
  id: credentialId,
  userHandle,
  privateKey,
  publicKey,
});
await context.credentials.install();

const page = await context.newPage();
await page.goto('https://example.com/login');
// The page's navigator.credentials.get() is answered with the seeded passkey.

You can also let the app register a passkey once in a setup test, read it back with credentials.get(), and seed it into later tests — see Credentials for details.

🗃️ Web Storage

New WebStorage API, available via page.localStorage and page.sessionStorage, reads and writes the page's storage for the current origin:

await page.localStorage.setItem('token', 'abc');
const token = await page.localStorage.getItem('token');
const items = await page.sessionStorage.items();
New APIs
Network
Browser and Screencast
  • New option artifactsDir in browserType.connectOverCDP() controls where artifacts such as traces and downloads are stored when attached to an existing browser.
  • New option cursor in screencast.showActions() controls the cursor decoration rendered for pointer actions.
  • The onFrame callback in screencast.start() now receives a timestamp of when the frame was presented by the browser.
Test runner
  • The testOptions.video option now supports the same set of modes as trace: new 'on-all-retries', 'retain-on-first-failure' and 'retain-on-failure-and-retries' values. See the video modes table for which runs are recorded and kept in each mode.
  • Supported expect.soft.poll(...).
  • New fullConfig.argv — a snapshot of process.argv from the runner process, handy for reading custom arguments passed after the -- separator.
  • New fullConfig.failOnFlakyTests mirrors the config option, so reporters can explain why a flaky run failed.
  • testInfo.errors now lists each sub-error of an AggregateError as a separate entry.
  • New -G command line shorthand for --grep-invert.
🛠️ Other improvements
  • Playwright now supports Ubuntu 26.04.
  • HAR and trace recordings now include WebSocket requests.
Browser Versions
  • Chromium 149.0.7827.55
  • Mozilla Firefox 151.0
  • WebKit 26.5

This version was also tested against the following stable channels:

  • Google Chrome 149
  • Microsoft Edge 149
vitejs/vite-plugin-vue (@​vitejs/plugin-vue)

v6.0.8

Features
Bug Fixes
algolia/algoliasearch-client-javascript (algoliasearch)

v4.27.0

Compare Source

What's Changed

New Contributors

Full Changelog: algolia/algoliasearch-client-javascript@4.26.0...4.27.0

element-plus/element-plus (element-plus)

v2.14.3

Compare Source

2.14.3

2026-07-10

Features
Bug fixes

v2.14.2

Compare Source

2.14.2

2026-06-12

Features
Bug fixes

v2.14.1

Compare Source

2.14.1

2026-05-29

Features
Bug fixes
Refactors

v2.14.0

Compare Source

2.14.0

2026-05-08

Features
Bug fixes
Refactors

v2.13.7

Compare Source

2.13.7

2026-04-10

Features
Bug fixes
Refactors

v2.13.6

Compare Source

2.13.6

2026-03-20

Features
Bug fixes
  • Components [tooltip] sync visible after disabled toggle (#​23738 by @​snowbitx)
  • Components [mention] remove the whole input containing a split (#​23753 by @​rzzf)
  • Components [tab] incorrect boundary detection when container size is a float number (#​23774 by @​rzzf)
  • Components [table] expanded rows cannot be updated using array methods (#​23761 by @​rzzf)
  • Components [tree-v2] update expanded state when defaultExpandedKeys change (#​23557 by @​hellomrbigshot)
  • Components [select] using the options prop can cause list data loss when quickly switching between dropdowns (#​23780 by @​lw56777)
  • Components [select] allow empty labels when persistent is false (#​23809 by @​snowbitx)
  • Components [popper] update popover style when content size changes (#​23802 by @​rzzf)
  • Components [tabs] incorrect boundary detection when container size is a float number (#​23776 by @​rzzf)
  • Hooks [use-composition] abnormal state in Korean input composition (#​23831 by @​rzzf)
  • Components [select/select-v2] avoid hiding the dropdown when there is data in options (#​23838 by @​keeplearning66)
  • Improvement(components): [tabs] navigation wheel scrolling experience (#​23775 by @​rzzf)
  • Style(components): [tag] fix icon in slot causing text wrap (#​23725 by @​zmyjs)
Refactors

v2.13.5

Compare Source

2.13.5

2026-03-07

Bug fixes

v2.13.4

Compare Source

2.13.4

2026-03-06

Features
Bug fixes

v2.13.3

Compare Source

2.13.3

2026-02-28

Features
Bug fixes
KaTeX/KaTeX (katex)

v0.17.0

Compare Source

Performance Improvements
  • simplify defineFunction to avoid destructuring, improve typing (#​4222) (fb604e6)
BREAKING CHANGES
  • The internal API for __defineFunction changed: you should no longer wrap properties in props.

0.16.47 (2026-05-16)

Bug Fixes

0.16.46 (2026-05-13)

Bug Fixes

0.16.45 (2026-04-05)

Bug Fixes

0.16.44 (2026-03-27)

Bug Fixes
  • remove extra \jot space at bottom of align/gather/etc. (#​4184) (3870ee9)

0.16.43 (2026-03-26)

Bug Fixes
  • use makeEm() consistently to truncate long CSS decimals (#​4181) (0967dcc)

0.16.42 (2026-03-24)

Features

0.16.41 (2026-03-24)

Bug Fixes

0.16.40 (2026-03-20)

Bug Fixes

0.16.39 (2026-03-19)

Bug Fixes

0.16.38 (2026-03-08)

Bug Fixes

0.16.37 (2026-03-06)

Bug Fixes

0.16.36 (2026-03-06)

Bug Fixes

0.16.35 (2026-03-05)

Bug Fixes

0.16.34 (2026-03-05)

Bug Fixes

0.16.33 (2026-02-23)

Bug Fixes

0.16.32 (2026-02-22)

Bug Fixes

0.16.31 (2026-02-22)

Bug Fixes

0.16.30 (2026-02-22)

Bug Fixes

0.16.29 (2026-02-22)

Bug Fixes

0.16.28 (2026-01-25)

Bug Fixes
  • type: add missing types definition path to package.json (#​4125) (0ef8921)

0.16.27 (2025-12-07)

Features
  • support equals sign and surrounding whitespace in \htmlData attribute values (#​4112) (c77aaec)

0.16.26 (2025-12-07)

Bug Fixes
  • \mathop

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

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

@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Feb 26, 2026

Copy link
Copy Markdown

Deploying note with  Cloudflare Pages  Cloudflare Pages

Latest commit: 7b26058
Status:🚫  Build failed.

View logs

@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from f9dfc32 to 37c5813 Compare February 26, 2026 08:12
@renovate renovate Bot changed the title chore(deps): update dependency @types/node to v24.10.14 chore(deps): update all non-major dependencies Feb 26, 2026
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 37c5813 to 1547557 Compare February 26, 2026 22:15
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 1547557 to 6b27c4d Compare February 27, 2026 09:40
@renovate renovate Bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Feb 27, 2026
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 6b27c4d to 9270c8d Compare February 28, 2026 01:58
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 9270c8d to 07bcf4d Compare February 28, 2026 04:47
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 07bcf4d to 70c4a11 Compare February 28, 2026 14:01
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 70c4a11 to 819170a Compare March 3, 2026 14:33
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 819170a to 64fe88b Compare March 4, 2026 18:50
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 64fe88b to 010c9f6 Compare March 5, 2026 04:40
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 010c9f6 to 481e6f5 Compare March 5, 2026 15:50
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 481e6f5 to e683d12 Compare March 5, 2026 19:55
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from e683d12 to a4cede1 Compare March 6, 2026 01:20
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from a4cede1 to 5dc3347 Compare March 6, 2026 05:23
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from cc33e17 to 4d66805 Compare March 9, 2026 14:50
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 4d66805 to b1a0680 Compare March 10, 2026 18:57
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from b1a0680 to 8256095 Compare March 10, 2026 22:57
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 8256095 to 1f89f29 Compare March 11, 2026 18:50
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 1f89f29 to 94fe71d Compare March 12, 2026 18:34
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 94fe71d to fca8af4 Compare March 13, 2026 14:49
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from fca8af4 to 6bb408d Compare March 13, 2026 22:56
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 6bb408d to 55877f2 Compare March 18, 2026 01:53
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 55877f2 to 9683fc1 Compare March 19, 2026 14:12
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 9683fc1 to 0660286 Compare March 19, 2026 18:11
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 0660286 to 3dd14a6 Compare March 20, 2026 07:44
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 3dd14a6 to 307c155 Compare March 20, 2026 12:44
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 307c155 to 8ab7125 Compare March 20, 2026 18:15
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 8ab7125 to fb7bd34 Compare March 23, 2026 09:30
@renovate

renovate Bot commented Jun 13, 2026

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm warn Unknown env config "store". This will stop working in the next major version of npm. See `npm help npmrc` for supported config options.
npm error code ERESOLVE
npm error ERESOLVE could not resolve
npm error
npm error While resolving: @vue/server-renderer@3.5.29
npm error Found: vue@3.5.40
npm error node_modules/vue
npm error   vue@"3.5.40" from the root project
npm error   peer vue@"^3.2.0" from @element-plus/icons-vue@2.3.2
npm error   node_modules/@element-plus/icons-vue
npm error     @element-plus/icons-vue@"2.3.2" from the root project
npm error     @element-plus/icons-vue@"^2.3.2" from element-plus@2.14.3
npm error     node_modules/element-plus
npm error       element-plus@"2.14.3" from the root project
npm error   9 more (@vue-macros/common, @vue/test-utils, vue-demi, vue-demi, ...)
npm error
npm error Could not resolve dependency:
npm error peer vue@"3.5.29" from @vue/server-renderer@3.5.29
npm error node_modules/@vue/server-renderer
npm error   peerOptional @vue/server-renderer@"3.x" from @vue/test-utils@2.4.11
npm error   node_modules/@vue/test-utils
npm error     dev @vue/test-utils@"2.4.11" from the root project
npm error
npm error Conflicting peer dependency: vue@3.5.29
npm error node_modules/vue
npm error   peer vue@"3.5.29" from @vue/server-renderer@3.5.29
npm error   node_modules/@vue/server-renderer
npm error     peerOptional @vue/server-renderer@"3.x" from @vue/test-utils@2.4.11
npm error     node_modules/@vue/test-utils
npm error       dev @vue/test-utils@"2.4.11" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry this command with --force or --legacy-peer-deps to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /runner/cache/others/npm/_logs/2026-07-17T01_20_04_952Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2026-07-17T01_20_04_952Z-debug-0.log

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants