Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Sep 2, 2024

This PR contains the following updates:

Package Change Age Confidence
svelte-check ^3.6.2 -> ^4.0.0 age confidence

Release Notes

sveltejs/language-tools (svelte-check)

v4.3.3

Compare Source

Patch Changes
  • fix: prevent file watcher issue (#​2859)

  • fix: allow undefined and null values for #each in Svelte 5 (#​2863)

  • perf: check if file content changed in tsconfig file watch (#​2859)

v4.3.2

Compare Source

Patch Changes
  • perf: tweak some snapshot hot paths (#​2852)

  • perf: more precise module cache invalidation (#​2853)

  • fix: properly handle runes={false} in <svelte:options> (#​2847)

See https://github.com/sveltejs/language-tools/releases

v4.3.1

Compare Source

fix: handle object literal in MustacheTag (#​2805)

v4.3.0

Compare Source

  • feat: zero types for params (#​2795)
  • feat: add await support (#​2799)
  • fix: strip doctype using AST instead of regex (#​2798)
  • chore: make human output more concise and readable (#​2748)

v4.2.2

Compare Source

  • fix: invalidate project file cache and handle watcher race condition (#​2779)
  • fix: prevent error with bind:this={get, set} (#​2781)
  • fix: don't treat derived imported from svelte/store as a potential store (#​2780)
  • fix: key block can have its own block scope (#​2768)

v4.2.1

Compare Source

  • feat: support generics on snippets (#​2761)

v4.2.0

Compare Source

  • feat: support attachments (#​2760)
  • fix: deduplicate definition for rune-mode components (#​2759)

v4.1.7

Compare Source

  • fix: robustify hoisting logic around prop types (#​2740)
  • fix: ensure typed exports are marked as used (#​2746)
  • chore: bump vscode-html/css-language-service (#​2752)
  • fix: ensure eligible snippets can be referenced in module script (#​2753)
  • fix: prevent error with unclosed tag followed by LF or end of file (#​2750)

v4.1.6

Compare Source

  • fix: prevent unused variable error for bindable
  • fix: ensure exports in runes mode are marked as used
  • fix: add color CLI options

v4.1.5

Compare Source

  • fix: take other snippets into account when checking for hoistability (#​2668)
  • fix: disambiguate render in module script (#​2667)
  • fix: properly transform $props.id when $props is assigned to props (#​2694)
  • fix: handle booleanish popover (#​2702)
  • chore: bump vscode-html/css-language-service (#​2677)
  • fix: use referenced project's compiler option to get resolution mode (#​2676)

v4.1.4

Compare Source

  • fix: don't hoist types/snippets referencing stores or destructured variables (#​2661)

v4.1.3

Compare Source

  • fix: move snippets to correct place when only module script present

v4.1.2

Compare Source

  • feat: support generics attribute for JSDoc (#​2624)
  • fix: better snippet/interface hoistability analysis (#​2655)
  • chore: TypeScript 5.7 support (#​2585)

v4.1.1

Compare Source

  • fix: support each without as (#​2615)

v4.1.0

Compare Source

  • fix: don't move appended content from previous node while hoisting interface (#​2596)
  • fix: ensure hoisted interfaces are moved after hoisted imports (#​2597)
  • fix: preserve bind:... mapping on elements for better source maps
  • feat: prepare for some upcoming features of Svelte 5

v4.0.9

Compare Source

  • fix: detect shadowed variables/types during type hoisting (#​2590)

v4.0.8

Compare Source

  • fix: fall back to any instead of unknown for untyped $props (#​2582)
  • fix: robustify and fix file writing (#​2584)
  • fix: hoist types related to $props rune if possible (#​2571)

v4.0.7

Compare Source

  • fix: $props: infer types for $bindable, infer function type from arrow function

v4.0.6

Compare Source

  • chore: autotype const load = ... declarations (#​2540)
  • chore: provide component instance type in Svelte 5 (#​2553)
  • chore: support typescript 5.6 (#​2545)
  • fix: infer object and array shapes from fallback types (#​2562)

v4.0.5

Compare Source

  • fix: include named exports in svelte 5 type (#​2528)

v4.0.4

Compare Source

  • fix: relax component constructor type (#​2524)

v4.0.3

Compare Source

  • breaking(svelte5): only generate function component shape in runes mode (#​2517). This means you can no longer just do Component in type positions. Instead you need to prepend it with typeof. Here's how you do it:
    • ...when typing a component instance: Before: let x: Component. After: let x: ReturnType<typeof Component>
    • ...when typing a component constructor/function: Before let x: typeof Component. After let x: typeof Component (no change)
  • fix: revert additional two-way-binding checks as they were causing bugs (#​2508)
  • fix: include files indirectly belonging to a project into correct project (#​2488)
  • fix: check project files update more aggressively before assigning service (#​2518)
  • chore: upgrade to chokidar 4 (#​2502)

v4.0.2

Compare Source

  • fix: ensure components typed through Svelte 5's Component interface get proper intellisense

v4.0.1

Compare Source

  • fix: remove ancient process augmentation from internal d.ts file

v4.0.0

Compare Source

  • chore: bump magic-string (#​2476)
  • chore: switch from fast-glob to fdir (#​2433)
  • fix: detect <script module> tag (#​2482)
  • feat: better type checking for bindings in Svelte 5 (#​2477)
  • feat: replace svelte-preprocess with barebones TS preprocessor (#​2452)
  • feat: project reference support (#​2463)
Breaking changes
  • require Svelte 4 or later (#​2453)
  • make TypeScript a peer dependency, require TS 5 or later (#​2453)
  • require node 18 or later (#​2453)
  • process augmentation (declaring a process.browser field) was removed
  • slight changes to how files are assigned to which tsconfig.json (#​1234, #​2463)
  • slight changes to how Svelte module resolution works; .svelte files now take precedence over .svelte.js/ts files (if both exist) (#​2481)
  • language-server now forces fewer TypeScript options. Most notably skipLibCheck is no longer forced to true, which may result in d.ts files now being checked in your project, which they were not before, revealing type errors. Either fix those or add "skipLibCheck": true to your tsconfig.json (#​1976, #​2463)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies label Sep 2, 2024
@vercel
Copy link

vercel bot commented Sep 2, 2024

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
sample-chatgpt Error Error Comment Aug 31, 2025 11:36am
sample-nextjs-basic-auth Ready Ready Preview Comment Aug 31, 2025 11:36am

@renovate renovate bot force-pushed the renovate/svelte-check-4.x branch from ac502d1 to 86f8920 Compare September 3, 2024 16:24
@renovate renovate bot force-pushed the renovate/svelte-check-4.x branch from 86f8920 to e9c9168 Compare September 4, 2024 10:22
@renovate renovate bot force-pushed the renovate/svelte-check-4.x branch from e9c9168 to 9af6cbc Compare September 4, 2024 14:07
@renovate renovate bot force-pushed the renovate/svelte-check-4.x branch from 9af6cbc to 79f41b5 Compare September 9, 2024 16:58
@renovate renovate bot force-pushed the renovate/svelte-check-4.x branch from 79f41b5 to 5e293e3 Compare September 9, 2024 17:01
@renovate renovate bot force-pushed the renovate/svelte-check-4.x branch from 5e293e3 to 4ad4004 Compare September 10, 2024 18:44
@renovate renovate bot force-pushed the renovate/svelte-check-4.x branch from 4ad4004 to 22ca1fb Compare September 12, 2024 21:25
@renovate renovate bot force-pushed the renovate/svelte-check-4.x branch from 22ca1fb to 2a12057 Compare September 13, 2024 21:32
@renovate renovate bot force-pushed the renovate/svelte-check-4.x branch from 2a12057 to abc9595 Compare September 14, 2024 15:53
@renovate renovate bot force-pushed the renovate/svelte-check-4.x branch from c6d9786 to d97ed61 Compare August 20, 2025 12:43
@renovate renovate bot force-pushed the renovate/svelte-check-4.x branch from d97ed61 to 5af9813 Compare August 20, 2025 22:14
@renovate renovate bot force-pushed the renovate/svelte-check-4.x branch from 5af9813 to d5f02b2 Compare August 21, 2025 01:32
@renovate renovate bot force-pushed the renovate/svelte-check-4.x branch from d5f02b2 to 898f455 Compare August 21, 2025 12:48
@renovate renovate bot force-pushed the renovate/svelte-check-4.x branch from 898f455 to 478094e Compare August 21, 2025 21:42
@renovate renovate bot force-pushed the renovate/svelte-check-4.x branch from 478094e to cc26a92 Compare August 21, 2025 21:46
@renovate renovate bot force-pushed the renovate/svelte-check-4.x branch from cc26a92 to 92e0573 Compare August 31, 2025 11:35
@renovate renovate bot force-pushed the renovate/svelte-check-4.x branch 2 times, most recently from 1c94273 to d824229 Compare September 22, 2025 14:56
@renovate renovate bot force-pushed the renovate/svelte-check-4.x branch from d824229 to 0470655 Compare September 25, 2025 16:57
@renovate renovate bot force-pushed the renovate/svelte-check-4.x branch from 0470655 to 3b862f6 Compare October 8, 2025 14:51
@renovate renovate bot force-pushed the renovate/svelte-check-4.x branch from 3b862f6 to 1a86b29 Compare October 21, 2025 15:49
@renovate renovate bot force-pushed the renovate/svelte-check-4.x branch from 1a86b29 to c7ec114 Compare October 29, 2025 12:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant