Skip to content

chore(deps-dev): bump the bun group with 5 updates#24

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bun/bun-fab2f13971
Open

chore(deps-dev): bump the bun group with 5 updates#24
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bun/bun-fab2f13971

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 3, 2026

Copy link
Copy Markdown
Contributor

Bumps the bun group with 5 updates:

Package From To
@playwright/test 1.59.1 1.60.0
@types/bun 1.3.13 1.3.14
@types/jsdom 28.0.1 28.0.3
bun-types 1.3.13 1.3.14
npm-run-all2 8.0.4 9.0.1

Updates @playwright/test from 1.59.1 to 1.60.0

Release notes

Sourced from @​playwright/test's releases.

v1.60.0

🌐 HAR recording on Tracing

tracing.startHar() / tracing.stopHar() expose HAR recording as a first-class tracing API, with the same content, mode and urlFilter options as recordHar. The returned Disposable makes it easy to scope a recording with await using:

await using har = await context.tracing.startHar('trace.har');
const page = await context.newPage();
await page.goto('https://playwright.dev');
// HAR is finalized when `har` goes out of scope.

🪝 Drop API

New locator.drop() simulates an external drag-and-drop of files or clipboard-like data onto an element. Playwright dispatches dragenter, dragover, and drop with a synthetic [DataTransfer] in the page context — works cross-browser and is great for testing upload zones:

await page.locator('#dropzone').drop({
  files: { name: 'note.txt', mimeType: 'text/plain', buffer: Buffer.from('hello') },
});
await page.locator('#dropzone').drop({
data: {
'text/plain': 'hello world',
'text/uri-list': 'https://example.com',
},
});

🎯 Aria snapshots

🛑 test.abort()

New test.abort() aborts the currently running test from a fixture, hook, or route handler with an optional message. Use it when you have detected an unrecoverable misuse and want to fail the test right away:

test('does not publish to the shared page', async ({ page }) => {
  await page.route('**/publish', route => {
    test.abort('Tests must not publish to the shared page. Use the `clone` option.');
    return route.abort();
  });
  // ...
});

New APIs

Browser, Context and Page

... (truncated)

Commits

Updates @types/bun from 1.3.13 to 1.3.14

Commits

Updates @types/jsdom from 28.0.1 to 28.0.3

Commits

Updates bun-types from 1.3.13 to 1.3.14

Release notes

Sourced from bun-types's releases.

Bun v1.3.14

To install Bun v1.3.14

curl -fsSL https://bun.sh/install | bash
# or you can use npm
# npm install -g bun

Windows:

powershell -c "irm bun.sh/install.ps1|iex"

To upgrade to Bun v1.3.14:

bun upgrade

Read Bun v1.3.14's release notes on Bun's blog

Thanks to 11 contributors!

Commits
  • 0d9b296 Bun.serve: rename h3/h1 options to http3/http1 (#30583)
  • 191edc0 image: preserve ICC profile through WebP decode/encode (#30211)
  • d0a0bc4 Preserve ICC colour profile through Bun.Image JPEG/PNG encode (#30201)
  • ed75c88 Bun.Image — Sharp-shaped image pipeline (jpeg/png/webp, resize, rotate, modul...
  • accbff6 fetch: experimental HTTP/2 client (#29766)
  • b424bb7 Bun.serve: HTTP/3 (QUIC) support via h3: true (#29768)
  • e2017e7 ws: respect perMessageDeflate: false in upgrade request (#29685)
  • dc578b1 spawn: return caller-supplied fds from Subprocess.stdio[N] (#29629)
  • 890ef5a spawn: don't close caller-owned fds passed as extra stdio (#29606)
  • b424e70 bun-types: dedupe alias enum keys in FFI type maps (#29193)
  • See full diff in compare view

Updates npm-run-all2 from 8.0.4 to 9.0.1

Release notes

Sourced from npm-run-all2's releases.

v9.0.1

Merged

v9.0.0

Breaking changes

  • ESM only
  • engines.node: "^22.22.2 || ^24.15.0 || >=26.0.0",
  • Empty glob patters no longer throw an error bcomnes/npm-run-all2#226
  • Fully type checked with published types

New features

Merged

Fixed

Commits

  • Add node-run smoke tests f4ac667
  • Implement releasaroni for the release process 6a2baff
  • Use shared publishing action b6a39a6

... (truncated)

Changelog

Sourced from npm-run-all2's changelog.

v9.0.1

Merged

v9.0.0 - 2026-05-19

Merged

Fixed

Commits

  • Add node-run smoke tests f4ac667
  • Implement releasaroni for the release process 6a2baff
  • Use shared publishing action b6a39a6

v8.1.0-beta.0 - 2025-06-01

Merged

Commits

  • Convert codebase to mostly ESM 8f4f68d
Commits
  • 65b2003 9.0.1
  • 2cdbd27 fix: update help.js to include --node-run option details (#230)
  • 66883cb 9.0.0
  • 0654d68 Disable install scripts in CI
  • b6a39a6 Use shared publishing action
  • 2848921 Add more colors based on terminal capabilities (#222)
  • b365e41 Upgrade: Bump releasearoni from 0.1.14 to 0.2.0 (#227)
  • 730c02b Glob patterns that match no tasks now succeed silently (#226)
  • 992c0cf Merge pull request #225 from bcomnes/feature/node-run
  • f4ac667 Add node-run smoke tests
  • Additional commits viewable in compare view
Maintainer changes

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


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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 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

Bumps the bun group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.59.1` | `1.60.0` |
| [@types/bun](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/bun) | `1.3.13` | `1.3.14` |
| [@types/jsdom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jsdom) | `28.0.1` | `28.0.3` |
| [bun-types](https://github.com/oven-sh/bun/tree/HEAD/packages/bun-types) | `1.3.13` | `1.3.14` |
| [npm-run-all2](https://github.com/bcomnes/npm-run-all2) | `8.0.4` | `9.0.1` |


Updates `@playwright/test` from 1.59.1 to 1.60.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.59.1...v1.60.0)

Updates `@types/bun` from 1.3.13 to 1.3.14
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/bun)

Updates `@types/jsdom` from 28.0.1 to 28.0.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jsdom)

Updates `bun-types` from 1.3.13 to 1.3.14
- [Release notes](https://github.com/oven-sh/bun/releases)
- [Commits](https://github.com/oven-sh/bun/commits/bun-v1.3.14/packages/bun-types)

Updates `npm-run-all2` from 8.0.4 to 9.0.1
- [Release notes](https://github.com/bcomnes/npm-run-all2/releases)
- [Changelog](https://github.com/bcomnes/npm-run-all2/blob/master/CHANGELOG.md)
- [Commits](bcomnes/npm-run-all2@v8.0.4...v9.0.1)

---
updated-dependencies:
- dependency-name: "@playwright/test"
  dependency-version: 1.60.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bun
- dependency-name: "@types/bun"
  dependency-version: 1.3.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: bun
- dependency-name: "@types/jsdom"
  dependency-version: 28.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: bun
- dependency-name: bun-types
  dependency-version: 1.3.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: bun
- dependency-name: npm-run-all2
  dependency-version: 9.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: bun
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 3, 2026
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