Skip to content

⬆️ Bump the dependencies group with 15 updates - #341

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dependencies-211cf5773e
Open

⬆️ Bump the dependencies group with 15 updates#341
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dependencies-211cf5773e

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubAug 17, 2026

Copy link
Copy Markdown
Contributor

Bumps the dependencies group with 15 updates:

PackageFromTo
@vizzly-testing/honeydiff0.14.00.15.0
@biomejs/biome2.5.62.5.7
@modelcontextprotocol/sdk1.29.01.30.0
@playwright/test1.62.01.62.1
postcss8.5.258.5.26
vite8.1.58.2.0
playwright-core1.62.01.62.1
playwright1.62.01.62.1
@embroider/compat4.1.214.1.22
@embroider/core4.6.24.6.3
@embroider/macros1.20.51.20.6
@embroider/vite1.7.81.7.9
@storybook/react10.5.510.5.7
@storybook/react-vite10.5.510.5.7
storybook10.5.510.5.7

Updates @vizzly-testing/honeydiff from 0.14.0 to 0.15.0

Commits

Updates @biomejs/biome from 2.5.6 to 2.5.7

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.5.7

2.5.7

Patch Changes

  • #10822c171b3b Thanks @​pkallos! - Added the option ignoreIfStatements to useNullishCoalescing. Biome now flags if statements that only assign to a nullish variable (such as if (!a) { a = b }) and can rewrite them to ??=. When enabled, Biome ignores those if statements.

  • #11136e63354c Thanks @​AkashNaickar! - Added a new nursery rule noExtendNative, which reports extending the prototype of a built-in object.

  • #10094e007143 Thanks @​THEjacob1000! - Added the nursery rule noTailwindArbitraryValue. Biome now reports Tailwind CSS arbitrary values such as w-[400px], including in HTML/JSX class attributes, configured utility functions, and tagged templates.

  • #11184135f476 Thanks @​subotac! - Fixed #11176: noUnknownPseudoClass now recognizes Vue's :deep() pseudo-class inside .vue style blocks.

  • #8239a519f9d Thanks @​cormacrelf! - Fixed #8233, where Biome CLI in stdin mode didn't work correctly when handling files in projects with nested configurations. For example, with the following structure, --stdin-file-path=subdirectory/... would not use the nested configuration in subdirectory/biome.json:

    ├── biome.json
    └── subdirectory
    ├── biome.json
    └── lib.js
    
    biome format --write --stdin-file-path=subdirectory/lib.js < subdirectory/lib.js

    Now, the nested configuration is correctly picked up and applied.

    In addition, Biome now shows a warning if --stdin-file-path is provided but that path is ignored and therefore not formatted or fixed.

  • #111388c2c6bd Thanks @​ematipico! - Fixed noUnnecessaryConditions: Biome now chooses the same function overload as TypeScript when an argument is a callback, so conditions that were previously missed are reported.

    The following code is now invalid, because a parameter typed () => void accepts an async callback and schedule therefore returns string:

    declarefunctionschedule(handler: ()=>void): string;declarefunctionschedule(handler: ()=>Promise<void>): string|undefined;schedule(async()=>{})??"fallback";

    The following code is also now invalid, because map(() => 42) returns 42:

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.5.7

Patch Changes

  • #10822c171b3b Thanks @​pkallos! - Added the option ignoreIfStatements to useNullishCoalescing. Biome now flags if statements that only assign to a nullish variable (such as if (!a) { a = b }) and can rewrite them to ??=. When enabled, Biome ignores those if statements.

  • #11136e63354c Thanks @​AkashNaickar! - Added a new nursery rule noExtendNative, which reports extending the prototype of a built-in object.

  • #10094e007143 Thanks @​THEjacob1000! - Added the nursery rule noTailwindArbitraryValue. Biome now reports Tailwind CSS arbitrary values such as w-[400px], including in HTML/JSX class attributes, configured utility functions, and tagged templates.

  • #11184135f476 Thanks @​subotac! - Fixed #11176: noUnknownPseudoClass now recognizes Vue's :deep() pseudo-class inside .vue style blocks.

  • #8239a519f9d Thanks @​cormacrelf! - Fixed #8233, where Biome CLI in stdin mode didn't work correctly when handling files in projects with nested configurations. For example, with the following structure, --stdin-file-path=subdirectory/... would not use the nested configuration in subdirectory/biome.json:

    ├── biome.json
    └── subdirectory
    ├── biome.json
    └── lib.js
    
    biome format --write --stdin-file-path=subdirectory/lib.js < subdirectory/lib.js

    Now, the nested configuration is correctly picked up and applied.

    In addition, Biome now shows a warning if --stdin-file-path is provided but that path is ignored and therefore not formatted or fixed.

  • #111388c2c6bd Thanks @​ematipico! - Fixed noUnnecessaryConditions: Biome now chooses the same function overload as TypeScript when an argument is a callback, so conditions that were previously missed are reported.

    The following code is now invalid, because a parameter typed () => void accepts an async callback and schedule therefore returns string:

    declarefunctionschedule(handler: ()=>void): string;declarefunctionschedule(handler: ()=>Promise<void>): string|undefined;schedule(async()=>{})??"fallback";

    The following code is also now invalid, because map(() => 42) returns 42:

    typeMapper<T>=()=>T;declarefunctionmap<T>(mapper: Mapper<T>): T;

... (truncated)

Commits

Updates @modelcontextprotocol/sdk from 1.29.0 to 1.30.0

Release notes

Sourced from @​modelcontextprotocol/sdk's releases.

1.30.0

What's Changed

New Contributors

Full Changelog: modelcontextprotocol/typescript-sdk@v1.29.0...1.30.0

Commits
  • 2d889f2 chore: bump version to 1.30.0 (#2563)
  • e3f3daa Fix SSE keep-alive timer lifecycle in Streamable HTTP server transport (v1.x)...
  • bb5a718 fix(deps): widen @​hono/node-server past GHSA-frvp-7c67-39w9 (#2549)
  • 1dad263 fix: send SSE keep-alive comment frames from Streamable HTTP server transport...
  • 69749aa Validate Content-Type by parsed media type instead of substring match (v1.x) ...
  • 369513d fix: support Zod 3.25 method literals (#2368)
  • e7ee57c v1 stdio buffer limit (#2239)
  • c36e1ef Add end-to-end test suite (#2167)
  • bf1e022 chore(ci): switch publish to OIDC trusted publishing (#1839)
  • 9edbab7 fix(server): prioritize zod issues and format them (#1503)
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​modelcontextprotocol/sdk since your current version.


Updates @playwright/test from 1.62.0 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.
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" ...
  • See full diff in compare view

Updates postcss from 8.5.25 to 8.5.26

Release notes

Sourced from postcss's releases.

8.5.26

  • Fixed list.split() regression (by @​lazerg).
  • Track symlinks in path protection in source map loading (by @​drengir1).
Changelog

Sourced from postcss's changelog.

8.5.26

  • Fixed list.split() regression (by @​lazerg).
  • Track symlinks in path protection in source map loading (by @​drengir1).
Commits

Updates vite from 8.1.5 to 8.2.0

Release notes

Sourced from vite's releases.

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.0 (2026-07-30)

Features

  • add input to server.fs.allow (#23035) (95a3cda)
  • bundled-dev: reload once after rebuild instead of via the fallback page (#23106) (b24381d)
  • bundled-dev: support worker file update accepted by HMR (#23068) (0d04351)
  • config: include column in config incompatibility location (#23064) (8a24572)
  • dev: resolve interface name for explicit host in network URLs (#22965) (3ac77d9)

Bug Fixes

  • bundledDev: print build errors to the terminal when an HMR update fails (#23024) (41c4658)
  • deps: update all non-major dependencies (#23069) (4c07b74)
  • hmr: preserve environment snapshot during server restart (#22992) (b1186c3)
  • importAnalysis: interop imports injected into optimized dep files by plugins (#23029) (8c2a87d)
  • module-runner: keep stack trace interception working when Object.prototype is frozen (#23073) (599c5b0)
  • server: strip base in indexHtml module graph lookup (#22932) (fa005d1)
  • support resolving top-level input option with plugins (#23101) (41df81a)

Documentation

  • config: correct cacheDir default fallback description (#23060) (aafa103)

Tests

8.2.0-beta.0 (2026-07-22)

Features

  • add input option (#22642) (9beae37)
  • config: warn features incompatible with native loader in bundle loader (#22850) (05302b0)
  • css: export PostCSS config type for type-safe configs (#22792) (302c755)
  • dev: label network URLs with their interface name (#22830) (78accc4)
  • optimizer: support aube lockfile (#22813) (6319827)
  • optimizer: support nub lockfile (#22891) (65d3604)
  • update rolldown-related dependencies and use client-side HMR in bundled-dev (#22961) (960e9ef)
  • wasm: expand test suite, unwrap WebAssembly.Global and enable js-string builtins (#22674) (9e79b51)

Bug Fixes

Performance Improvements

... (truncated)

Commits

Updates playwright-core from 1.62.0 to 1.62.1

Release notes

Sourced from playwright-core'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.
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" ...
  • See full diff in compare view

Updates playwright from 1.62.0 to 1.62.1

Release notes

Sourced from playwright'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.
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" ...
  • See full diff in compare view

Updates @embroider/compat from 4.1.21 to 4.1.22

Release notes

Sourced from @​embroider/compat's releases.

v4.1.22-@​embroider/compat

Release (2026-07-28)

  • @​embroider/compat 4.1.22 (patch)
  • @​embroider/core 4.6.3 (patch)
  • @​embroider/macros 1.20.6 (patch)
  • @​embroider/vite 1.7.9 (patch)

🐛 Bug Fix

🏠 Internal

Committers: 2

v8.3.1-@​embroider/addon-dev

Release (2026-06-24)

  • @​embroider/addon-dev 8.3.1 (patch)
  • @​embroider/compat 4.1.21 (patch)
  • @​embroider/core 4.6.2 (patch)
  • @​embroider/macros 1.20.5 (patch)
  • @​embroider/vite 1.7.8 (patch)

🐛 Bug Fix

  • @embroider/addon-dev
    • #2777publicAssets uses closeBundle instead of generateBundle so it can work with generated assets (@​evoactivity)
  • @embroider/macros
    • #2772 Use parseSync in @​embroider/macros for Babel 8 compatibility (@​johanrd)

Committers: 2

v1.7.7-@​embroider/vite

Release (2026-06-17)

  • @​embroider/vite 1.7.7 (patch)

🐛 Bug Fix

  • @embroider/vite
    • #2771 fix: tolerate ENOTEMPTY on jumpRoot rename race in @​embroider/vite resolver (@​hugorodro)

🏠 Internal

... (truncated)

Changelog

Sourced from @​embroider/compat's changelog.

Embroider Changelog

Release (2026-07-28)

  • @​embroider/compat 4.1.22 (patch)
  • @​embroider/core 4.6.3 (patch)
  • @​embroider/macros 1.20.6 (patch)
  • @​embroider/vite 1.7.9 (patch)

🐛 Bug Fix

🏠 Internal

Committers: 2

Release (2026-06-24)

  • @​embroider/addon-dev 8.3.1 (patch)
  • @​embroider/compat 4.1.21 (patch)
  • @​embroider/core 4.6.2 (patch)
  • @​embroider/macros 1.20.5 (patch)
  • @​embroider/vite 1.7.8 (patch)

🐛 Bug Fix

  • @embroider/addon-dev
    • #2777publicAssets uses closeBundle instead of generateBundle so it can work with generated assets (@​evoactivity)
  • @embroider/macros
    • #2772 Use parseSync in @​embroider/macros for Babel 8 compatibility (@​johanrd)

Committers: 2

Release (2026-06-17)

  • @​embroider/vite 1.7.7 (patch)

🐛 Bug Fix

  • @embroider/vite
    • #2771 fix: tolerate ENOTEMPTY on jumpRoot rename race in @​embroider/vite resolver (@​hugorodro)

🏠 Internal

... (truncated)

Commits

Updates @embroider/core from 4.6.2 to 4.6.3

Release notes

Sourced from @​embroider/core's releases.

v4.1.22-@​embroider/compat

Release (2026-07-28)

  • @​embroider/compat 4.1.22 (patch)
  • @​embroider/core 4.6.3 (patch)
  • @​embroider/macros 1.20.6 (patch)
  • @​embroider/vite 1.7.9 (patch)

🐛 Bug Fix

🏠 Internal

Committers: 2

v8.3.1-@​embroider/addon-dev

Release (2026-06-24)

  • @​embroider/addon-dev 8.3.1 (patch)
  • @​embroider/compat 4.1.21 (patch)
  • @​embroider/core 4.6.2 (patch)
  • @​embroider/macros 1.20.5 (patch)
  • @​embroider/vite 1.7.8 (patch)

🐛 Bug Fix

  • @embroider/addon-dev
    • #2777publicAssets uses closeBundle instead of generateBundle so it can work with generated assets (@​evoactivity)
  • @embroider/macros
    • #2772 Use parseSync in @​embroider/macros for Babel 8 compatibility (@​johanrd)

Committers: 2

v1.7.7-@​embroider/vite

Release (2026-06-17)

  • @​embroider/vite 1.7.7 (patch)

🐛 Bug Fix

  • @embroider/vite
    • #2771 fix: tolerate ENOTEMPTY on jumpRoot rename race in @​embroider/vite resolver (@​hugorodro)

🏠 Internal

... (truncated)

Changelog

Sourced from @​embroider/core's changelog.

Embroider Changelog

Release (2026-07-28)

  • @​embroider/compat 4.1.22 (patch)
  • @​embroider/core 4.6.3 (patch)
  • @​embroider/macros 1.20.6 (patch)
  • @​embroider/vite 1.7.9 (patch)

🐛 Bug Fix

🏠 Internal

Committers: 2

Release (2026-06-24)

  • @​embroider/addon-dev 8.3.1 (patch)
  • @​embroider/compat 4.1.21 (patch)
  • @​embroider/core 4.6.2 (patch)
  • @​embroider/macros 1.20.5 (patch)
  • @​embroider/vite 1.7.8 (patch)

🐛 Bug Fix

  • @embroider/addon-dev
    • #2777publicAssets uses closeBundle instead of generateBundle so it can work with generated assets (@​evoactivity)
  • @embroider/macros
    • #2772 Use parseSync in @​embroider/macros for Babel 8 compatibility (@​johanrd)

Committers: 2

Release (2026-06-17)

  • @​embroider/vite 1.7.7 (patch)

🐛 Bug Fix

  • @embroider/vite
    • #2771 fix: tolerate ENOTEMPTY on jumpRoot rename race in @​embroider/vite resolver (@​hugorodro)

🏠 Internal

... (truncated)

Commits

Updates @embroider/macros from 1.20.5 to 1.20.6

Release notes

Sourced from @​embroider/macros's releases.

v4.1.22-@​embroider/compat

Release (2026-07-28)

  • @​embroider/compat 4.1.22 (patch)
  • @​embroider/core 4.6.3 (patch)
  • @​embroider/macros 1.20.6 (patch)
  • @​embroider/vite 1.7.9 (patch)

🐛 Bug Fix

🏠 Internal

Committers: 2

v8.3.1-@​embroider/addon-dev

Release (2026-06-24)

  • @​embroider/addon-dev 8.3.1 (patch)
  • @​embroider/compat 4.1.21 (patch)
  • @​embroider/core 4.6.2 (patch)
  • @​embroider/macros 1.20.5 (patch)
  • @​embroider/vite 1.7.8 (patch)

🐛 Bug Fix

  • @embroider/addon-dev
    • #2777publicAssets uses closeBundle instead of generateBundle so it can work with generated assets (@​evoactivity)
  • @embroider/macros
    • #2772 Use parseSync in @​embroider/macros for Babel 8 compatibility (@​johanrd)

Committers: 2

v1.7.7-@​embroider/vite

Release (2026-06-17)

  • @​embroider/vite 1.7.7 (patch)

🐛 Bug Fix

  • @embroider/vite
    • #2771 fix: tolerate ENOTEMPTY on jumpRoot rename race in @​embroider/vite resolver (@​hugorodro)

🏠 Internal

... (truncated)

Changelog

Sourced from @​embroider/macros's changelog.

Embroider Changelog

Release (2026-07-28)

  • @​embroider/compat 4.1.22 (patch)
  • @​embroider/core 4.6.3 (patch)
  • @​embroider/macros 1.20.6 (patch)
  • @​embroider/vite 1.7.9 (patch)

🐛 Bug Fix

🏠 Internal

Committers: 2

Release (2026-06-24)

  • @​embroider/addon-dev 8.3.1 (patch)
  • @​embroider/compat 4.1.21 (patch)
  • @​embroider/core 4.6.2 (patch)
  • @​embroider/macros 1.20.5 (patch)
  • @​embroider/vite 1.7.8 (patch)

🐛 Bug Fix

  • @embroider/addon-dev
    • #2777publicAssets uses closeBundle...

      Description has been truncated

Bumps the dependencies group with 15 updates:
| Package | From | To |
| --- | --- | --- |
| [@vizzly-testing/honeydiff](https://github.com/vizzly-testing/r-honeydiff) | `0.14.0` | `0.15.0` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.5.6` | `2.5.7` |
| [@modelcontextprotocol/sdk](https://github.com/modelcontextprotocol/typescript-sdk) | `1.29.0` | `1.30.0` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.62.0` | `1.62.1` |
| [postcss](https://github.com/postcss/postcss) | `8.5.25` | `8.5.26` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.1.5` | `8.2.0` |
| [playwright-core](https://github.com/microsoft/playwright) | `1.62.0` | `1.62.1` |
| [playwright](https://github.com/microsoft/playwright) | `1.62.0` | `1.62.1` |
| [@embroider/compat](https://github.com/embroider-build/embroider/tree/HEAD/packages/compat) | `4.1.21` | `4.1.22` |
| [@embroider/core](https://github.com/embroider-build/embroider/tree/HEAD/packages/core) | `4.6.2` | `4.6.3` |
| [@embroider/macros](https://github.com/embroider-build/embroider/tree/HEAD/packages/macros) | `1.20.5` | `1.20.6` |
| [@embroider/vite](https://github.com/embroider-build/embroider/tree/HEAD/packages/vite) | `1.7.8` | `1.7.9` |
| [@storybook/react](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react) | `10.5.5` | `10.5.7` |
| [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) | `10.5.5` | `10.5.7` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/core) | `10.5.5` | `10.5.7` |
Updates `@vizzly-testing/honeydiff` from 0.14.0 to 0.15.0
- [Commits](https://github.com/vizzly-testing/r-honeydiff/commits)
Updates `@biomejs/biome` from 2.5.6 to 2.5.7
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.5.7/packages/@biomejs/biome)
Updates `@modelcontextprotocol/sdk` from 1.29.0 to 1.30.0
- [Release notes](https://github.com/modelcontextprotocol/typescript-sdk/releases)
- [Commits](modelcontextprotocol/typescript-sdk@v1.29.0...1.30.0)
Updates `@playwright/test` from 1.62.0 to 1.62.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.62.0...v1.62.1)
Updates `postcss` from 8.5.25 to 8.5.26
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.5.25...8.5.26)
Updates `vite` from 8.1.5 to 8.2.0
- [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/create-vite@8.2.0/packages/vite)
Updates `playwright-core` from 1.62.0 to 1.62.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.62.0...v1.62.1)
Updates `playwright` from 1.62.0 to 1.62.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.62.0...v1.62.1)
Updates `@embroider/compat` from 4.1.21 to 4.1.22
- [Release notes](https://github.com/embroider-build/embroider/releases)
- [Changelog](https://github.com/embroider-build/embroider/blob/main/CHANGELOG.md)
- [Commits](https://github.com/embroider-build/embroider/commits/HEAD/packages/compat)
Updates `@embroider/core` from 4.6.2 to 4.6.3
- [Release notes](https://github.com/embroider-build/embroider/releases)
- [Changelog](https://github.com/embroider-build/embroider/blob/main/CHANGELOG.md)
- [Commits](https://github.com/embroider-build/embroider/commits/HEAD/packages/core)
Updates `@embroider/macros` from 1.20.5 to 1.20.6
- [Release notes](https://github.com/embroider-build/embroider/releases)
- [Changelog](https://github.com/embroider-build/embroider/blob/main/CHANGELOG.md)
- [Commits](https://github.com/embroider-build/embroider/commits/HEAD/packages/macros)
Updates `@embroider/vite` from 1.7.8 to 1.7.9
- [Release notes](https://github.com/embroider-build/embroider/releases)
- [Changelog](https://github.com/embroider-build/embroider/blob/main/CHANGELOG.md)
- [Commits](https://github.com/embroider-build/embroider/commits/HEAD/packages/vite)
Updates `@storybook/react` from 10.5.5 to 10.5.7
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.5.7/code/renderers/react)
Updates `@storybook/react-vite` from 10.5.5 to 10.5.7
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.5.7/code/frameworks/react-vite)
Updates `storybook` from 10.5.5 to 10.5.7
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.5.7/code/core)
---
updated-dependencies:
- dependency-name: "@vizzly-testing/honeydiff"
dependency-version: 0.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: dependencies
- dependency-name: "@biomejs/biome"
dependency-version: 2.5.7
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: "@modelcontextprotocol/sdk"
dependency-version: 1.30.0
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: dependencies
- dependency-name: "@playwright/test"
dependency-version: 1.62.1
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: postcss
dependency-version: 8.5.26
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: vite
dependency-version: 8.2.0
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: dependencies
- dependency-name: playwright-core
dependency-version: 1.62.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: playwright
dependency-version: 1.62.1
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: "@embroider/compat"
dependency-version: 4.1.22
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: "@embroider/core"
dependency-version: 4.6.3
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: "@embroider/macros"
dependency-version: 1.20.6
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: "@embroider/vite"
dependency-version: 1.7.9
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: "@storybook/react"
dependency-version: 10.5.7
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: "@storybook/react-vite"
dependency-version: 10.5.7
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: storybook
dependency-version: 10.5.7
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: dependencies
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotBot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 17, 2026
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependenciesPull requests that update a dependency filejavascriptPull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants