Skip to content

chore(deps-dev): bump the wasm-dev group across 1 directory with 2 updates - #3913

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/bindings/wasm/wasm-dev-a22024e3c5
Open

chore(deps-dev): bump the wasm-dev group across 1 directory with 2 updates#3913
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/bindings/wasm/wasm-dev-a22024e3c5

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 28, 2026

Copy link
Copy Markdown
Contributor

Bumps the wasm-dev group with 2 updates in the /bindings/wasm directory: binaryen and playwright.

Updates binaryen from 125.0.0 to 131.0.0

Commits
  • e8a4d65 Release v131.0.0
  • a4dfe67 Nightly v130.0.0-nightly.20260715 [ci skip]
  • 3b40754 Nightly v130.0.0-nightly.20260714 [ci skip]
  • 45a868c Nightly v130.0.0-nightly.20260712 [ci skip]
  • 5daeda5 Nightly v130.0.0-nightly.20260711 [ci skip]
  • dea0e98 Nightly v130.0.0-nightly.20260710 [ci skip]
  • 4902079 Nightly v130.0.0-nightly.20260709 [ci skip]
  • 56034e8 Nightly v130.0.0-nightly.20260708 [ci skip]
  • 8eee2a1 Nightly v130.0.0-nightly.20260704 [ci skip]
  • 5ec8673 Nightly v130.0.0-nightly.20260703 [ci skip]
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for binaryen since your current version.


Updates playwright from 1.61.1 to 1.62.0

Release notes

Sourced from playwright's releases.

v1.62.0

🧱 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() (https://playwright.dev/docs/api/class-locator#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:

</tr></table> 

... (truncated)

Commits
  • e3950d9 chore: mark v1.62.0 (#41981)
  • f07e0f7 cherry-pick(#41940): docs: release notes for v1.62 (#41967)
  • 05a306c cherry-pick(#41964): Revert "feat(routeFromHar): add interceptAPIRequests opt...
  • 2934858 fix: correct pending navigation log spacing (#41949)
  • 4b0cc99 fix(test): unflake screencast backpressure test on slow macOS runner (#41951)
  • bbbae6d test: fixme WebSocket locale test in Chromium 150 (#41944)
  • 15c4f55 fix(mcp): identify downloads explicitly (#41933)
  • f5fa967 fix(network): request.postData() returns null for empty string body override ...
  • 0edafe4 fix(mcp): launch the Chrome profile that has the extension installed (#41939)
  • 244a1ff feat(firefox): roll to r1538 (#41938)
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jul 28, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner July 28, 2026 22:35
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jul 28, 2026
…dates

Bumps the wasm-dev group with 2 updates in the /bindings/wasm directory: [binaryen](https://github.com/AssemblyScript/binaryen.js) and [playwright](https://github.com/microsoft/playwright).


Updates `binaryen` from 125.0.0 to 131.0.0
- [Commits](AssemblyScript/binaryen.js@v125.0.0...v131.0.0)

Updates `playwright` from 1.61.1 to 1.62.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.61.1...v1.62.0)

---
updated-dependencies:
- dependency-name: binaryen
  dependency-version: 131.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: wasm-dev
- dependency-name: playwright
  dependency-version: 1.62.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: wasm-dev
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/bindings/wasm/wasm-dev-a22024e3c5 branch from 00c6502 to 3752761 Compare August 1, 2026 02:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants