Skip to content

Bump the site group across 1 directory with 12 updates #1592

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 1, 2025

Bumps the site group with 12 updates in the /docs/vercel directory:

Package From To
@sveltejs/kit 2.21.1 2.27.0
@sveltejs/vite-plugin-svelte 5.0.3 6.1.0
eslint 9.28.0 9.32.0
eslint-config-prettier 10.1.5 10.1.8
eslint-plugin-svelte 3.9.0 3.11.0
globals 16.2.0 16.3.0
prettier 3.5.3 3.6.2
svelte 5.33.12 5.37.2
svelte-check 4.2.1 4.3.0
typescript 5.8.3 5.9.2
typescript-eslint 8.33.0 8.38.0
vite 6.3.5 7.0.6

Updates @sveltejs/kit from 2.21.1 to 2.27.0

Release notes

Sourced from @​sveltejs/kit's releases.

@​sveltejs/kit@​2.27.0

Minor Changes

  • feat: remote functions (#13986)

@​sveltejs/kit@​2.26.1

Patch Changes

  • fix: posixify internal app server path (#14049)

  • fix: ignore route groups when generating typed routes (#14050)

@​sveltejs/kit@​2.26.0

Minor Changes

  • feat: better type-safety for page.route.id, page.params, page.url.pathname` and various other places (#13864)

  • feat: resolve(...) and asset(...) helpers for resolving paths (#13864)

  • feat: Add $app/types module with Asset, RouteId, Pathname, ResolvedPathname RouteParams<T> and LayoutParams<T> (#13864)

@​sveltejs/kit@​2.25.2

Patch Changes

  • fix: correctly set URL when navigating during an ongoing navigation (#14004)

@​sveltejs/kit@​2.25.1

Patch Changes

  • fix: add missing params property (#14012)

@​sveltejs/kit@​2.25.0

Minor Changes

  • feat: support asynchronous read implementations from adapters (#13859)

Patch Changes

  • fix: log when no Svelte config file has been found to avoid confusion (#14001)

@​sveltejs/kit@​2.24.0

Minor Changes

  • feat: typed params prop for page/layout components (#13999)

Patch Changes

... (truncated)

Changelog

Sourced from @​sveltejs/kit's changelog.

2.27.0

Minor Changes

  • feat: remote functions (#13986)

2.26.1

Patch Changes

  • fix: posixify internal app server path (#14049)

  • fix: ignore route groups when generating typed routes (#14050)

2.26.0

Minor Changes

  • feat: better type-safety for page.route.id, page.params, page.url.pathname and various other places (#13864)

  • feat: resolve(...) and asset(...) helpers for resolving paths (#13864)

  • feat: Add $app/types module with Asset, RouteId, Pathname, ResolvedPathname RouteParams<T> and LayoutParams<T> (#13864)

2.25.2

Patch Changes

  • fix: correctly set URL when navigating during an ongoing navigation (#14004)

2.25.1

Patch Changes

  • fix: add missing params property (#14012)

2.25.0

Minor Changes

  • feat: support asynchronous read implementations from adapters (#13859)

Patch Changes

  • fix: log when no Svelte config file has been found to avoid confusion (#14001)

... (truncated)

Commits

Updates @sveltejs/vite-plugin-svelte from 5.0.3 to 6.1.0

Release notes

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

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

Minor Changes

  • feat: add support for the new experimental.async option and apply dynamicCompileOptions when compiling Svelte modules (#1176)

Patch Changes

  • skip comment blocks when reporting compiler errors that might be caused by a preprocessor issue (#1166)

  • increase logLevel to info for "no Svelte config found" message (#1179)

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

Major Changes

  • drop support for node18 and update exports map to use default export. cjs is supported via require esm in node 20.19+ (#1129)

  • Remove experimental "advanced raw queries" feature. Basic File.svelte?raw is still supported. (#1145)

  • Using the typescript preprocessor now requires a tsconfig.json with verbatimModuleSyntax enabled, eg @​tsconfig/svelte (#1135)

  • remove support for loading commonjs svelte config files (#1142)

  • bump vite peer dependency to ^6.3.0 || ^7.0.0 (#1130)

  • define filters using object hook syntax and optimize the filter for resolveId (#1132)

    NOTE include logic has changed to files matching svelteConfig.include OR svelteConfig.extensions. Previously only files matching both were loaded and transformed.

  • split preprocess and compile into separate plugins (#1145)

    It allows vite plugins to transform code between preprocess and compile, see docs and is the recommended way to replace plugin.api.sveltePreprocess usage in other vite plugins. You can also use vite-plugin-inspect now to inspect the result of svelte.preprocess by checking the transform of vite-plugin-svelte:preprocess

    NOTE This can be a breaking change in case you have other plugins besides vite-plugin-svelte transforming your svelte code To fix this, read the docs on how to order plugins in relation to preprocess and compile

Minor Changes

  • Add experimental support for rolldown-vite (#1135)

  • replace esbuild optimizer with rolldown optimizer if rolldown-vite is used (#1135)

... (truncated)

Changelog

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

6.1.0

Minor Changes

  • feat: add support for the new experimental.async option and apply dynamicCompileOptions when compiling Svelte modules (#1176)

Patch Changes

  • skip comment blocks when reporting compiler errors that might be caused by a preprocessor issue (#1166)

  • increase logLevel to info for "no Svelte config found" message (#1179)

6.0.0

Major Changes

  • drop support for node18 and update exports map to use default export. cjs is supported via require esm in node 20.19+ (#1129)

  • Remove experimental "advanced raw queries" feature. Basic File.svelte?raw is still supported. (#1145)

  • Using the typescript preprocessor now requires a tsconfig.json with verbatimModuleSyntax enabled, eg @​tsconfig/svelte (#1135)

  • remove support for loading commonjs svelte config files (#1142)

  • bump vite peer dependency to ^6.3.0 || ^7.0.0 (#1130)

  • define filters using object hook syntax and optimize the filter for resolveId (#1132)

    NOTE include logic has changed to files matching svelteConfig.include OR svelteConfig.extensions. Previously only files matching both were loaded and transformed.

  • split preprocess and compile into separate plugins (#1145)

    It allows vite plugins to transform code between preprocess and compile, see docs and is the recommended way to replace plugin.api.sveltePreprocess usage in other vite plugins. You can also use vite-plugin-inspect now to inspect the result of svelte.preprocess by checking the transform of vite-plugin-svelte:preprocess

    NOTE This can be a breaking change in case you have other plugins besides vite-plugin-svelte transforming your svelte code To fix this, read the docs on how to order plugins in relation to preprocess and compile

... (truncated)

Commits
  • b5f7194 Version Packages (#1169)
  • 16c08e5 fix: log missing config at info level (#1179)
  • 6abf2c6 feat: support experimental.async and dynamicCompileOptions for Svelte modules...
  • 55951de fix(deps): update all non-major dependencies (#1175)
  • 666dc61 fix: do not wrongly suggest that a lang attribute is missing when finding com...
  • 280a5e7 Version Packages (#1164)
  • cb00201 fix(deps): update all non-major dependencies (#1162)
  • e687ccf Version Packages (next) (#1159)
  • fac52a4 fix: crawl local workspace private packages devDependencies (#1155)
  • 47e8a9f fix: reduce logging for deprecations (#1158)
  • Additional commits viewable in compare view

Updates eslint from 9.28.0 to 9.32.0

Release notes

Sourced from eslint's releases.

v9.32.0

Features

  • 1245000 feat: support explicit resource management in core rules (#19828) (fnx)
  • 0e957a7 feat: support typescript types in accessor rules (#19882) (fnx)

Bug Fixes

  • 960fd40 fix: Upgrade @​eslint/js (#19971) (Nicholas C. Zakas)
  • bbf23fa fix: Refactor reporting into FileReport (#19877) (Nicholas C. Zakas)
  • d498887 fix: bump @​eslint/plugin-kit to 0.3.4 to resolve vulnerability (#19965) (Milos Djermanovic)
  • f46fc6c fix: report only global references in no-implied-eval (#19932) (Nitin Kumar)
  • 7863d26 fix: remove outdated types in ParserOptions.ecmaFeatures (#19944) (ntnyq)
  • 3173305 fix: update execScript message in no-implied-eval rule (#19937) (TKDev7)

Documentation

  • 86e7426 docs: Update README (GitHub Actions Bot)

Chores

  • 50de1ce chore: package.json update for @​eslint/js release (Jenkins)
  • 74f01a3 ci: unpin jiti to version ^2.5.1 (#19970) (루밀LuMir)
  • 2ab1381 ci: pin jiti to version 2.4.2 (#19964) (Francesco Trotta)
  • b7f7545 test: switch to flat config mode in SourceCode tests (#19953) (Milos Djermanovic)
  • f5a35e3 test: switch to flat config mode in eslint-fuzzer (#19960) (Milos Djermanovic)
  • e22af8c refactor: use CustomRuleDefinitionType in JSRuleDefinition (#19949) (Francesco Trotta)
  • e855717 chore: switch performance tests to hyperfine (#19919) (Francesco Trotta)
  • 2f73a23 test: switch to flat config mode in ast-utils tests (#19948) (Milos Djermanovic)
  • c565a53 chore: exclude further_reading_links.json from Prettier formatting (#19943) (Milos Djermanovic)

v9.31.0

Features

  • 35cf44c feat: output full actual location in rule tester if different (#19904) (ST-DDT)
  • a6a6325 feat: support explicit resource management in no-loop-func (#19895) (Milos Djermanovic)
  • 4682cdc feat: support explicit resource management in no-undef-init (#19894) (Milos Djermanovic)
  • 5848216 feat: support explicit resource management in init-declarations (#19893) (Milos Djermanovic)
  • bb370b8 feat: support explicit resource management in no-const-assign (#19892) (Milos Djermanovic)

Bug Fixes

  • 07fac6c fix: retry on EMFILE when writing autofix results (#19926) (TKDev7)
  • 28cc7ab fix: Remove incorrect RuleContext types (#19910) (Nicholas C. Zakas)

Documentation

  • 664cb44 docs: Update README (GitHub Actions Bot)
  • 40dbe2a docs: fix mismatch between globalIgnores() code and text (#19914) (MaoShizhong)
  • 5a0069d docs: Update README (GitHub Actions Bot)
  • fef04b5 docs: Update working on issues info (#19902) (Nicholas C. Zakas)

Chores

... (truncated)

Changelog

Sourced from eslint's changelog.

v9.32.0 - July 25, 2025

  • 960fd40 fix: Upgrade @​eslint/js (#19971) (Nicholas C. Zakas)
  • 50de1ce chore: package.json update for @​eslint/js release (Jenkins)
  • bbf23fa fix: Refactor reporting into FileReport (#19877) (Nicholas C. Zakas)
  • 74f01a3 ci: unpin jiti to version ^2.5.1 (#19970) (루밀LuMir)
  • d498887 fix: bump @​eslint/plugin-kit to 0.3.4 to resolve vulnerability (#19965) (Milos Djermanovic)
  • 2ab1381 ci: pin jiti to version 2.4.2 (#19964) (Francesco Trotta)
  • b7f7545 test: switch to flat config mode in SourceCode tests (#19953) (Milos Djermanovic)
  • f5a35e3 test: switch to flat config mode in eslint-fuzzer (#19960) (Milos Djermanovic)
  • f46fc6c fix: report only global references in no-implied-eval (#19932) (Nitin Kumar)
  • 86e7426 docs: Update README (GitHub Actions Bot)
  • e22af8c refactor: use CustomRuleDefinitionType in JSRuleDefinition (#19949) (Francesco Trotta)
  • 1245000 feat: support explicit resource management in core rules (#19828) (fnx)
  • e855717 chore: switch performance tests to hyperfine (#19919) (Francesco Trotta)
  • 0e957a7 feat: support typescript types in accessor rules (#19882) (fnx)
  • 2f73a23 test: switch to flat config mode in ast-utils tests (#19948) (Milos Djermanovic)
  • 7863d26 fix: remove outdated types in ParserOptions.ecmaFeatures (#19944) (ntnyq)
  • c565a53 chore: exclude further_reading_links.json from Prettier formatting (#19943) (Milos Djermanovic)
  • 3173305 fix: update execScript message in no-implied-eval rule (#19937) (TKDev7)

v9.31.0 - July 11, 2025

  • 3ddd454 chore: upgrade to @eslint/[email protected] (#19935) (Francesco Trotta)
  • d5054e5 chore: package.json update for @​eslint/js release (Jenkins)
  • 0f4a378 chore: update eslint (#19933) (renovate[bot])
  • 664cb44 docs: Update README (GitHub Actions Bot)
  • 07fac6c fix: retry on EMFILE when writing autofix results (#19926) (TKDev7)
  • 35cf44c feat: output full actual location in rule tester if different (#19904) (ST-DDT)
  • 40dbe2a docs: fix mismatch between globalIgnores() code and text (#19914) (MaoShizhong)
  • 76c2340 chore: bump mocha to v11 (#19917) (루밀LuMir)
  • 28cc7ab fix: Remove incorrect RuleContext types (#19910) (Nicholas C. Zakas)
  • a6a6325 feat: support explicit resource management in no-loop-func (#19895) (Milos Djermanovic)
  • 4682cdc feat: support explicit resource management in no-undef-init (#19894) (Milos Djermanovic)
  • 5848216 feat: support explicit resource management in init-declarations (#19893) (Milos Djermanovic)
  • bb370b8 feat: support explicit resource management in no-const-assign (#19892) (Milos Djermanovic)
  • 5a0069d docs: Update README (GitHub Actions Bot)
  • fef04b5 docs: Update working on issues info (#19902) (Nicholas C. Zakas)

v9.30.1 - July 1, 2025

v9.30.0 - June 27, 2025

... (truncated)

Commits

Updates eslint-config-prettier from 10.1.5 to 10.1.8

Release notes

Sourced from eslint-config-prettier's releases.

v10.1.8

republish latest version

Full Changelog: prettier/eslint-config-prettier@v10.1.5...v10.1.8

Changelog

Sourced from eslint-config-prettier's changelog.

eslint-config-prettier

Commits

Updates eslint-plugin-svelte from 3.9.0 to 3.11.0

Release notes

Sourced from eslint-plugin-svelte's releases.

[email protected]

Minor Changes

Patch Changes

  • #1268 4e33ba4 Thanks @​GauBen! - feat(valid-prop-names-in-kit-pages): add support for the new params page prop

[email protected]

Patch Changes

[email protected]

Minor Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

  • #1243 5df1121 Thanks @​zachstence! - fix false positives for regular components in valid-compile/custom_element_props_identifier

[email protected]

Patch Changes

  • #1239 a3d4224 Thanks @​baseballyama! - fix(prefer-const): Use additionalProperties instead of ignoreReadonly to match the ESLint core rule option name.
Commits
  • 3021f66 chore: release eslint-plugin-svelte (#1270)
  • a444476 feat: support asynchronous svelte (#1269)
  • 843730d feat: added the prefer-svelte-reactivity rule (#1151)
  • 4e33ba4 feat(valid-prop-names-in-kit-pages): support params page prop (#1268)
  • f8c757e chore(deps): update dependency eslint to ~9.31.0 (#1267)
  • c5661b6 chore(deps): update dependency @​sveltejs/vite-plugin-svelte to v6 (#1265)
  • 0c7737e chore(deps): update dependency eslint to ~9.30.0 (#1262)
  • aed0273 chore: release eslint-plugin-svelte (#1261)
  • a51363f fix(no-unused-class-name): detect duplicated class names (#1260)
  • 41e959d chore: release eslint-plugin-svelte (#1258)
  • Additional commits viewable in compare view

Updates globals from 16.2.0 to 16.3.0

Release notes

Sourced from globals's releases.

v16.3.0

  • Update globals (#304) 8c029d9

sindresorhus/globals@v16.2.0...v16.3.0

Commits

Updates prettier from 3.5.3 to 3.6.2

Release notes

Sourced from prettier's releases.

3.6.2

What's Changed

🔗 Changelog

3.6.1

  • Fix "Warning: File descriptor 39 closed but not opened in unmanaged mode" error when running --experimental-cli

🔗 Changelog

3.6.0

diff

🔗 Release note "Prettier 3.6: Experimental fast CLI and new OXC and Hermes plugins!"

Changelog

Sourced from prettier's changelog.

3.6.2

diff

Markdown: Add missing blank line around code block (#17675 by @​fisker)

<!-- Input -->
1. Some text, and code block below, with newline after code block
---
foo: bar


Another
List

<!-- Prettier 3.6.1 -->


Some text, and code block below, with newline after code block
---
foo: bar


Another
List



<!-- Prettier 3.6.2 -->


Some text, and code block below, with newline after code block
---
foo: bar


Another
List

3.6.1

diff

TypeScript: Allow const without initializer (#17650, #17654 by @​fisker)

// Input
</tr></table> 

... (truncated)

Commits
  • 7a8b05f Release 3.6.2
  • 46526b4 Add missing blank line around code block (#17675)
  • a04ec11 chore(deps): update babel to v7.27.7 (#17684)
  • 32be5b6 chore(deps): update dependency flow-parser to v0.274.1 (#17676)
  • b55e777 Update docs about "TypeScript Configuration Files" (#17677)
  • b197c99 chore(deps): update dependency @​vitejs/plugin-react to v4.6.0 (#17674)
  • 1185f83 chore(deps): update dependency @​angular/compiler to v20.0.5 (#17680)
  • aa1316f chore(deps): update dependency browserslist to v4.25.1 (#17671)
  • c468d33 chore(deps): update dependency oxc-parser to v0.75.0 (#17672)
  • 3f46d91 chore(deps): update dependency vite to v7 (#17673)
  • Additional commits viewable in compare view

Updates svelte from 5.33.12 to 5.37.2

Release notes

Sourced from svelte's releases.

[email protected]

Patch Changes

  • fix: double event processing in firefox due to event object being garbage collected (#16527)

  • fix: add bindable dimension attributes types to SVG and MathML elements (#16525)

  • fix: correctly differentiate static fields before emitting duplicate_class_field (#16526)

  • fix: prevent last_propagated_event from being DCE'd (#16538)

[email protected]

Patch Changes

  • chore: remove some todos (#16515)

  • fix: allow await expressions inside {#await ...} argument (#16514)

  • fix: append_styles in an effect to make them available on mount (#16509)

  • chore: remove parser.template_untrimmed (#16511)

  • fix: always inject styles when compiling as a custom element (#16509)

[email protected]

Minor Changes

  • feat: ignore component options in compileModule (#16362)

Patch Changes

  • fix: always mark props as stateful (#16504)

[email protected]

Patch Changes

  • fix: throw on duplicate class field declarations (#16502)

  • fix: add types for part attribute to svg attributes (#16499)

[email protected]

Patch Changes

  • fix: don't update a focused input with values from its own past (#16491)

  • fix: don't destroy effect roots created inside of deriveds (#16492)

[email protected]

Patch Changes

... (truncated)

Changelog

Sourced from svelte's changelog.

5.37.2

Patch Changes

  • fix: double event processing in firefox due to event object being garbage collected (#16527)

  • fix: add bindable dimension attributes types to SVG and MathML elements (#16525)

  • fix: correctly differentiate static fields before emitting duplicate_class_field (#16526)

  • fix: prevent last_propagated_event from being DCE'd (#16538)

5.37.1

Patch Changes

  • chore: remove some todos (#16515)

  • fix: allow await expressions inside {#await ...} argument (#16514)

  • fix: append_styles in an effect to make them available on mount (#16509)

  • chore: remove parser.template_untrimmed (#16511)

  • fix: always inject styles when compiling as a custom element (#16509)

5.37.0

Minor Changes

  • feat: ignore component options in compileModule (#16362)

Patch Changes

  • fix: always mark props as stateful (#16504)

5.36.17

Patch Changes

  • fix: throw on duplicate class field declarations (#16502)

  • fix: add types for part attribute to svg attributes (#16499)

5.36.16

Patch Changes

  • fix: don't update a focused input with values from its own past (#16491)

... (truncated)

Commits

Bumps the site group with 12 updates in the /docs/vercel directory:

| Package | From | To |
| --- | --- | --- |
| [@sveltejs/kit](https://github.com/sveltejs/kit/tree/HEAD/packages/kit) | `2.21.1` | `2.27.0` |
| [@sveltejs/vite-plugin-svelte](https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte) | `5.0.3` | `6.1.0` |
| [eslint](https://github.com/eslint/eslint) | `9.28.0` | `9.32.0` |
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `10.1.5` | `10.1.8` |
| [eslint-plugin-svelte](https://github.com/sveltejs/eslint-plugin-svelte) | `3.9.0` | `3.11.0` |
| [globals](https://github.com/sindresorhus/globals) | `16.2.0` | `16.3.0` |
| [prettier](https://github.com/prettier/prettier) | `3.5.3` | `3.6.2` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) | `5.33.12` | `5.37.2` |
| [svelte-check](https://github.com/sveltejs/language-tools) | `4.2.1` | `4.3.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.8.3` | `5.9.2` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.33.0` | `8.38.0` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `6.3.5` | `7.0.6` |



Updates `@sveltejs/kit` from 2.21.1 to 2.27.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/[email protected]/packages/kit)

Updates `@sveltejs/vite-plugin-svelte` from 5.0.3 to 6.1.0
- [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/[email protected]/packages/vite-plugin-svelte)

Updates `eslint` from 9.28.0 to 9.32.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v9.28.0...v9.32.0)

Updates `eslint-config-prettier` from 10.1.5 to 10.1.8
- [Release notes](https://github.com/prettier/eslint-config-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-config-prettier@v10.1.5...v10.1.8)

Updates `eslint-plugin-svelte` from 3.9.0 to 3.11.0
- [Release notes](https://github.com/sveltejs/eslint-plugin-svelte/releases)
- [Commits](https://github.com/sveltejs/eslint-plugin-svelte/compare/[email protected]@3.11.0)

Updates `globals` from 16.2.0 to 16.3.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v16.2.0...v16.3.0)

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

Updates `svelte` from 5.33.12 to 5.37.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/[email protected]/packages/svelte)

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

Updates `typescript` from 5.8.3 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.8.3...v5.9.2)

Updates `typescript-eslint` from 8.33.0 to 8.38.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.38.0/packages/typescript-eslint)

Updates `vite` from 6.3.5 to 7.0.6
- [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.0.6/packages/vite)

---
updated-dependencies:
- dependency-name: "@sveltejs/kit"
  dependency-version: 2.27.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: site
- dependency-name: "@sveltejs/vite-plugin-svelte"
  dependency-version: 6.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: site
- dependency-name: eslint
  dependency-version: 9.32.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: site
- dependency-name: eslint-config-prettier
  dependency-version: 10.1.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: site
- dependency-name: eslint-plugin-svelte
  dependency-version: 3.11.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: site
- dependency-name: globals
  dependency-version: 16.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: site
- dependency-name: prettier
  dependency-version: 3.6.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: site
- dependency-name: svelte
  dependency-version: 5.37.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: site
- dependency-name: svelte-check
  dependency-version: 4.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: site
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: site
- dependency-name: typescript-eslint
  dependency-version: 8.38.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: site
- dependency-name: vite
  dependency-version: 7.0.6
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: site
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants