Skip to content

chore(deps-dev): bump the bun group across 1 directory with 8 updates#28

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

chore(deps-dev): bump the bun group across 1 directory with 8 updates#28
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bun/bun-754ec82dfc

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the bun group with 8 updates in the / directory:

Package From To
@playwright/test 1.59.1 1.61.1
@screenly/edge-apps 1.0.0 1.1.2
@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.2
prettier 3.8.3 3.9.5
typescript 6.0.3 7.0.2

Updates @playwright/test from 1.59.1 to 1.61.1

Release notes

Sourced from @​playwright/test's releases.

v1.61.1

Bug Fixes

  • #41365 [Bug]: Expect.Extend matcher with same name as default matcher in same expect instance overrides default matchers implementation to custom matcher
  • #41351 [Bug]: Playwright UI mode: apiRequestContext._wrapApiCall reports unexpected number of bytes (same test passes in headed mode)
  • #41360 [Bug]: Trace viewer: message times in websockets are downscaled by 1000
  • #41311 [Bug]: [Regression]: Sync loader throws "context.conditions?.includes is not a function" on Node 22.15
  • #41371 [Regression]: Sync ESM loader (registerHooks) fails to resolve extensionless .ts subpath imports across pnpm workspace symlinks

v1.61.0

🔑 WebAuthn passkeys

New Credentials virtual authenticator, available via browserContext.credentials, lets tests register passkeys and answer navigator.credentials.create() / navigator.credentials.get() ceremonies in the page — no real hardware key required, works in all browsers:

const context = await browser.newContext();
// Seed a passkey your backend provisioned for a test user.
await context.credentials.create('example.com', {
id: credentialId,
userHandle,
privateKey,
publicKey,
});
await context.credentials.install();
const page = await context.newPage();
await page.goto('https://example.com/login');
// The page's navigator.credentials.get() is answered with the seeded passkey.

You can also let the app register a passkey once in a setup test, read it back with credentials.get(), and seed it into later tests — see Credentials for details.

🗃️ Web Storage

New WebStorage API, available via page.localStorage and page.sessionStorage, reads and writes the page's storage for the current origin:

await page.localStorage.setItem('token', 'abc');
const token = await page.localStorage.getItem('token');
const items = await page.sessionStorage.items();

New APIs

Network

Browser and Screencast

... (truncated)

Commits
  • 39e3553 cherry-pick(#41399): fix(test): load require-reached files as commonjs in syn...
  • 4328122 chore: mark v1.61.1 (#41404)
  • 2c29a94 fix(tracing): stop recording websocket frames outside of chunks (#41398)
  • 4324b19 cherry-pick(#41367): fix(test): keep builtin expect matchers on base extend
  • 041e7e3 cherry-pick(#41364): fix(har): WebSocket message timestamps should be in mi...
  • b8a0fc3 cherry-pick(#41309, #43149): Revert "fix(firefox): treat `navigationCommitted...
  • b5a3175 cherry-pick(#41319): fix(loader): support other node versions
  • d4724a9 cherry-pick(#41290): feat(docker): add Ubuntu 26.04 (Resolute Raccoon) image
  • 1cc5a90 cherry-pick(#41295): chore: PLAYWRIGHT_TRACING_NO_WEBSOCKET_FRAMES and PLAYWR...
  • a6772bd cherry-pick(#41280): Revert "fix(trace-viewer): add keyboard navigation to `N...
  • Additional commits viewable in compare view

Updates @screenly/edge-apps from 1.0.0 to 1.1.2

Release notes

Sourced from @​screenly/edge-apps's releases.

v1.1.2

What's Changed

Dependencies

Other Changes

New Contributors

Full Changelog: Screenly/edge-apps-library@v1.1.1...v1.1.2

v1.1.1

What's Changed

Other Changes

Full Changelog: Screenly/edge-apps-library@v1.1.0...v1.1.1

v1.1.0

What's Changed

Other Changes

New Contributors

Full Changelog: Screenly/edge-apps-library@v1.0.0...v1.1.0

Commits
  • 05e8bf2 fix(deps): resolve picomatch and esbuild security alerts (#53)
  • e8f30fe chore(deps): bump lodash from 4.17.21 to 4.18.1 (#23)
  • 0b853f5 chore(deps): bump @​parcel/reporter-dev-server and parcel (#50)
  • 2ccf8bb chore(deps): bump flatted from 3.3.3 to 3.4.2 (#49)
  • 683a2f7 chore(deps): bump yaml from 2.8.2 to 2.9.0 (#46)
  • 9086de4 chore(deps): bump undici from 7.22.0 to 7.28.0 (#38)
  • 5a11d89 fix(components): declare component modules as side-effectful (#48)
  • 8bb4f1d chore(deps): bump vite, @​tailwindcss/vite, @​vitest/coverage-v8 and vitest (#39)
  • 2cfc020 chore(deps): bump brace-expansion from 5.0.2 to 5.0.6 (#32)
  • 057fee1 chore(deps): bump actions/checkout in the github-actions group (#43)
  • Additional commits viewable in compare view

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.2

Release notes

Sourced from npm-run-all2's releases.

v9.0.2

Merged

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

... (truncated)

Changelog

Sourced from npm-run-all2's changelog.

v9.0.2

Merged

v9.0.1 - 2026-05-23

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

... (truncated)

Commits
Maintainer changes

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


Updates prettier from 3.8.3 to 3.9.5

Release notes

Sourced from prettier's releases.

3.9.5

🔗 Changelog

3.9.4

  • Angular: Format @content(name) -> @content (name) to align with other block syntax (#19499 by @​fisker)

🔗 Changelog

3.9.3

🔗 Changelog

3.9.1

🔗 Changelog

3.9.0

diff

🔗 Prettier 3.9: Major parser upgrades and Formatting improvements

3.8.5

🔗 Changelog

3.8.4

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.9.5

diff

Markdown: Cap ordered list mark at 999,999,999 (#19351 by @​tats-u)

CommonMark parsers only support ordered list item numbers up to 999,999,999.

With this change, Prettier now caps the ordered list item number at 999,999,999 to ensure that the output is correctly parsed as an ordered list by CommonMark parsers. Numbers larger than 999,999,999 are not parsed as list item numbers and are left unchanged in the output:

<!-- Input -->
999999998. text
999999998. text
999999998. text
999999998. text
1234567890123456789012) text
<!-- Prettier 3.9.4 -->
999999998. text
999999999. text
1000000000. text
1000000001. text
1234567890123456789012) text
<!-- Prettier 3.9.5 -->
999999998. text
999999999. text
999999999. text
999999999. text
1234567890123456789012) text

Markdown: Avoid corrupting empty link with title (#19487 by @​andersk)

Do not remove <> from an inline link or image with an empty URL and a title, as this removal would change its interpretation.

<!-- Input -->
[link](https://github.com/prettier/prettier/blob/main/<> "title")
<!-- Prettier 3.9.4 -->
[link](https://github.com/prettier/prettier/blob/main/ "title")
<!-- Prettier 3.9.5 -->
</tr></table>

... (truncated)

Commits

Updates typescript from 6.0.3 to 7.0.2

Commits
Maintainer changes

This version was pushed to npm by microsoft1es, a new releaser for typescript 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 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.59.1` | `1.61.1` |
| [@screenly/edge-apps](https://github.com/Screenly/edge-apps-library) | `1.0.0` | `1.1.2` |
| [@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.2` |
| [prettier](https://github.com/prettier/prettier) | `3.8.3` | `3.9.5` |
| [typescript](https://github.com/microsoft/TypeScript) | `6.0.3` | `7.0.2` |



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

Updates `@screenly/edge-apps` from 1.0.0 to 1.1.2
- [Release notes](https://github.com/Screenly/edge-apps-library/releases)
- [Commits](Screenly/edge-apps-library@v1.0.0...v1.1.2)

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.2
- [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.2)

Updates `prettier` from 3.8.3 to 3.9.5
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.8.3...3.9.5)

Updates `typescript` from 6.0.3 to 7.0.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](https://github.com/microsoft/TypeScript/commits)

---
updated-dependencies:
- dependency-name: "@playwright/test"
  dependency-version: 1.61.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bun
- dependency-name: "@screenly/edge-apps"
  dependency-version: 1.1.2
  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.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: bun
- dependency-name: prettier
  dependency-version: 3.9.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bun
- dependency-name: typescript
  dependency-version: 7.0.2
  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 Jul 16, 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