chore(deps): update all non-major dependencies#60
Merged
Conversation
427c8a8 to
4fbe24e
Compare
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
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:
^1.60.0→^1.61.1^2.0.14→^2.1.2^0.22.1→^0.23.1^0.6.1→^0.6.424.16.0→24.18.0^1.60.0→^1.61.111.6.0→11.9.0v6.0.8→v6.0.9^3.8.4→^3.9.4Release Notes
microsoft/playwright (@playwright/test)
v1.61.1Compare Source
v1.61.0Compare 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: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:
New APIs
Network
Browser and Screencast
artifactsDirin browserType.connectOverCDP() controls where artifacts such as traces and downloads are stored when attached to an existing browser.cursorin screencast.showActions() controls the cursor decoration rendered for pointer actions.onFramecallback in screencast.start() now receives atimestampof when the frame was presented by the browser.Test runner
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.expect.soft.poll(...).process.argvfrom the runner process, handy for reading custom arguments passed after the--separator.AggregateErroras a separate entry.-Gcommand line shorthand for--grep-invert.🛠️ Other improvements
Browser Versions
This version was also tested against the following stable channels:
web-infra-dev/rsbuild (@rsbuild/core)
v2.1.2Compare Source
What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes
Full Changelog: web-infra-dev/rsbuild@v2.1.1...v2.1.2
v2.1.1Compare Source
What's Changed
Bug Fixes 🐞
Document 📖
Other Changes
Full Changelog: web-infra-dev/rsbuild@v2.1.0...v2.1.1
v2.1.0Compare Source
💡 See Announcing Rsbuild 2.1 for more details
What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes
New Contributors
Full Changelog: web-infra-dev/rsbuild@v2.0.15...v2.1.0
v2.0.15Compare Source
What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Document 📖
Other Changes
Full Changelog: web-infra-dev/rsbuild@v2.0.14...v2.0.15
web-infra-dev/rslib (@rslib/core)
v0.23.1Compare Source
What's Changed
New Features 🎉
Bug Fixes 🐞
Other Changes
Full Changelog: web-infra-dev/rslib@v0.23.0...v0.23.1
v0.23.0Compare Source
What's Changed
New Features 🎉
Performance 🚀
Other Changes
Full Changelog: web-infra-dev/rslib@v0.22.1...v0.23.0
web-infra-dev/rslint (@rslint/core)
v0.6.4Compare Source
Highlights
Rslint Node API for In-Memory Linting
Rslint now ships a programmatic Node.js API (
@rslint/core) aligned with ESLint v10's interface. UseRslint#lintFiles/lintTextto lint from scripts, dev servers, or editor integrations — results are ESLint-shaped (LintResult[]withmessages,errorCount,warningCount,output, etc.). Auto-fix is supported viafix: trueplusRslint.outputFixes. Config resolution (overrideConfig, file discovery, normalization) all stays in JS; the Go--apiserver receives only the final resolved config and never reads disk.Fully in-memory linting is also supported through the new
virtualFilesoverlay — source, config, andtsconfig.jsoncan all live in memory with zero disk access, which makes the API a natural fit for playgrounds, web workers, and editor integrations:See the new Node.js API guide for details.
What's Changed
New Features 🎉
prefer-jest-mockedrule by @eryue0220 in #1147prefer-spy-onrule by @eryue0220 in #1148Other Changes
Full Changelog: web-infra-dev/rslint@v0.6.3...v0.6.4
v0.6.3Compare Source
What's Changed
New Features 🎉
prefer-hooks-on-toprule by @eryue0220 in #1107prefer-hooks-in-orderrule by @eryue0220 in #1110no-confusing-set-timeoutrule by @eryue0220 in #1118no-exportrule by @eryue0220 in #1124Bug Fixes 🐞
??operand position with typescript-eslint by @fansenze in #1141Other Changes
@stylisticconformance into per-category suites by @fansenze in #1113Full Changelog: web-infra-dev/rslint@v0.6.2...v0.6.3
v0.6.2Compare Source
What's Changed
New Features 🎉
prefer-equality-matcherrule by @eryue0220 in #1061Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Other Changes
dd6bcebby @fansenze in #1103Full Changelog: web-infra-dev/rslint@v0.6.1...v0.6.2
actions/node-versions (node)
v24.18.0: 24.18.0Compare Source
Node.js 24.18.0
v24.17.0: 24.17.0Compare Source
Node.js 24.17.0
pnpm/pnpm (pnpm)
v11.9.0Compare Source
v11.8.0Compare Source
Minor Changes
c112b61: Added a--dry-runoption topnpm install. It runs a full dependency resolution and reports what an install would change, but writes nothing to disk (no lockfile, nonode_modules) and always exits with code 0. This mirrors the preview semantics ofnpm install --dry-run#7340.179ebc4:pnpm run --no-bailnow exits with a non-zero exit code when any of the executed scripts fail, while still running every matched script to completion. This makes the exit-code behavior of--no-bailconsistent between recursive and non-recursive runs (recursive runs already failed at the end). Previously, a non-recursivepnpm run --no-bailalways exited with code 0, even when a script failed #8013.0474a9c: Added support for generating Node.js package maps atnode_modules/.package-map.jsonduring isolated and hoisted installs. Added thenode-experimental-package-mapsetting to inject the generated map into pnpm-managed Node.js script environments, and the `node-packagConfiguration
📅 Schedule: (in timezone Asia/Shanghai)
* 0-3 1,15 * *)🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.