Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 27, 2025

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

Package From To
@playwright/test 1.56.1 1.57.0
@sveltejs/kit 2.48.4 2.49.0
@sveltejs/package 2.5.4 2.5.7
@types/node 24.10.0 24.10.1
prettier 3.6.2 3.7.1
svelte 5.43.5 5.45.2
svelte-check 4.3.3 4.3.4
typescript-eslint 8.46.3 8.48.0
vite 7.2.2 7.2.4

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

Release notes

Sourced from @​sveltejs/kit's releases.

@​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)

  • fix: correct query .set and .refresh behavior in commands (#14877)

  • fix: improved the accuracy of the types of the output of field.as('...') (#14908)

@​sveltejs/kit@​2.48.5

Patch Changes

... (truncated)

Changelog

Sourced from @​sveltejs/kit's changelog.

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)

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

  • fix: correct query .set and .refresh behavior in commands (#14877)

  • fix: improved the accuracy of the types of the output of field.as('...') (#14908)

... (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 prettier from 3.6.2 to 3.7.1

Release notes

Sourced from prettier's releases.

3.7.1

🔗 Changelog

3.7.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.7.1

diff

API: Fix performance regression in doc printer (#18342 by @​fisker)

Prettier 3.7.0 can be very slow when formatting big files, the regression has been fixed.

3.7.0

diff

🔗 Release Notes

Commits
  • 47c40b3 Release 3.7.1
  • 99df071 Release @prettier/plugin-hermes & @prettier/plugin-oxc v0.1.1
  • d147f67 Fix performance regression in doc printer (#18342)
  • 1fe6a12 Git blame ignore 3.7.0
  • 3a098e3 Bump Prettier dependency to 3.7.0
  • c4905e5 Clean changelog_unreleased
  • 43236e2 Add blog post for v3.7 (#18323)
  • 8147ddd Release 3.7.0
  • 8a59916 Release @​prettier/plugin-hermes & @​prettier/plugin-oxc v0.1.0
  • b77751e chore(deps): update dependency @​angular/compiler to v21.0.1 (#18334)
  • Additional commits viewable in compare view
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.2

Release notes

Sourced from svelte's releases.

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

Patch Changes

  • fix: await blockers before initialising const (#17226)

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

  • fix: generate correct code for simple destructurings (#17237)

  • fix: ensure each block animations don't mess with transitions (#17238)

svelte@5.44.0

Minor Changes

  • feat: hydratable API (#17154)

svelte@5.43.15

Patch Changes

  • fix: don't execute attachments and attribute effects eagerly (#17208)

  • chore: lift "flushSync cannot be called in effects" restriction (#17139)

  • fix: store forked derived values (#17212)

svelte@5.43.14

Patch Changes

  • fix: correctly migrate named self closing slots (#17199)

  • fix: error at compile time instead of at runtime on await expressions inside bindings/transitions/animations/attachments (#17198)

  • fix: take async blockers into account for bindings/transitions/animations/attachments (#17198)

... (truncated)

Changelog

Sourced from svelte's changelog.

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)

5.45.0

Minor Changes

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

5.44.1

Patch Changes

  • fix: await blockers before initialising const (#17226)

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

  • fix: generate correct code for simple destructurings (#17237)

  • fix: ensure each block animations don't mess with transitions (#17238)

5.44.0

Minor Changes

  • feat: hydratable API (#17154)

5.43.15

Patch Changes

  • fix: don't execute attachments and attribute effects eagerly (#17208)

  • chore: lift "flushSync cannot be called in effects" restriction (#17139)

  • fix: store forked derived values (#17212)

5.43.14

... (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.0

Release notes

Sourced from typescript-eslint's releases.

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

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

v8.47.0

8.47.0 (2025-11-17)

🚀 Features

  • eslint-plugin: [no-unused-private-class-members] new extension rule (#10913)

❤️ Thank You

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

v8.46.4

8.46.4 (2025-11-10)

🩹 Fixes

... (truncated)

Changelog

Sourced from typescript-eslint's changelog.

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

Release notes

Sourced from vite's releases.

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.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 9 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.0` |
| [@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` |
| [prettier](https://github.com/prettier/prettier) | `3.6.2` | `3.7.1` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) | `5.43.5` | `5.45.2` |
| [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.0` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `7.2.2` | `7.2.4` |



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.0
- [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.0/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 `prettier` from 3.6.2 to 3.7.1
- [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.1)

Updates `svelte` from 5.43.5 to 5.45.2
- [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.2/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.0
- [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.0/packages/typescript-eslint)

Updates `vite` from 7.2.2 to 7.2.4
- [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/v7.2.4/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.0
  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: prettier
  dependency-version: 3.7.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-and-patch
- dependency-name: svelte
  dependency-version: 5.45.2
  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.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-and-patch
- dependency-name: vite
  dependency-version: 7.2.4
  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 Nov 27, 2025
@cloudflare-workers-and-pages
Copy link

cloudflare-workers-and-pages bot commented Nov 27, 2025

Deploying xterm-svelte with  Cloudflare Pages  Cloudflare Pages

Latest commit: 112c577
Status: ✅  Deploy successful!
Preview URL: https://7fe14458.xterm-svelte.pages.dev
Branch Preview URL: https://dependabot-npm-and-yarn-npm-uxky.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