Skip to content

chore(deps-dev): bump the development group with 8 updates#19

Merged
github-actions[bot] merged 1 commit into
mainfrom
dependabot/npm_and_yarn/development-5e61ed314c
Jun 2, 2026
Merged

chore(deps-dev): bump the development group with 8 updates#19
github-actions[bot] merged 1 commit into
mainfrom
dependabot/npm_and_yarn/development-5e61ed314c

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the development group with 8 updates:

Package From To
@sveltejs/vite-plugin-svelte 7.0.0 7.1.2
lighthouse 13.1.0 13.3.0
playwright 1.59.1 1.60.0
svelte 5.55.7 5.56.1
svelte-check 4.4.7 4.5.0
vite 8.0.10 8.0.16
vite-plugin-pwa 1.2.0 1.3.0
vitest 4.1.5 4.1.8

Updates @sveltejs/vite-plugin-svelte from 7.0.0 to 7.1.2

Release notes

Sourced from @​sveltejs/vite-plugin-svelte's releases.

@​sveltejs/vite-plugin-svelte@​7.1.2

Patch Changes

  • fix: correctly resolve compiled CSS on the server for dependencies with Svelte files (#1342)

@​sveltejs/vite-plugin-svelte@​7.1.1

Patch Changes

  • fix: pass typescript.onlyRemoveTypeImports to transformWithOxc in vitePreprocess so that value imports are not dropped when they are only referenced in Svelte template markup (#1326)

  • fix: correctly resolve compiled CSS for optimised Svelte dependencies on the server (#1336)

@​sveltejs/vite-plugin-svelte@​7.1.0

Minor Changes

  • feat: enable optimizer for server environments during dev (#1328)
Changelog

Sourced from @​sveltejs/vite-plugin-svelte's changelog.

7.1.2

Patch Changes

  • fix: correctly resolve compiled CSS on the server for dependencies with Svelte files (#1342)

7.1.1

Patch Changes

  • fix: pass typescript.onlyRemoveTypeImports to transformWithOxc in vitePreprocess so that value imports are not dropped when they are only referenced in Svelte template markup (#1326)

  • fix: correctly resolve compiled CSS for optimised Svelte dependencies on the server (#1336)

7.1.0

Minor Changes

  • feat: enable optimizer for server environments during dev (#1328)
Commits

Updates lighthouse from 13.1.0 to 13.3.0

Release notes

Sourced from lighthouse's releases.

v13.3.0

Full Changelog

We expect this release to ship in the DevTools of Chrome 150, and to PageSpeed Insights within 2 weeks.

Notable Changes

  • New agentic browsing category added to default config (#17002)

Core

  • agentic-web: add links to category and audit descriptions (#16997)
  • llms-txt: adjust titles and descriptions and add smoketests (#17005)

Deps

  • upgrade dependencies (#17006)

Tests

  • smoke: widen byte efficiency wastedBytes range for ToT (#16996)
  • webmcp: add webmcp smoketests (#16999)

Misc

  • bundle: update build-bundle-mcp (#16995)

v13.2.0

Full Changelog

We expect this release to ship in the DevTools of Chrome 150, and to PageSpeed Insights within 2 weeks.

New contributors

Thanks to our new contributors 👽🐷🐰🐯🐻!

New Audits

  • webmcp-form-coverage: add audit for missing webmcp tool annotations (#16964)
  • webmcp-registered-tools: add audit to list registered webmcp tools (#16959)
  • webmcp-schema-validity: add audit to check WebMCP schema issues (#16973)

Core

  • implement UKM Invalidate fallback for LCP (#16956)
  • agentic: add new agentic browsing category (#16953)

... (truncated)

Changelog

Sourced from lighthouse's changelog.

13.3.0 (2026-05-07)

Full Changelog

We expect this release to ship in the DevTools of Chrome 150, and to PageSpeed Insights within 2 weeks.

Notable Changes

  • New agentic browsing category added to default config (#17002)

Core

  • agentic-web: add links to category and audit descriptions (#16997)
  • llms-txt: adjust titles and descriptions and add smoketests (#17005)

Deps

  • upgrade dependencies (#17006)

Tests

  • smoke: widen byte efficiency wastedBytes range for ToT (#16996)
  • webmcp: add webmcp smoketests (#16999)

Misc

  • bundle: update build-bundle-mcp (#16995)

13.2.0 (2026-04-30)

Full Changelog

We expect this release to ship in the DevTools of Chrome 150, and to PageSpeed Insights within 2 weeks.

New contributors

Thanks to our new contributors 👽🐷🐰🐯🐻!

New Audits

  • webmcp-form-coverage: add audit for missing webmcp tool annotations (#16964)
  • webmcp-registered-tools: add audit to list registered webmcp tools (#16959)
  • webmcp-schema-validity: add audit to check WebMCP schema issues (#16973)

Core

  • implement UKM Invalidate fallback for LCP (#16956)
  • agentic: add new agentic browsing category (#16953)

... (truncated)

Commits
  • 7d8dcf5 v13.3.0 (#17008)
  • f146050 deps: upgrade dependencies (#17006)
  • ec66b4a core(llms-txt): adjust titles and descriptions and add smoketests (#17005)
  • 147d04c tests(webmcp): add webmcp smoketests (#16999)
  • e120fad Revert "clients(devtools): include agentic browsing config in devtools entry"...
  • e796f1b core(agentic browsing): add agentic browsing category to default config (#17002)
  • e148cc6 Revert "clients(devtools): include agentic browsing config in devtools entry"...
  • 081b1f2 clients(devtools): include agentic browsing config in devtools entry (#16998)
  • 7db9ab8 core(agentic-web): add links to category and audit descriptions (#16997)
  • 8c6a64e misc(bundle): update build-bundle-mcp (#16995)
  • Additional commits viewable in compare view

Updates playwright from 1.59.1 to 1.60.0

Release notes

Sourced from playwright'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 svelte from 5.55.7 to 5.56.1

Release notes

Sourced from svelte's releases.

svelte@5.56.1

Patch Changes

  • fix: error at compile time on duplicate snippet/declaration tag definitions (#18351)

  • fix: parse declaration tag contents more robustly (#18353)

  • fix: correctly transform references to earlier declarators in a declaration tag (e.g. {let a = $state(0), b = $derived(a * 2)}) (#18348)

  • fix: avoid spurious state_referenced_locally warnings for $derived declarations in declaration tags (#18348)

  • fix: tolerate whitespace before let/const in declaration tags (#18348)

  • fix: prevent infinite loop when a tag's expression ends with a trailing / at the end of the input (#18350)

  • fix: more robust parsing of declaration tags with regards to type (#18330)

  • fix: preserve newlines in spread input values when the type attribute is applied after value (#18345)

  • fix: update SvelteURLSearchParams when setting duplicate keys to the same joined value (#18336)

  • fix: check references for blockers on server, too (#18352)

svelte@5.56.0

Minor Changes

  • feat: allow declarations in the template (#18282)

Patch Changes

  • perf: use createElement instead of createElementNS for HTML elements (#18262)

  • perf: store current_sources as a Set for O(1) membership checks (#18278)

  • perf: deduplicate identical hoisted templates within a component (#18320)

  • perf: hoist rest_props exclude list as a module-scope Set (#18252)

svelte@5.55.10

Patch Changes

  • fix: unlink errored and otherwise finished batch (#18264)

  • perf: walk composedPath() directly in delegated event propagation (#18268)

  • fix: transfer effects when merging batches (#18254)

  • fix: allow $derived(await ...) in disconnected effect roots (#18273)

  • fix: remove temporary raw-text hydration markers (#18269)

... (truncated)

Changelog

Sourced from svelte's changelog.

5.56.1

Patch Changes

  • fix: error at compile time on duplicate snippet/declaration tag definitions (#18351)

  • fix: parse declaration tag contents more robustly (#18353)

  • fix: correctly transform references to earlier declarators in a declaration tag (e.g. {let a = $state(0), b = $derived(a * 2)}) (#18348)

  • fix: avoid spurious state_referenced_locally warnings for $derived declarations in declaration tags (#18348)

  • fix: tolerate whitespace before let/const in declaration tags (#18348)

  • fix: prevent infinite loop when a tag's expression ends with a trailing / at the end of the input (#18350)

  • fix: more robust parsing of declaration tags with regards to type (#18330)

  • fix: preserve newlines in spread input values when the type attribute is applied after value (#18345)

  • fix: update SvelteURLSearchParams when setting duplicate keys to the same joined value (#18336)

  • fix: check references for blockers on server, too (#18352)

5.56.0

Minor Changes

  • feat: allow declarations in the template (#18282)

Patch Changes

  • perf: use createElement instead of createElementNS for HTML elements (#18262)

  • perf: store current_sources as a Set for O(1) membership checks (#18278)

  • perf: deduplicate identical hoisted templates within a component (#18320)

  • perf: hoist rest_props exclude list as a module-scope Set (#18252)

5.55.10

Patch Changes

  • fix: unlink errored and otherwise finished batch (#18264)

  • perf: walk composedPath() directly in delegated event propagation (#18268)

  • fix: transfer effects when merging batches (#18254)

... (truncated)

Commits
  • 3ef761b Version Packages (#18346)
  • 5b8db1b fix: error at compile time on duplicate snippet/declaration tag definitions (...
  • 56013a2 fix: check references for blockers on server, too (#18352)
  • 2afb895 fix: parse declaration tags with a division operator in the initializer (#18353)
  • b471c15 fix: don't hang on a tag whose expression ends with a trailing slash (#18350)
  • c74f44f fix: don't mistake type identifier expressions for TS type declarations i...
  • b76b937 fix: various declaration tag bugs (#18348)
  • 378bb25 fix: set input type before spread value (#18345)
  • 2f6307a Fix searchParams.set duplicate updates (#18336)
  • 11985c0 docs: desloppify browser support page (#18333)
  • Additional commits viewable in compare view

Updates svelte-check from 4.4.7 to 4.5.0

Release notes

Sourced from svelte-check's releases.

svelte-check@4.5.0

Minor Changes

  • feat: support Svelte 5 declaration tags (#3033)

Patch Changes

  • fix: properly handle props with the name slot inside Svelte 5 snippets (#3030)

  • feat: add support for svelte config ts/mts files (#3009)

svelte-check@4.4.8

Patch Changes

  • feat: typescript 6.0 support (#2985)
Commits
  • 67fbcae Version Packages (#3018)
  • 3474048 fix(emitDts): drop declarations emitted outside declarationDir (#2965)
  • e9f4ce9 feat: support Svelte 5 declaration tags (#3033)
  • 6bd8b17 fix: take into account component references when calculating snippet hoistabi...
  • 86fafb1 fix: handle prop named "slot" inside Svelte 5 snippets (#3030)
  • f53efb3 feat: add support for svelte config ts/mts files (#3009)
  • 6d19b08 fix: tweak "show compiled" icon (#3019)
  • 6e31da3 fix: prevent > in expression affects HTML folding (#3029)
  • 1521b92 fix: support prettier.useEditorConfig setting (#3026)
  • eb3fba7 feat: support CSS completions in nested style tags (#3022)
  • Additional commits viewable in compare view

Updates vite from 8.0.10 to 8.0.16

Release notes

Sourced from vite's releases.

v8.0.16

Please refer to CHANGELOG.md for details.

v8.0.15

Please refer to CHANGELOG.md for details.

v8.0.14

Please refer to CHANGELOG.md for details.

v8.0.13

Please refer to CHANGELOG.md for details.

v8.0.12

Please refer to CHANGELOG.md for details.

v8.0.11

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

8.0.16 (2026-06-01)

Bug Fixes

8.0.15 (2026-06-01)

Features

Bug Fixes

  • capitalize error messages and remove spurious space in parse error (#22488) (85a0eff)
  • deps: update all non-major dependencies (#22511) (2686d7d)
  • dev: fix html-proxy cache key mismatch for /@fs/ HTML paths (#21762) (47c4213)
  • glob: error on relative glob in virtual module when no files match (#22497) (5c8e98f)
  • optimizer: close the rolldown bundle when write() rejects (#22528) (e3cfb9d)
  • resolve: provide onWarn for viteResolvePlugin in JS plugin containers (#22509) (40985f1)

Miscellaneous Chores

Code Refactoring

8.0.14 (2026-05-21)

Features

Bug Fixes

  • deps: update all non-major dependencies (#22471) (98b8163)
  • dev: handle errors when sending messages to vite server (#22450) (e8e9a34)
  • html: handle trailing slash paths in transformIndexHtml (#22480) (5d94d1b)
  • optimizer: pass oxc jsx options to transformSync in dependency scan (#22342) (b3132da)

Miscellaneous Chores

  • deps: update rolldown-related dependencies (#22470) (7cb728e)
  • remove irrelevant commits from changelog (2c69495)

Code Refactoring

  • glob: do not rewrite import path for absolute base (#22310) (0ae2844)

... (truncated)

Commits

Updates vite-plugin-pwa from 1.2.0 to 1.3.0

Release notes

Sourced from vite-plugin-pwa's releases.

v1.3.0

   🚀 Features

    View changes on GitHub
Commits
  • 05670fc chore: release v1.3.0
  • 207f86e Merge pull request #899 from rj-au/patch-1
  • 67f5000 Merge pull request #929 from vite-pwa/userquin/chore-bump-workbox-to-7.4.1
  • a964691 chore: update workbox to 7.4.1
  • 2432f65 Merge pull request #924 from Hermione-Granger-1176/feat/add-vite-8-peer-dep
  • 3476818 Merge pull request #914 from tomrehnstrom/feat/on-need-reload
  • 276af62 feat: add vite 8 peer dependency support
  • 4e16215 chore: use "moduleResolution": "bundler" (#913)
  • fb30890 feat(client): add onNeedReload callback
  • 3fc4b27 JSDOC: registerType: fix grammar and description
  • See full diff in compare view

Updates vitest from 4.1.5 to 4.1.8

Release notes

Sourced from vitest's releases.

v4.1.8

   🐞 Bug Fixes

    View changes on GitHub

v4.1.7

   🐞 Bug Fixes

    View changes on GitHub

v4.1.6

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub
Commits
  • e61f2dd chore: release v4.1.8
  • e4067b3 fix(browser): disable client cdp API when allowWrite/allowExec: false [ba...
  • a09d472 chore: release v4.1.7
  • a8fd24c chore: release v4.1.6
  • 18af98c fix(browser): simplify orchestrator otel carrier (#10285)
  • 3188260 feat(browser): provide project reference in ToMatchScreenshotResolvePath (#...
  • See full diff in compare view

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 development group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [@sveltejs/vite-plugin-svelte](https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte) | `7.0.0` | `7.1.2` |
| [lighthouse](https://github.com/GoogleChrome/lighthouse) | `13.1.0` | `13.3.0` |
| [playwright](https://github.com/microsoft/playwright) | `1.59.1` | `1.60.0` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) | `5.55.7` | `5.56.1` |
| [svelte-check](https://github.com/sveltejs/language-tools) | `4.4.7` | `4.5.0` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.0.10` | `8.0.16` |
| [vite-plugin-pwa](https://github.com/vite-pwa/vite-plugin-pwa) | `1.2.0` | `1.3.0` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.5` | `4.1.8` |


Updates `@sveltejs/vite-plugin-svelte` from 7.0.0 to 7.1.2
- [Release notes](https://github.com/sveltejs/vite-plugin-svelte/releases)
- [Changelog](https://github.com/sveltejs/vite-plugin-svelte/blob/main/packages/vite-plugin-svelte/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/vite-plugin-svelte/commits/@sveltejs/vite-plugin-svelte@7.1.2/packages/vite-plugin-svelte)

Updates `lighthouse` from 13.1.0 to 13.3.0
- [Release notes](https://github.com/GoogleChrome/lighthouse/releases)
- [Changelog](https://github.com/GoogleChrome/lighthouse/blob/main/changelog.md)
- [Commits](GoogleChrome/lighthouse@v13.1.0...v13.3.0)

Updates `playwright` 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 `svelte` from 5.55.7 to 5.56.1
- [Release notes](https://github.com/sveltejs/svelte/releases)
- [Changelog](https://github.com/sveltejs/svelte/blob/main/packages/svelte/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/svelte/commits/svelte@5.56.1/packages/svelte)

Updates `svelte-check` from 4.4.7 to 4.5.0
- [Release notes](https://github.com/sveltejs/language-tools/releases)
- [Commits](https://github.com/sveltejs/language-tools/compare/svelte-check@4.4.7...svelte-check@4.5.0)

Updates `vite` from 8.0.10 to 8.0.16
- [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.0.16/packages/vite)

Updates `vite-plugin-pwa` from 1.2.0 to 1.3.0
- [Release notes](https://github.com/vite-pwa/vite-plugin-pwa/releases)
- [Commits](vite-pwa/vite-plugin-pwa@v1.2.0...v1.3.0)

Updates `vitest` from 4.1.5 to 4.1.8
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.8/packages/vitest)

---
updated-dependencies:
- dependency-name: "@sveltejs/vite-plugin-svelte"
  dependency-version: 7.1.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development
- dependency-name: lighthouse
  dependency-version: 13.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development
- dependency-name: playwright
  dependency-version: 1.60.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development
- dependency-name: svelte
  dependency-version: 5.56.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development
- dependency-name: svelte-check
  dependency-version: 4.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development
- dependency-name: vite
  dependency-version: 8.0.16
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development
- dependency-name: vite-plugin-pwa
  dependency-version: 1.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development
- dependency-name: vitest
  dependency-version: 4.1.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Jun 2, 2026

Labels

The following labels could not be found: auto-merge, dependencies, npm. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@github-actions github-actions Bot merged commit 16fc4bd into main Jun 2, 2026
4 checks passed
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/development-5e61ed314c branch June 2, 2026 06:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants