Skip to content

chore(deps): bump the bun-minor-and-patch group across 1 directory with 5 updates - #12

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bun/bun-minor-and-patch-b5cfdfbd6b
Open

chore(deps): bump the bun-minor-and-patch group across 1 directory with 5 updates#12
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bun/bun-minor-and-patch-b5cfdfbd6b

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 24, 2026

Copy link
Copy Markdown

Bumps the bun-minor-and-patch group with 5 updates in the / directory:

Package From To
modern-screenshot 4.4.30 4.7.0
preact 10.29.7 10.29.8
@playwright/test 1.61.1 1.62.1
@types/node 26.1.1 26.4.1
vite 8.1.5 8.2.2

Updates modern-screenshot from 4.4.30 to 4.7.0

Release notes

Sourced from modern-screenshot's releases.

v4.7.0

Please refer to CHANGELOG.md for details.

v4.6.8

Please refer to CHANGELOG.md for details.

v4.6.7

Please refer to CHANGELOG.md for details.

v4.6.6

Please refer to CHANGELOG.md for details.

v4.6.5

Please refer to CHANGELOG.md for details.

v4.6.4

Please refer to CHANGELOG.md for details.

v4.6.3

Please refer to CHANGELOG.md for details.

v4.6.2

Please refer to CHANGELOG.md for details.

v4.6.1

Please refer to CHANGELOG.md for details.

v4.6.0

Please refer to CHANGELOG.md for details.

v4.5.5

Please refer to CHANGELOG.md for details.

v4.5.4

Please refer to CHANGELOG.md for details.

v4.5.3

Please refer to CHANGELOG.md for details.

v4.5.2

Please refer to CHANGELOG.md for details.

v4.5.1

Please refer to CHANGELOG.md for details.

v4.5.0

Please refer to CHANGELOG.md for details.

v4.4.39

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from modern-screenshot's changelog.

4.7.0 (2026-04-16)

Bug Fixes

  • clone documentElement instead of body for same-origin iframes (0c3871a)
  • delete position when copy root element styles (328379d)
  • use detached document for @​import rule processing (719fb4e)

4.6.8 (2026-01-26)

Features

4.6.7 (2025-11-18)

Bug Fixes

  • ensure WebKit scrollbar pseudo-classes are cloned correctly (1d10f48)

4.6.6 (2025-08-19)

4.6.5 (2025-07-05)

Features

  • Add the onCloneEachNode callback to execute when each node is cloned. (f9fe0db)

4.6.4 (2025-06-12)

Bug Fixes

  • use HTMLIFrameElement.srcdoc replace HTMLIFrameElement.contentWindow.document.write remove browser warning (closes #136) (ea2ddf4)

... (truncated)

Commits
Maintainer changes

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


Updates preact from 10.29.7 to 10.29.8

Release notes

Sourced from preact's releases.

10.29.8

Performance

Commits

Updates @playwright/test from 1.61.1 to 1.62.1

Release notes

Sourced from @​playwright/test's releases.

v1.62.1

Bug Fixes

  • #41989 [Regression]: tsconfig "extends" bare specifier isn't resolved via node_modules walk-up like tsc (fatal since 1.62)
  • #41998 [Regression]: directory-form tsconfig project references ("path": "../pkg") fail to resolve (fatal since 1.62)
  • #41985 Accessibility snapshot drops button name when text is nested inside spans with aria-hidden SVG
  • #42000 [Regression]: page.evaluate() arg of a branded primitive type (string & { brand }) no longer type-checks since 1.62
  • #42013 [BUG]Image-type actionable elements are not presented in the snapshot.

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 });
</tr></table>

... (truncated)

Commits
  • 26a9e47 cherry-pick(#42043): docs: release notes for v1.62 Python, Java, and .NET (#4...
  • 0a81d5d cherry-pick(#42040): docs(release-notes): mention the isolated headless clipb...
  • 8376826 cherry-pick(#42034): fix(aria): keep icon-only clickable elements in ai snaps...
  • 66c5cc9 chore: mark v1.62.1 (#42020)
  • 9672bc3 cherry-pick(#42009): fix(types): support branded primitives in evaluate argum...
  • 4325804 cherry-pick(#41988): fix(aria): preserve names from collapsed text contributors
  • 9632f8e cherry-pick(#42005): fix(tsconfig): do not throw when "extends"/"references" ...
  • 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...
  • Additional commits viewable in compare view

Updates @types/node from 26.1.1 to 26.4.1

Commits

Updates vite from 8.1.5 to 8.2.2

Release notes

Sourced from vite's releases.

plugin-legacy@8.2.2

Please refer to CHANGELOG.md for details.

v8.2.2

Please refer to CHANGELOG.md for details.

plugin-legacy@8.2.1

Please refer to CHANGELOG.md for details.

v8.2.1

Please refer to CHANGELOG.md for details.

create-vite@8.2.0

Please refer to CHANGELOG.md for details.

plugin-legacy@8.2.0

Please refer to CHANGELOG.md for details.

v8.2.0

Please refer to CHANGELOG.md for details.

v8.2.0-beta.0

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

8.2.2 (2026-08-20)

Features

  • deps: widen @vitejs/devtools peer range to v0.5.0 (#23302) (495d9ff)

Bug Fixes

  • bundled-dev: handle lazy request error (#23291) (3ba026d)
  • bundled-dev: hot update through circular imports instead of reloading (#23259) (3dbddef)
  • config: resolve sourcemap paths against sourcemap location (#23239) (05a003e)
  • css: don't pass empty targets to lightningcss (#23295) (2804636)
  • define: fix match escaped dots to support $-prefixed define keys (#23249) (dcf88bd)
  • deps: update all non-major dependencies (#23217) (ba958bd)
  • deps: update rolldown-related dependencies (#23218) (83ecb2c)
  • module-runner: exclude completed modules from in-flight cycle detection (fix #22999) (#23009) (d9b10a9)
  • optimizer: close custom extension analysis bundles (#23207) (8fb7675)
  • reduce Windows 8.3-short-name detection false-positives (#23066) (02cffa9)
  • respect resolve.preserveSymlinks when resolving root (fix #23197) (#23198) (8413052)
  • ssr: rewrite computed key of destructing parameter (#23307) (9db0b61)
  • vite: update outdated upstream file links in license comments (#23285) (c0f2fc6)

Documentation

Miscellaneous Chores

Code Refactoring

  • use JSON import attributes instead of readFileSync in constants (#23258) (1d9fa39)
  • use named regex constants over inline literals (#22964) (5c1c6c6)

Tests

  • define: close rolldown bundler after generate (#23231) (b4d66fe)
  • module-runner: add TLA circular import case (#23299) (4a261f2)
  • module-runner: simplify server-hmr tests (#23300) (599b44b)
  • ssr: add destructing assignment case for moduleRunnerTransform (#23308) (cb77e2a)

Build System

  • use JSON import attributes instead of readFIleSync in rolldown configs (#23251) (d615bcd)

8.2.1 (2026-08-06)

Bug Fixes

  • build: make client chunkImportMap work with sharedPlugins: true (#23184) (15f0307)
  • bundled-dev: inject client script tag before chunk scripts (#23161) (eac0cc8)

... (truncated)

Commits
  • de1111a release: v8.2.2
  • cb77e2a test(ssr): add destructing assignment case for moduleRunnerTransform (#23308)
  • 9db0b61 fix(ssr): rewrite computed key of destructing parameter (#23307)
  • 8413052 fix: respect resolve.preserveSymlinks when resolving root (fix #23197) (#23...
  • 05a003e fix(config): resolve sourcemap paths against sourcemap location (#23239)
  • 495d9ff feat(deps): widen @vitejs/devtools peer range to v0.5.0 (#23302)
  • 1d9fa39 refactor: use JSON import attributes instead of readFileSync in constants (#2...
  • 2804636 fix(css): don't pass empty targets to lightningcss (#23295)
  • 599b44b test(module-runner): simplify server-hmr tests (#23300)
  • 4a261f2 test(module-runner): add TLA circular import case (#23299)
  • 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 Aug 24, 2026
@github-code-quality

github-code-quality Bot commented Aug 24, 2026

Copy link
Copy Markdown

Code Coverage Overview

Languages: Go

Go / code-coverage/go

The overall line coverage in commit 85397b7 in the dependabot/bun/bun-m... branch remains at 75%, unchanged from commit 96fe3e8 in the main branch.


Updated September 07, 2026 06:25 UTC

@dependabot dependabot Bot changed the title build(deps): bump the bun-minor-and-patch group with 5 updates build(deps): bump the bun-minor-and-patch group across 1 directory with 5 updates Aug 24, 2026
@dependabot
dependabot Bot force-pushed the dependabot/bun/bun-minor-and-patch-b5cfdfbd6b branch from 2974978 to b9210fb Compare August 24, 2026 06:22
@dependabot
dependabot Bot force-pushed the dependabot/bun/bun-minor-and-patch-b5cfdfbd6b branch from b9210fb to aab0570 Compare August 31, 2026 06:24
…th 5 updates

Bumps the bun-minor-and-patch group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [modern-screenshot](https://github.com/qq15725/modern-screenshot) | `4.4.30` | `4.7.0` |
| [preact](https://github.com/preactjs/preact) | `10.29.7` | `10.29.8` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.61.1` | `1.62.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `26.1.1` | `26.4.1` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.1.5` | `8.2.2` |



Updates `modern-screenshot` from 4.4.30 to 4.7.0
- [Release notes](https://github.com/qq15725/modern-screenshot/releases)
- [Changelog](https://github.com/qq15725/modern-screenshot/blob/main/CHANGELOG.md)
- [Commits](qq15725/modern-screenshot@v4.4.30...v4.7.0)

Updates `preact` from 10.29.7 to 10.29.8
- [Release notes](https://github.com/preactjs/preact/releases)
- [Commits](preactjs/preact@10.29.7...10.29.8)

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

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

Updates `vite` from 8.1.5 to 8.2.2
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v8.2.2/packages/vite)

---
updated-dependencies:
- dependency-name: "@playwright/test"
  dependency-version: 1.62.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bun-minor-and-patch
- dependency-name: "@types/node"
  dependency-version: 26.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bun-minor-and-patch
- dependency-name: modern-screenshot
  dependency-version: 4.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: bun-minor-and-patch
- dependency-name: preact
  dependency-version: 10.29.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bun-minor-and-patch
- dependency-name: vite
  dependency-version: 8.2.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bun-minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title build(deps): bump the bun-minor-and-patch group across 1 directory with 5 updates chore(deps): bump the bun-minor-and-patch group across 1 directory with 5 updates Sep 7, 2026
@dependabot
dependabot Bot force-pushed the dependabot/bun/bun-minor-and-patch-b5cfdfbd6b branch from aab0570 to 85397b7 Compare September 7, 2026 06:23
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