Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 1, 2025

Bumps the wasm-dev group with 3 updates in the /bindings_wasm directory: binaryen, tsx and playwright.

Updates binaryen from 124.0.0 to 125.0.0

Commits
  • 7d01dda Release v125.0.0
  • 2f73092 Nightly v124.0.0-nightly.20251119 [ci skip]
  • a160495 Nightly v124.0.0-nightly.20251118 [ci skip]
  • fe33d10 Nightly v124.0.0-nightly.20251116 [ci skip]
  • ea41e20 Nightly v124.0.0-nightly.20251115 [ci skip]
  • 52f5a89 Nightly v124.0.0-nightly.20251114 [ci skip]
  • 8f4d7a5 Nightly v124.0.0-nightly.20251113 [ci skip]
  • dcd66fd Nightly v124.0.0-nightly.20251112 [ci skip]
  • e5653b8 Nightly v124.0.0-nightly.20251111 [ci skip]
  • de30ffd Nightly v124.0.0-nightly.20251109 [ci skip]
  • Additional commits viewable in compare view

Updates tsx from 4.20.6 to 4.21.0

Release notes

Sourced from tsx's releases.

v4.21.0

4.21.0 (2025-11-30)

Features


This release is also available on:

Commits

Updates playwright from 1.56.1 to 1.57.0

Release notes

Sourced from playwright's releases.

v1.57.0

Speedboard

In HTML reporter, there's a new tab we call "Speedboard":

It shows you all your executed tests sorted by slowness, and can help you understand where your test suite is taking longer than expected. Take a look at yours - maybe you'll find some tests that are spending a longer time waiting than they should!

Chrome for Testing

Starting with this release, Playwright switches from Chromium, to using Chrome for Testing builds. Both headed and headless browsers are subject to this. Your tests should still be passing after upgrading to Playwright 1.57.

We're expecting no functional changes to come from this switch. The biggest change is the new icon and title in your toolbar.

If you still see an unexpected behaviour change, please file an issue.

On Arm64 Linux, Playwright continues to use Chromium.

Waiting for webserver output

testConfig.webServer added a wait field. Pass a regular expression, and Playwright will wait until the webserver logs match it.

import { defineConfig } from '@playwright/test';
export default defineConfig({
webServer: {
command: 'npm run start',
wait: {
stdout: '/Listening on port (?<my_server_port>\d+)/'
},
},
});

If you include a named capture group into the expression, then Playwright will provide the capture group contents via environment variables:

import { test, expect } from '@playwright/test';
test.use({ baseUrl: http://localhost:${process.env.MY_SERVER_PORT ?? 3000} });
test('homepage', async ({ page }) => {
await page.goto('/');
});
</tr></table>

... (truncated)

Commits

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 1, 2025
@dependabot dependabot bot requested a review from a team as a code owner December 1, 2025 03:12
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 1, 2025
@graphite-app
Copy link

graphite-app bot commented Dec 1, 2025

How to use the Graphite Merge Queue

Add the label mergequeue to this PR to add it to the merge queue.

You must have a Graphite account in order to use the merge queue. Sign up using this link.

An organization admin has enabled the Graphite Merge Queue in this repository.

Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue.

@claude
Copy link

claude bot commented Dec 1, 2025

Claude encountered an error —— View job


I'll analyze this and get back to you.

@macroscopeapp
Copy link
Contributor

macroscopeapp bot commented Dec 1, 2025

Update bindings_wasm dependency constraint to resolve binaryen versions in the ^125.0.0 range

Bump the binaryen version constraint in package.json to ^125.0.0 and refresh yarn.lock to match.

📍Where to Start

Start with the dependency change in package.json, then verify lockfile updates in yarn.lock.


Macroscope summarized cf90050.

@insipx
Copy link
Contributor

insipx commented Dec 1, 2025

@dependabot rebase

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/bindings_wasm/wasm-dev-a4417afefa branch 2 times, most recently from bdae2d8 to 0e46784 Compare December 8, 2025 02:13
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/bindings_wasm/wasm-dev-a4417afefa branch 3 times, most recently from df244bc to 5deb45e Compare December 22, 2025 02:14
Bumps the wasm-dev group with 3 updates in the /bindings_wasm directory: [binaryen](https://github.com/AssemblyScript/binaryen.js), [tsx](https://github.com/privatenumber/tsx) and [playwright](https://github.com/microsoft/playwright).


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

Updates `tsx` from 4.20.6 to 4.21.0
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.20.6...v4.21.0)

Updates `playwright` from 1.56.1 to 1.57.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.56.1...v1.57.0)

---
updated-dependencies:
- dependency-name: binaryen
  dependency-version: 125.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: wasm-dev
- dependency-name: tsx
  dependency-version: 4.21.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: wasm-dev
- dependency-name: playwright
  dependency-version: 1.57.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-a4417afefa branch from 5deb45e to cf90050 Compare December 31, 2025 01:42
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.

2 participants