Skip to content

chore(deps): update npm dependencies - #163

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/npm-dependencies
Open

chore(deps): update npm dependencies#163
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/npm-dependencies

Conversation

@renovate

@renovate renovate Bot commented Jul 4, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@playwright/test (source) 1.61.11.62.1 age confidence
electron 42.5.242.8.1 age confidence
fast-xml-parser 5.9.35.10.1 age confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.62.1

Compare Source

v1.62.0

Compare 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:

test('click should expand', async ({ mount }) => {
  const component = await mount('components/Expandable/Stateful');
  await component.getByRole('button').click();
  await expect(component.getByTestId('expanded')).toHaveValue('true');
});

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 signal option that takes an
AbortSignal, letting you
cancel long-running actions, navigations, waits, and assertions:

const controller = new AbortController();
setTimeout(() => controller.abort(), 1000);

await page.getByRole('button', { name: 'Submit' }).click({ signal: controller.signal });
await expect(page.getByText('Done')).toBeVisible({ signal: controller.signal });

Providing a signal does not disable the default timeout; pass timeout: 0 to disable it.

🖼️ WebP screenshots

expect(page).toHaveScreenshot() and expect(locator).toHaveScreenshot()
can now store snapshots in the WebP format — just give the snapshot a .webp name:

// Visual comparisons store the golden snapshot as lossless WebP.
await expect(page).toHaveScreenshot('homepage.webp');

// Standalone screenshots can trade quality for size with lossy WebP.
await page.screenshot({ path: 'homepage.webp', quality: 50 });

page.screenshot() and locator.screenshot() also accept webp as a type,
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:

class MyReporter {
  async preprocess({ config, suite, testRun }) {
    for (const test of suite.allTests()) {
      if (shouldSkip(test))
        testRun.skip(test);
    }
  }
}
🔁 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:

// playwright.config.ts
export default defineConfig({
  retries: 2,
  retryStrategy: 'isolated',
});
New APIs
Browser and Context
  • New option credentials includes the context's virtual WebAuthn Credentials (passkeys) in the storage state, so they can be persisted and re-seeded into later contexts.
Actions
  • New scroll option ("auto" | "none") on actions to opt out of Playwright's automatic scroll-into-view.
Network
Evaluation
Command line & MCP
Reporters
  • The HTML report's Merge files grouping — previously only a UI toggle — can now be enabled from the config with the new mergeFiles reporter option:
// playwright.config.ts
export default defineConfig({
  reporter: [['html', { mergeFiles: true }]],
});
Announcements
  • ⚠️ Debian 11 is not supported anymore.
Browser Versions
  • Chromium 151.0.7922.34
  • Mozilla Firefox 153.0
  • WebKit 26.5

This version was also tested against the following stable channels:

  • Google Chrome 151
  • Microsoft Edge 151
electron/electron (electron)

v42.8.1: electron v42.8.1

Compare Source

Release Notes for v42.8.1

Fixes

  • Fixed BrowserWindow size corruption on Windows when created with explicit x/y on a secondary monitor whose DPI differs from the primary. #​52500 (Also in 43, 44)
  • Fixed Dirent.parentPath being undefined for fs.readdir, fs.readdirSync, fs.glob, and fs.globSync with withFileTypes: true inside asar archives. #​52506 (Also in 43, 44)
  • Fixed a UAF with protocol.registerStreamProtocol when an error is emitted during a read. #​52516 (Also in 41, 43, 44)
  • Fixed a crash that could occur when closing DevTools while the host WebContents was being destroyed. #​52511 (Also in 41, 43, 44)

Other Changes

  • Fixed a renderer crash when disabling device emulation while the main frame was not local. #​52601
  • Improved the error message when an asar integrity check fails to name the entry that failed. #​52623 (Also in 43, 44)
  • Updated Node.js to v24.18.1. #​52551

v42.8.0: electron v42.8.0

Compare Source

Release Notes for v42.8.0

Features

  • Added available to process.getSystemMemoryInfo() on Linux, exposing proc/meminfo MemAvailable. #​52378 (Also in 43, 44)

Fixes

  • Fixed a window being marked hidden and background-throttled on macOS when covered by a transparent or click-through window. #​52390 (Also in 43, 44)
  • Fixed an issue where loading ICO files from ASAR archives on Windows left temporary icon files behind. #​52479 (Also in 43, 44)

v42.7.1: electron v42.7.1

Compare Source

Release Notes for v42.7.1

Fixes

  • Fixed app.disableHardwareAcceleration() not fully disabling GPU hardware usage on Windows starting from Electron 38. #​52371 (Also in 41, 43, 44)
  • Fixed a crash when showing Linux message boxes while another Linux UI implementation was active. #​52408 (Also in 43, 44)
  • Fixed an issue where frameless windows could shrink after applying constraints or toggling resizability on Windows. #​52366 (Also in 43)
  • Fixed crash during maglev compilation. #​52311
  • Fixed remote debugging via --remote-debugging-port not working when inspecting from Chrome's chrome://inspect page. 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)
  • Fixed unnecessary autofill popup creation for fields without datalist suggestions, which could cause input latency on macOS. #​52319 (Also in 41, 43, 44)

Other Changes

  • Backported fixes from upstream Chromium and V8. #​52395

v42.7.0: electron v42.7.0

Compare Source

Release Notes for v42.7.0

Features

  • Added net.WebSocket, a WHATWG-compatible WebSocket client for the main process that routes through Chromium's network stack. #​52345

v42.6.2: electron v42.6.2

Compare Source

Release Notes for v42.6.2

Fixes

  • Fixed a browser-process crash (ValidateIntegrityOrDie) and spurious preload ENOENT errors when an app's app.asar is replaced on disk (e.g. by an updater or MDM software) while the app is running. #​52294 (Also in 43, 44)
  • Fixed an issue on Windows where BrowserWindow with useContentSize: true would clamp the content area smaller than the configured maxWidth / maxHeight when programmatically resizing beyond those constraints via setBounds, setSize, or setContentSize. #​51622

Other Changes

  • Backported fixes from upstream Chromium. #​52303

v42.6.1: electron v42.6.1

Compare Source

Release Notes for v42.6.1

Fixes

  • Fixed crash triggered by replacing an open application menu. #​52275 (Also in 41, 43, 44)

v42.6.0: electron v42.6.0

Compare Source

Release Notes for v42.6.0

Fixes

  • Fixed running under tsx import transpilation. #​52046 (Also in 43)

Other Changes

  • Backported fixes from upstream Chromium, ANGLE, Dawn, and V8. #​52230
  • Updated Chromium to 148.0.7778.280. #​52110
  • Updated Node.js to v24.18.0. #​52105
NaturalIntelligence/fast-xml-parser (fast-xml-parser)

v5.10.1

Compare Source

Full Changelog: NaturalIntelligence/fast-xml-parser@v5.10.0...v5.10.1

v5.10.0

Compare Source

What's Changed

Full Changelog: NaturalIntelligence/fast-xml-parser@v5.9.3...v5.10.0


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.

@renovate renovate Bot added the dependencies label Jul 4, 2026
@renovate
renovate Bot force-pushed the renovate/npm-dependencies branch from 8671264 to b60c294 Compare July 7, 2026 19:09
@renovate renovate Bot changed the title chore(deps): update dependency electron to v42.6.0 chore(deps): update dependency electron to v42.6.1 Jul 7, 2026
@renovate
renovate Bot force-pushed the renovate/npm-dependencies branch from b60c294 to cafff14 Compare July 11, 2026 14:49
@renovate renovate Bot changed the title chore(deps): update dependency electron to v42.6.1 chore(deps): update npm dependencies Jul 11, 2026
@renovate
renovate Bot force-pushed the renovate/npm-dependencies branch 3 times, most recently from b07bbfa to 7e8de4a Compare July 16, 2026 06:08
@renovate
renovate Bot force-pushed the renovate/npm-dependencies branch 3 times, most recently from 5b2ba6e to ea764d6 Compare July 28, 2026 20:08
@renovate
renovate Bot force-pushed the renovate/npm-dependencies branch from ea764d6 to c7bb510 Compare July 30, 2026 21:29
@renovate
renovate Bot force-pushed the renovate/npm-dependencies branch from c7bb510 to bcf0a11 Compare August 4, 2026 21:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants