chore(deps): update npm dependencies - #163
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/npm-dependencies
branch
from
July 7, 2026 19:09
8671264 to
b60c294
Compare
renovate
Bot
force-pushed
the
renovate/npm-dependencies
branch
from
July 11, 2026 14:49
b60c294 to
cafff14
Compare
renovate
Bot
force-pushed
the
renovate/npm-dependencies
branch
3 times, most recently
from
July 16, 2026 06:08
b07bbfa to
7e8de4a
Compare
renovate
Bot
force-pushed
the
renovate/npm-dependencies
branch
3 times, most recently
from
July 28, 2026 20:08
5b2ba6e to
ea764d6
Compare
renovate
Bot
force-pushed
the
renovate/npm-dependencies
branch
from
July 30, 2026 21:29
ea764d6 to
c7bb510
Compare
renovate
Bot
force-pushed
the
renovate/npm-dependencies
branch
from
August 4, 2026 21:58
c7bb510 to
bcf0a11
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.61.1→1.62.142.5.2→42.8.15.9.3→5.10.1Release Notes
microsoft/playwright (@playwright/test)
v1.62.1Compare Source
v1.62.0Compare Source
🧱 New component testing model
Component testing moves to a stories and galleries model.
A story wraps your component in one specific scenario — hard-coded props, mock data, providers — and a
gallery page that you serve renders stories on demand. The new fixtures.mount() fixture navigates
to the gallery, mounts a story by id, and returns a Locator scoped to the story's root element:
Pass a story type as a template argument to type-check its props, and use
update(props)/unmount()on the returned locator to re-render or tear down within a test.🛑 Cancel operations with AbortSignal
Most operations and web-first assertions now accept a
signaloption that takes anAbortSignal, letting youcancel long-running actions, navigations, waits, and assertions:
Providing a signal does not disable the default timeout; pass
timeout: 0to disable it.🖼️ WebP screenshots
expect(page).toHaveScreenshot() and expect(locator).toHaveScreenshot()
can now store snapshots in the WebP format — just give the snapshot a
.webpname:page.screenshot() and locator.screenshot() also accept
webpas atype,where quality
100(the default) is lossless and lower values use lossy compression.🧩 Custom test filtering with Reporter.preprocess()
New reporter.preprocess() hook runs after the configuration is resolved and before
reporter.onBegin(), letting a reporter mark individual tests as skipped, excluded,
fixed, or failing through a TestRun object:
🔁 Isolated retries
New testConfig.retryStrategy controls when failed tests are retried. The default
'immediate'retries as soon as a worker is free;'isolated'runs all retries at the end,one by one in a single worker, to minimize interference with the rest of the suite:
New APIs
Browser and Context
credentialsincludes the context's virtual WebAuthn Credentials (passkeys) in the storage state, so they can be persisted and re-seeded into later contexts.Actions
scrolloption ("auto"|"none") on actions to opt out of Playwright's automatic scroll-into-view.Network
Evaluation
Command line & MCP
playwright-cli, runnable vianpx playwright mcpandnpx playwright cli.Reporters
mergeFilesreporter option:Announcements
Browser Versions
This version was also tested against the following stable channels:
electron/electron (electron)
v42.8.1: electron v42.8.1Compare Source
Release Notes for v42.8.1
Fixes
BrowserWindowsize corruption on Windows when created with explicitx/yon a secondary monitor whose DPI differs from the primary. #52500 (Also in 43, 44)Dirent.parentPathbeingundefinedforfs.readdir,fs.readdirSync,fs.glob, andfs.globSyncwithwithFileTypes: trueinside asar archives. #52506 (Also in 43, 44)protocol.registerStreamProtocolwhen an error is emitted during a read. #52516 (Also in 41, 43, 44)Other Changes
v42.8.0: electron v42.8.0Compare Source
Release Notes for v42.8.0
Features
availabletoprocess.getSystemMemoryInfo()on Linux, exposingproc/meminfoMemAvailable. #52378 (Also in 43, 44)Fixes
v42.7.1: electron v42.7.1Compare Source
Release Notes for v42.7.1
Fixes
app.disableHardwareAcceleration()not fully disabling GPU hardware usage on Windows starting from Electron 38. #52371 (Also in 41, 43, 44)--remote-debugging-portnot working when inspecting from Chrome'schrome://inspectpage. The DevTools page would appear empty due to the frontend URL pointing to a CDN that returned 404 for Electron's Chromium builds. #51415 (Also in 41)Other Changes
v42.7.0: electron v42.7.0Compare Source
Release Notes for v42.7.0
Features
net.WebSocket, a WHATWG-compatible WebSocket client for the main process that routes through Chromium's network stack. #52345v42.6.2: electron v42.6.2Compare Source
Release Notes for v42.6.2
Fixes
ValidateIntegrityOrDie) and spurious preloadENOENTerrors when an app'sapp.asaris replaced on disk (e.g. by an updater or MDM software) while the app is running. #52294 (Also in 43, 44)BrowserWindowwithuseContentSize: truewould clamp the content area smaller than the configuredmaxWidth/maxHeightwhen programmatically resizing beyond those constraints viasetBounds,setSize, orsetContentSize. #51622Other Changes
v42.6.1: electron v42.6.1Compare Source
Release Notes for v42.6.1
Fixes
v42.6.0: electron v42.6.0Compare Source
Release Notes for v42.6.0
Fixes
Other Changes
NaturalIntelligence/fast-xml-parser (fast-xml-parser)
v5.10.1Compare Source
Full Changelog: NaturalIntelligence/fast-xml-parser@v5.10.0...v5.10.1
v5.10.0Compare Source
What's Changed
Full Changelog: NaturalIntelligence/fast-xml-parser@v5.9.3...v5.10.0
Configuration
📅 Schedule: (UTC)
🚦 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.
This PR was generated by Mend Renovate. View the repository job log.