Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 8, 2025

Bumps the npm-minor-and-patch group with 10 updates in the / directory:

Package From To
@playwright/test 1.56.1 1.57.0
@sveltejs/kit 2.48.4 2.49.1
@sveltejs/package 2.5.4 2.5.7
@types/node 24.10.0 24.10.1
eslint-plugin-svelte 3.13.0 3.13.1
prettier 3.6.2 3.7.4
svelte 5.43.5 5.45.6
svelte-check 4.3.3 4.3.4
typescript-eslint 8.46.3 8.48.1
vite 7.2.2 7.2.7

Updates @playwright/test from 1.56.1 to 1.57.0

Release notes

Sourced from @​playwright/test's releases.

v1.57.0

Speedboard

In HTML reporter, there's a new tab we call "Speedboard":

It shows you all your executed tests sorted by slowness, and can help you understand where your test suite is taking longer than expected. Take a look at yours - maybe you'll find some tests that are spending a longer time waiting than they should!

Chrome for Testing

Starting with this release, Playwright switches from Chromium, to using Chrome for Testing builds. Both headed and headless browsers are subject to this. Your tests should still be passing after upgrading to Playwright 1.57.

We're expecting no functional changes to come from this switch. The biggest change is the new icon and title in your toolbar.

If you still see an unexpected behaviour change, please file an issue.

On Arm64 Linux, Playwright continues to use Chromium.

Waiting for webserver output

testConfig.webServer added a wait field. Pass a regular expression, and Playwright will wait until the webserver logs match it.

import { defineConfig } from '@playwright/test';
export default defineConfig({
webServer: {
command: 'npm run start',
wait: {
stdout: '/Listening on port (?<my_server_port>\d+)/'
},
},
});

If you include a named capture group into the expression, then Playwright will provide the capture group contents via environment variables:

import { test, expect } from '@playwright/test';
test.use({ baseUrl: http://localhost:${process.env.MY_SERVER_PORT ?? 3000} });
test('homepage', async ({ page }) => {
await page.goto('/');
});
</tr></table>

... (truncated)

Commits

Updates @sveltejs/kit from 2.48.4 to 2.49.1

Release notes

Sourced from @​sveltejs/kit's releases.

@​sveltejs/kit@​2.49.1

Patch Changes

  • fix: suppress state_referenced_locally warnings in .svelte-kit/generated/root.svelte (#15013)

  • fix: TypeError when doing response.clone() in page load (#15005)

@​sveltejs/kit@​2.49.0

Minor Changes

  • feat: stream file uploads inside form remote functions allowing form data to be accessed before large files finish uploading (#14775)

@​sveltejs/kit@​2.48.8

Patch Changes

  • breaking: invalid now must be imported from @sveltejs/kit (#14768)

  • breaking: remove submitter option from experimental form validate() method, always provide default submitter (#14762)

@​sveltejs/kit@​2.48.7

Patch Changes

  • fix: allow multiple server-timing headers (#14700)

  • fix: allow access to root-level issues in schema-less forms (#14893)

  • fix: allow hosting hash-based apps from non-index.html files (#14825)

@​sveltejs/kit@​2.48.6

Patch Changes

  • fix: clear issues upon passing validation (#14683)

  • fix: don't use fork of unrelated route (#14947)

  • fix: prevent type errors when optional @opentelemetry/api dependency isn't installed (#14949)

  • fix: preserve this when invoking standard validator (#14943)

  • fix: treat client/universal hooks as entrypoints for illegal server import detection (#14876)

... (truncated)

Changelog

Sourced from @​sveltejs/kit's changelog.

2.49.1

Patch Changes

  • fix: suppress state_referenced_locally warnings in .svelte-kit/generated/root.svelte (#15013)

  • fix: TypeError when doing response.clone() in page load (#15005)

2.49.0

Minor Changes

  • feat: stream file uploads inside form remote functions allowing form data to be accessed before large files finish uploading (#14775)

2.48.8

Patch Changes

  • breaking: invalid now must be imported from @sveltejs/kit (#14768)

  • breaking: remove submitter option from experimental form validate() method, always provide default submitter (#14762)

2.48.7

Patch Changes

  • fix: allow multiple server-timing headers (#14700)

  • fix: allow access to root-level issues in schema-less forms (#14893)

  • fix: allow hosting hash-based apps from non-index.html files (#14825)

2.48.6

Patch Changes

  • fix: clear issues upon passing validation (#14683)

  • fix: don't use fork of unrelated route (#14947)

  • fix: prevent type errors when optional @opentelemetry/api dependency isn't installed (#14949)

  • fix: preserve this when invoking standard validator (#14943)

... (truncated)

Commits

Updates @sveltejs/package from 2.5.4 to 2.5.7

Release notes

Sourced from @​sveltejs/package's releases.

@​sveltejs/package@​2.5.7

Patch Changes

  • chore(deps): update dependency chokidar to v5 (#14986)

@​sveltejs/package@​2.5.6

Patch Changes

  • fix: transform .ts extensions to .js in import/export statements of Svelte files when using rewriteRelativeImportExtensions (#14936)

@​sveltejs/package@​2.5.5

Patch Changes

  • fix: resolve aliases before transpiling for rewriteRelativeImportExtensions (#14673)
Changelog

Sourced from @​sveltejs/package's changelog.

2.5.7

Patch Changes

  • chore(deps): update dependency chokidar to v5 (#14986)

2.5.6

Patch Changes

  • fix: transform .ts extensions to .js in import/export statements of Svelte files when using rewriteRelativeImportExtensions (#14936)

2.5.5

Patch Changes

  • fix: resolve aliases before transpiling for rewriteRelativeImportExtensions (#14673)
Commits

Updates @types/node from 24.10.0 to 24.10.1

Commits

Updates eslint-plugin-svelte from 3.13.0 to 3.13.1

Release notes

Sourced from eslint-plugin-svelte's releases.

eslint-plugin-svelte@3.13.1

Patch Changes

Changelog

Sourced from eslint-plugin-svelte's changelog.

3.13.1

Patch Changes

Commits
  • a14f0ff chore: release eslint-plugin-svelte (#1439)
  • a87e40b fix(prefer-destructured-store-props): handle runes properly (#1440)
  • 817b137 fix: Support experimental.async compiler option (#1438)
  • 89d030d fix(svelte/indent): crash when using ts import type (#1437)
  • c223ed1 chore(deps): update dependency espree to v11 (#1422)
  • 72052c2 chore(deps): update dependency eslint-visitor-keys to v5 (#1421)
  • d1d11a4 chore(deps): update dependency eslint-scope to v9 (#1420)
  • 386efc8 chore(deps): update dependency esbuild to ^0.27.0 (#1417)
  • See full diff in compare view

Updates prettier from 3.6.2 to 3.7.4

Release notes

Sourced from prettier's releases.

3.7.4

What's Changed

🔗 Changelog

3.7.3

What's Changed

🔗 Changelog

3.7.2

What's Changed

🔗 Changelog

3.7.1

🔗 Changelog

3.7.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.7.4

diff

LWC: Avoid quote around interpolations (#18383 by @​kovsu)

<!-- Input -->
<div foo={bar}>   </div>
<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>
<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>

TypeScript: Fix comment inside union type gets duplicated (#18393 by @​fisker)

// Input
type Foo = (/** comment */ a | b) | c;
// Prettier 3.7.3
type Foo = /** comment / (/* comment */ a | b) | c;
// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;

TypeScript: Fix unstable comment print in union type comments (#18395 by @​fisker)

// Input
type X = (A | B) & (
  // comment
  A | B
);
// Prettier 3.7.3 (first format)
type X = (A | B) &
(// comment
A | B);
// Prettier 3.7.3 (second format)
type X = (
| A
</tr></table>

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for prettier since your current version.


Updates svelte from 5.43.5 to 5.45.6

Release notes

Sourced from svelte's releases.

svelte@5.45.6

Patch Changes

  • fix: don't issue a11y warning for <video> without captions if it has no src (#17311)

  • fix: add srcObject to permitted <audio>/<video> attributes (#17310)

svelte@5.45.5

Patch Changes

  • fix: correctly reconcile each blocks after outroing branches are resumed (#17258)

  • fix: destroy each items after siblings are resumed (#17258)

svelte@5.45.4

Patch Changes

  • chore: move DOM-related effect properties to effect.nodes (#17293)

  • fix: allow $props.id() to occur after an await (#17285)

  • fix: keep reactions up to date even when read outside of effect (#17295)

svelte@5.45.3

Patch Changes

  • add props to state_referenced_locally (#17266)

  • fix: preserve node locations for better sourcemaps (#17269)

  • fix: handle cross-realm Promises in hydratable (#17284)

svelte@5.45.2

Patch Changes

  • fix: array destructuring after await (#17254)

  • fix: throw on invalid {@tag}s (#17256)

svelte@5.45.1

Patch Changes

  • fix: link offscreen items and last effect in each block correctly (#17240)

svelte@5.45.0

Minor Changes

  • feat: add print(...) function (#16188)

svelte@5.44.1

... (truncated)

Changelog

Sourced from svelte's changelog.

5.45.6

Patch Changes

  • fix: don't issue a11y warning for <video> without captions if it has no src (#17311)

  • fix: add srcObject to permitted <audio>/<video> attributes (#17310)

5.45.5

Patch Changes

  • fix: correctly reconcile each blocks after outroing branches are resumed (#17258)

  • fix: destroy each items after siblings are resumed (#17258)

5.45.4

Patch Changes

  • chore: move DOM-related effect properties to effect.nodes (#17293)

  • fix: allow $props.id() to occur after an await (#17285)

  • fix: keep reactions up to date even when read outside of effect (#17295)

5.45.3

Patch Changes

  • add props to state_referenced_locally (#17266)

  • fix: preserve node locations for better sourcemaps (#17269)

  • fix: handle cross-realm Promises in hydratable (#17284)

5.45.2

Patch Changes

  • fix: array destructuring after await (#17254)

  • fix: throw on invalid {@tag}s (#17256)

5.45.1

Patch Changes

  • fix: link offscreen items and last effect in each block correctly (#17240)

... (truncated)

Commits

Updates svelte-check from 4.3.3 to 4.3.4

Release notes

Sourced from svelte-check's releases.

svelte-check@4.3.4

Patch Changes

  • chore: use machine format when run by Claude Code (#2870)
Commits
  • 253b872 Version Packages (#2869)
  • 6f08d66 fix: support experimental feature in "Show compiled Code" (#2884)
  • 6546923 feat: quick fix for adding lang="ts" (#2882)
  • ba9185b feat: support hierarchical document symbols (#2817)
  • 574c34d chore: turn changeset into patch
  • 16d8454 feat: use machine format when run by Claude Code (#2870)
  • 6a8ef1a fix: use moustache for svelte5 onhandler completion (#2883)
  • 2a31d04 chore: slight optimize
  • 04d52b7 fix: treat a script tag as top-level if it's the first tag in file (#2886)
  • d085830 docs: update command for setting up TailwindCSS (#2880)
  • Additional commits viewable in compare view

Updates typescript-eslint from 8.46.3 to 8.48.1

Release notes

Sourced from typescript-eslint's releases.

v8.48.1

8.48.1 (2025-12-02)

⏪ Reverts

  • eslint-plugin: revert "[no-redundant-type-constituents] use assignability checking for redundancy checks (#10744)" (#11812)

🩹 Fixes

  • eslint-plugin: [consistent-type-exports] check value flag before resolving alias (#11769)
  • eslint-plugin: honor ignored base types on generic classes (#11767)
  • eslint-plugin: [restrict-template-expressions] check base types in allow list (#11764, #11759)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.48.0

8.48.0 (2025-11-24)

🚀 Features

  • eslint-plugin: [no-redundant-type-constituents] use assignability checking for redundancy checks (#10744)
  • rule-tester: remove workaround for jest circular structure error (#11772)
  • typescript-estree: gate all errors behind allowInvalidAST (#11693)
  • typescript-estree: replace fast-glob with tinyglobby (#11740)

🩹 Fixes

  • eslint-plugin: [consistent-generic-constructors] ignore when constructor is typed array (#10477)
  • scope-manager: change unhelpful aaa error message and change analyze to expects Program (#11747)
  • typescript-estree: infers singleRun as true for project service (#11327)
  • typescript-estree: disallow binding patterns in parameter properties (#11760)

❤️ Thank You

... (truncated)

Changelog

Sourced from typescript-eslint's changelog.

8.48.1 (2025-12-02)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

8.48.0 (2025-11-24)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

8.47.0 (2025-11-17)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

8.46.4 (2025-11-10)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits

Updates vite from 7.2.2 to 7.2.7

Release notes

Sourced from vite's releases.

v7.2.7

Please refer to CHANGELOG.md for details.

v7.2.6

Please refer to CHANGELOG.md for details.

v7.2.5

Please refer to CHANGELOG.md for details.

Note: 7.2.5 failed to publish so it is skipped on npm

v7.2.4

Please refer to CHANGELOG.md for details.

v7.2.3

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

7.2.7 (2025-12-08)

Bug Fixes

7.2.6 (2025-12-01)

7.2.5 (2025-12-01)

Bug Fixes

Performance Improvements

Documentation

  • clarify manifest.json imports field is JS chunks only (#21136) (46d3077)

Miscellaneous Chores

7.2.4 (2025-11-20)

Bug Fixes

  • revert "perf(deps): replace debug with obug (#21107)" (2d66b7b)

7.2.3 (2025-11-20)

Bug Fixes

  • allow multiple bindCLIShortcuts calls with shortcut merging (#21103) (5909efd)
  • deps: update all non-major dependencies (#21096) (6a34ac3)
  • deps: update all non-major dependencies (#21128) (4f8171e)

Performance Improvements

Miscellaneous Chores

  • deps: update dependency @​rollup/plugin-commonjs to v29 (#21099) (02ceaec)
  • deps: update rolldown-related dependencies (#21095) (39a0a15)
  • deps: update rolldown-related dependencies (#21127) (5029720)
Commits

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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 npm-minor-and-patch group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.56.1` | `1.57.0` |
| [@sveltejs/kit](https://github.com/sveltejs/kit/tree/HEAD/packages/kit) | `2.48.4` | `2.49.1` |
| [@sveltejs/package](https://github.com/sveltejs/kit/tree/HEAD/packages/package) | `2.5.4` | `2.5.7` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.10.0` | `24.10.1` |
| [eslint-plugin-svelte](https://github.com/sveltejs/eslint-plugin-svelte/tree/HEAD/packages/eslint-plugin-svelte) | `3.13.0` | `3.13.1` |
| [prettier](https://github.com/prettier/prettier) | `3.6.2` | `3.7.4` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) | `5.43.5` | `5.45.6` |
| [svelte-check](https://github.com/sveltejs/language-tools) | `4.3.3` | `4.3.4` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.46.3` | `8.48.1` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `7.2.2` | `7.2.7` |



Updates `@playwright/test` from 1.56.1 to 1.57.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.56.1...v1.57.0)

Updates `@sveltejs/kit` from 2.48.4 to 2.49.1
- [Release notes](https://github.com/sveltejs/kit/releases)
- [Changelog](https://github.com/sveltejs/kit/blob/main/packages/kit/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/kit/commits/@sveltejs/kit@2.49.1/packages/kit)

Updates `@sveltejs/package` from 2.5.4 to 2.5.7
- [Release notes](https://github.com/sveltejs/kit/releases)
- [Changelog](https://github.com/sveltejs/kit/blob/main/packages/package/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/kit/commits/@sveltejs/package@2.5.7/packages/package)

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

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

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

Updates `svelte` from 5.43.5 to 5.45.6
- [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.45.6/packages/svelte)

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

Updates `typescript-eslint` from 8.46.3 to 8.48.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.48.1/packages/typescript-eslint)

Updates `vite` from 7.2.2 to 7.2.7
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v7.2.7/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v7.2.7/packages/vite)

---
updated-dependencies:
- dependency-name: "@playwright/test"
  dependency-version: 1.57.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-and-patch
- dependency-name: "@sveltejs/kit"
  dependency-version: 2.49.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-and-patch
- dependency-name: "@sveltejs/package"
  dependency-version: 2.5.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-and-patch
- dependency-name: "@types/node"
  dependency-version: 24.10.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-and-patch
- dependency-name: eslint-plugin-svelte
  dependency-version: 3.13.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-and-patch
- dependency-name: prettier
  dependency-version: 3.7.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-and-patch
- dependency-name: svelte
  dependency-version: 5.45.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-and-patch
- dependency-name: svelte-check
  dependency-version: 4.3.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-and-patch
- dependency-name: typescript-eslint
  dependency-version: 8.48.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-and-patch
- dependency-name: vite
  dependency-version: 7.2.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-and-patch
...

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 Dec 8, 2025
@cloudflare-workers-and-pages
Copy link

cloudflare-workers-and-pages bot commented Dec 8, 2025

Deploying xterm-svelte with  Cloudflare Pages  Cloudflare Pages

Latest commit: e70b92b
Status: ✅  Deploy successful!
Preview URL: https://f26e1746.xterm-svelte.pages.dev
Branch Preview URL: https://dependabot-npm-and-yarn-npm-v29k.xterm-svelte.pages.dev

View logs

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.

1 participant