chore(deps): update dependency @sveltejs/vite-plugin-svelte to v4 #201

Open
renovate-bot wants to merge 1 commits from renovate/sveltejs-vite-plugin-svelte-4.x into master
Collaborator

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@sveltejs/vite-plugin-svelte (source) ^3.0.0 -> ^4.0.0 age adoption passing confidence

Release Notes

sveltejs/vite-plugin-svelte (@​sveltejs/vite-plugin-svelte)

v4.0.0

Compare Source

Major Changes
  • only prebundle files with default filenames (.svelte for components, .svelte.(js|ts) for modules) (#​901)

  • remove support for Svelte 4 (#​892)

  • breaking(types): some types that have been unintentionally public are now private (#​934)

  • disable script preprocessing in vitePreprocess() by default because Svelte 5 supports lang=ts out of the box (#​892)

  • replaced svelte-hmr with Svelte 5 compiler hmr integration (#​892)

Minor Changes
  • allow infix notation for svelte modules (#​901)

    Previously, only suffix notation .svelte.js was allowed, now you can also use .svelte.test.js or .svelte.stories.js.
    This helps when writing testcases or other auxillary code where you may want to use runes too.

  • feat(config): dynamically extract list of svelte exports from peer dependency so that new exports work automatically" (#​941)

  • feat(warnings): change default loglevel of warnings originating from files in node_modules to debug. To see them call DEBUG:vite-plugin-svelte:node-modules-onwarn pnpm build. (#​989)

Patch Changes
  • fix: make defaultHandler a required argument for onwarn in plugin options (#​895)

  • prebundle with dev: true by default (#​901)

  • fix(dev): compile with hmr: false for prebundled deps as hmr does not work with that (#​950)

  • fix: ensure svelte modules correctly run in DEV mode (#​906)

  • ensure consistent use of compileOptions.hmr also for prebundling (#​956)

  • fix(optimizeDeps): avoid to optimise server only entrypoints of svelte that are never used on the client (#​941)

  • update peer on workspace packages to avoid packages bumping each other (#​916)

  • export PluginOptions interface (#​976)

  • Remove log about experimental status of Svelte 5. Note that breaking changes can still occur while vite-plugin-svelte 4 is in prerelease mode (#​894)

  • fix: ensure vite config is only resolved once during lazy init of vitePreprocess (#​912)

  • fix(vitePreprocess): default to build config so that svelte-check does not trigger dev-only plugins (#​931)

  • fix: only apply infix filter to basename (#​920)

  • fix: disable hmr when vite config server.hmr is false (#​913)

  • fix(dev): make sure custom cssHash is applied consistently even for prebundled components to avoid hash mismatches during hydration (#​950)

  • Updated dependencies [22baa25, 49324db, e9f048c, 213fedd]:


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 has been generated by Renovate Bot.

This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@sveltejs/vite-plugin-svelte](https://github.com/sveltejs/vite-plugin-svelte) ([source](https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte)) | [`^3.0.0` -> `^4.0.0`](https://renovatebot.com/diffs/npm/@sveltejs%2fvite-plugin-svelte/3.1.2/4.0.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@sveltejs%2fvite-plugin-svelte/4.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@sveltejs%2fvite-plugin-svelte/4.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@sveltejs%2fvite-plugin-svelte/3.1.2/4.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@sveltejs%2fvite-plugin-svelte/3.1.2/4.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>sveltejs/vite-plugin-svelte (@&#8203;sveltejs/vite-plugin-svelte)</summary> ### [`v4.0.0`](https://github.com/sveltejs/vite-plugin-svelte/blob/HEAD/packages/vite-plugin-svelte/CHANGELOG.md#400) [Compare Source](https://github.com/sveltejs/vite-plugin-svelte/compare/@sveltejs/vite-plugin-svelte@3.1.2...@sveltejs/vite-plugin-svelte@4.0.0) ##### Major Changes - only prebundle files with default filenames (.svelte for components, .svelte.(js|ts) for modules) ([#&#8203;901](https://github.com/sveltejs/vite-plugin-svelte/pull/901)) - remove support for Svelte 4 ([#&#8203;892](https://github.com/sveltejs/vite-plugin-svelte/pull/892)) - breaking(types): some types that have been unintentionally public are now private ([#&#8203;934](https://github.com/sveltejs/vite-plugin-svelte/pull/934)) - disable script preprocessing in vitePreprocess() by default because Svelte 5 supports lang=ts out of the box ([#&#8203;892](https://github.com/sveltejs/vite-plugin-svelte/pull/892)) - replaced svelte-hmr with Svelte 5 compiler hmr integration ([#&#8203;892](https://github.com/sveltejs/vite-plugin-svelte/pull/892)) ##### Minor Changes - allow infix notation for svelte modules ([#&#8203;901](https://github.com/sveltejs/vite-plugin-svelte/pull/901)) Previously, only suffix notation `.svelte.js` was allowed, now you can also use `.svelte.test.js` or `.svelte.stories.js`. This helps when writing testcases or other auxillary code where you may want to use runes too. - feat(config): dynamically extract list of svelte exports from peer dependency so that new exports work automatically" ([#&#8203;941](https://github.com/sveltejs/vite-plugin-svelte/pull/941)) - feat(warnings): change default loglevel of warnings originating from files in node_modules to debug. To see them call `DEBUG:vite-plugin-svelte:node-modules-onwarn pnpm build`. ([#&#8203;989](https://github.com/sveltejs/vite-plugin-svelte/pull/989)) ##### Patch Changes - fix: make defaultHandler a required argument for onwarn in plugin options ([#&#8203;895](https://github.com/sveltejs/vite-plugin-svelte/pull/895)) - prebundle with dev: true by default ([#&#8203;901](https://github.com/sveltejs/vite-plugin-svelte/pull/901)) - fix(dev): compile with hmr: false for prebundled deps as hmr does not work with that ([#&#8203;950](https://github.com/sveltejs/vite-plugin-svelte/pull/950)) - fix: ensure svelte modules correctly run in DEV mode ([#&#8203;906](https://github.com/sveltejs/vite-plugin-svelte/pull/906)) - ensure consistent use of compileOptions.hmr also for prebundling ([#&#8203;956](https://github.com/sveltejs/vite-plugin-svelte/pull/956)) - fix(optimizeDeps): avoid to optimise server only entrypoints of svelte that are never used on the client ([#&#8203;941](https://github.com/sveltejs/vite-plugin-svelte/pull/941)) - update peer on workspace packages to avoid packages bumping each other ([#&#8203;916](https://github.com/sveltejs/vite-plugin-svelte/pull/916)) - export PluginOptions interface ([#&#8203;976](https://github.com/sveltejs/vite-plugin-svelte/pull/976)) - Remove log about experimental status of Svelte 5. Note that breaking changes can still occur while vite-plugin-svelte 4 is in prerelease mode ([#&#8203;894](https://github.com/sveltejs/vite-plugin-svelte/pull/894)) - fix: ensure vite config is only resolved once during lazy init of vitePreprocess ([#&#8203;912](https://github.com/sveltejs/vite-plugin-svelte/pull/912)) - fix(vitePreprocess): default to build config so that svelte-check does not trigger dev-only plugins ([#&#8203;931](https://github.com/sveltejs/vite-plugin-svelte/pull/931)) - fix: only apply infix filter to basename ([#&#8203;920](https://github.com/sveltejs/vite-plugin-svelte/pull/920)) - fix: disable hmr when vite config server.hmr is false ([#&#8203;913](https://github.com/sveltejs/vite-plugin-svelte/pull/913)) - fix(dev): make sure custom cssHash is applied consistently even for prebundled components to avoid hash mismatches during hydration ([#&#8203;950](https://github.com/sveltejs/vite-plugin-svelte/pull/950)) - Updated dependencies \[[`22baa25`](https://github.com/sveltejs/vite-plugin-svelte/commit/22baa25b5e98ddc92715bfc430dc9d0cfad99bb0), [`49324db`](https://github.com/sveltejs/vite-plugin-svelte/commit/49324dbf747a46ae75b405a29fc7feac2db966dd), [`e9f048c`](https://github.com/sveltejs/vite-plugin-svelte/commit/e9f048c362a0769b3d5afa87da6f8398f46fe1a9), [`213fedd`](https://github.com/sveltejs/vite-plugin-svelte/commit/213fedd68ec2c5fcb41752e05dcded4abfa8d0c0)]: - [@&#8203;sveltejs/vite-plugin-svelte-inspector](https://github.com/sveltejs/vite-plugin-svelte-inspector)[@&#8203;3](https://github.com/3).0.0 </details> --- ### 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMjAuMSIsInVwZGF0ZWRJblZlciI6IjM4LjEyMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->
renovate-bot added 1 commit 2024-10-19 19:51:09 +00:00
chore(deps): update dependency @sveltejs/vite-plugin-svelte to v4
Some checks failed
renovate/artifacts Artifact file update failure
continuous-integration/drone/push Build is failing
27cadc92d1
Author
Collaborator

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: ui/package-lock.json
npm error code ERESOLVE
npm error ERESOLVE unable to resolve dependency tree
npm error
npm error While resolving: reveil@0.0.1
npm error Found: svelte@4.2.19
npm error node_modules/svelte
npm error   dev svelte@"^4.0.0" from the root project
npm error
npm error Could not resolve dependency:
npm error peer svelte@"^5.0.0-next.96 || ^5.0.0" from @sveltejs/vite-plugin-svelte@4.0.0
npm error node_modules/@sveltejs/vite-plugin-svelte
npm error   dev @sveltejs/vite-plugin-svelte@"^4.0.0" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /var/lib/renovatebot/cache/others/npm/_logs/2024-10-19T19_50_56_562Z-eresolve-report.txt
npm error A complete log of this run can be found in: /var/lib/renovatebot/cache/others/npm/_logs/2024-10-19T19_50_56_562Z-debug-0.log

### ⚠️ Artifact update problem Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you click the rebase/retry checkbox if found above, or - you rename this PR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: ui/package-lock.json ``` npm error code ERESOLVE npm error ERESOLVE unable to resolve dependency tree npm error npm error While resolving: reveil@0.0.1 npm error Found: svelte@4.2.19 npm error node_modules/svelte npm error dev svelte@"^4.0.0" from the root project npm error npm error Could not resolve dependency: npm error peer svelte@"^5.0.0-next.96 || ^5.0.0" from @sveltejs/vite-plugin-svelte@4.0.0 npm error node_modules/@sveltejs/vite-plugin-svelte npm error dev @sveltejs/vite-plugin-svelte@"^4.0.0" from the root project npm error npm error Fix the upstream dependency conflict, or retry npm error this command with --force or --legacy-peer-deps npm error to accept an incorrect (and potentially broken) dependency resolution. npm error npm error npm error For a full report see: npm error /var/lib/renovatebot/cache/others/npm/_logs/2024-10-19T19_50_56_562Z-eresolve-report.txt npm error A complete log of this run can be found in: /var/lib/renovatebot/cache/others/npm/_logs/2024-10-19T19_50_56_562Z-debug-0.log ```
Some checks failed
renovate/artifacts Artifact file update failure
continuous-integration/drone/push Build is failing
This pull request can be merged automatically.
This branch is out-of-date with the base branch
You are not authorized to merge this pull request.

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/sveltejs-vite-plugin-svelte-4.x:renovate/sveltejs-vite-plugin-svelte-4.x
git checkout renovate/sveltejs-vite-plugin-svelte-4.x
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: nemunaire/reveil#201
No description provided.