[PR #12870] [CLOSED] build(deps): bump the npm_and_yarn group across 1 directory with 5 updates #23040

Closed
opened 2026-04-20 04:35:30 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/12870
Author: @dependabot[bot]
Created: 4/15/2025
Status: Closed

Base: mainHead: dependabot/npm_and_yarn/npm_and_yarn-06a2c619a6


📝 Commits (1)

  • 56d9ee4 build(deps): bump the npm_and_yarn group across 1 directory with 5 updates

📊 Changes

2 files changed (+474 additions, -962 deletions)

View changed files

📝 package-lock.json (+470 -958)
📝 package.json (+4 -4)

📄 Description

Bumps the npm_and_yarn group with 5 updates in the / directory:

Package From To
@sveltejs/kit 2.20.2 2.20.6
vite 5.4.15 5.4.18
esbuild 0.21.5 0.25.1
@sveltejs/vite-plugin-svelte 3.1.1 5.0.3
vite 5.4.18 6.2.6
vitest 1.6.1 3.1.1

Updates @sveltejs/kit from 2.20.2 to 2.20.6

Release notes

Sourced from @​sveltejs/kit's releases.

@​sveltejs/kit@​2.20.6

Patch Changes

@​sveltejs/kit@​2.20.5

Patch Changes

  • allow HandleServerError hook to access getRequestEvent (#13666)

  • fix: prevent Rollup warnings for undefined hooks (#13687)

@​sveltejs/kit@​2.20.4

Patch Changes

  • chore: remove internal class-replacement hack that isn't needed anymore (#13664)

@​sveltejs/kit@​2.20.3

Patch Changes

  • fix: only call afterNavigate once on app start when SSR is disabled (#13593)
Changelog

Sourced from @​sveltejs/kit's changelog.

2.20.6

Patch Changes

2.20.5

Patch Changes

  • allow HandleServerError hook to access getRequestEvent (#13666)

  • fix: prevent Rollup warnings for undefined hooks (#13687)

2.20.4

Patch Changes

  • chore: remove internal class-replacement hack that isn't needed anymore (#13664)

2.20.3

Patch Changes

  • fix: only call afterNavigate once on app start when SSR is disabled (#13593)
Commits

Updates vite from 5.4.15 to 5.4.18

Release notes

Sourced from vite's releases.

v5.4.18

Please refer to CHANGELOG.md for details.

v5.4.17

Please refer to CHANGELOG.md for details.

v5.4.16

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

5.4.18 (2025-04-10)

5.4.17 (2025-04-03)

5.4.16 (2025-03-31)

Commits

Updates esbuild from 0.21.5 to 0.25.1

Release notes

Sourced from esbuild's releases.

v0.25.1

  • Fix incorrect paths in inline source maps (#4070, #4075, #4105)

    This fixes a regression from version 0.25.0 where esbuild didn't correctly resolve relative paths contained within source maps in inline sourceMappingURL data URLs. The paths were incorrectly being passed through as-is instead of being resolved relative to the source file containing the sourceMappingURL comment, which was due to the data URL not being a file URL. This regression has been fixed, and this case now has test coverage.

  • Fix invalid generated source maps (#4080, #4082, #4104, #4107)

    This release fixes a regression from version 0.24.1 that could cause esbuild to generate invalid source maps. Specifically under certain conditions, esbuild could generate a mapping with an out-of-bounds source index. It was introduced by code that attempted to improve esbuild's handling of "null" entries in source maps (i.e. mappings with a generated position but no original position). This regression has been fixed.

    This fix was contributed by @​jridgewell.

  • Fix a regression with non-file source map paths (#4078)

    The format of paths in source maps that aren't in the file namespace was unintentionally changed in version 0.25.0. Path namespaces is an esbuild-specific concept that is optionally available for plugins to use to distinguish paths from file paths and from paths meant for other plugins. Previously the namespace was prepended to the path joined with a : character, but version 0.25.0 unintentionally failed to prepend the namespace. The previous behavior has been restored.

  • Fix a crash with switch optimization (#4088)

    The new code in the previous release to optimize dead code in switch statements accidentally introduced a crash in the edge case where one or more switch case values include a function expression. This is because esbuild now visits the case values first to determine whether any cases are dead code, and then visits the case bodies once the dead code status is known. That triggered some internal asserts that guard against traversing the AST in an unexpected order. This crash has been fixed by changing esbuild to expect the new traversal ordering. Here's an example of affected code:

    switch (x) {
      case '':
        return y.map(z => z.value)
      case y.map(z => z.key).join(','):
        return []
    }
    
  • Update Go from 1.23.5 to 1.23.7 (#4076, #4077)

    This should have no effect on existing code as this version change does not change Go's operating system support. It may remove certain reports from vulnerability scanners that detect which version of the Go compiler esbuild uses.

    This PR was contributed by @​MikeWillCook.

v0.25.0

This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.24.0 or ~0.24.0. See npm's documentation about semver for more information.

  • Restrict access to esbuild's development server (GHSA-67mh-4wv8-2f99)

    This change addresses esbuild's first security vulnerability report. Previously esbuild set the Access-Control-Allow-Origin header to * to allow esbuild's development server to be flexible in how it's used for development. However, this allows the websites you visit to make HTTP requests to esbuild's local development server, which gives read-only access to your source code if the website were to fetch your source code's specific URL. You can read more information in the report.

    Starting with this release, CORS will now be disabled, and requests will now be denied if the host does not match the one provided to --serve=. The default host is 0.0.0.0, which refers to all of the IP addresses that represent the local machine (e.g. both 127.0.0.1 and 192.168.0.1). If you want to customize anything about esbuild's development server, you can put a proxy in front of esbuild and modify the incoming and/or outgoing requests.

    In addition, the serve() API call has been changed to return an array of hosts instead of a single host string. This makes it possible to determine all of the hosts that esbuild's development server will accept.

    Thanks to @​sapphi-red for reporting this issue.

  • Delete output files when a build fails in watch mode (#3643)

    It has been requested for esbuild to delete files when a build fails in watch mode. Previously esbuild left the old files in place, which could cause people to not immediately realize that the most recent build failed. With this release, esbuild will now delete all output files if a rebuild fails. Fixing the build error and triggering another rebuild will restore all output files again.

... (truncated)

Changelog

Sourced from esbuild's changelog.

Changelog: 2024

This changelog documents all esbuild versions published in the year 2024 (versions 0.19.12 through 0.24.2).

0.24.2

  • Fix regression with --define and import.meta (#4010, #4012, #4013)

    The previous change in version 0.24.1 to use a more expression-like parser for define values to allow quoted property names introduced a regression that removed the ability to use --define:import.meta=.... Even though import is normally a keyword that can't be used as an identifier, ES modules special-case the import.meta expression to behave like an identifier anyway. This change fixes the regression.

    This fix was contributed by @​sapphi-red.

0.24.1

  • Allow es2024 as a target in tsconfig.json (#4004)

    TypeScript recently added es2024 as a compilation target, so esbuild now supports this in the target field of tsconfig.json files, such as in the following configuration file:

    {
      "compilerOptions": {
        "target": "ES2024"
      }
    }
    

    As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in the documentation.

    This fix was contributed by @​billyjanitsch.

  • Allow automatic semicolon insertion after get/set

    This change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error:

    class Foo {
      get
      *x() {}
      set
      *y() {}
    }
    

    The above code will be considered valid starting with this release. This change to esbuild follows a similar change to TypeScript which will allow this syntax starting with TypeScript 5.7.

  • Allow quoted property names in --define and --pure (#4008)

    The define and pure API options now accept identifier expressions containing quoted property names. Previously all identifiers in the identifier expression had to be bare identifiers. This change now makes --define and --pure consistent with --global-name, which already supported quoted property names. For example, the following is now possible:

... (truncated)

Commits

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

Release notes

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

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

Patch Changes

  • fix errorhandling to work with errors that don't have a code property (#1054)

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

Patch Changes

  • adapt internal handling of warning and error code property to changes in svelte5 (#1044)

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

Patch Changes

  • Fix peer dependencies warning (#1038)

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

Major Changes

  • Handle Vite 6 breaking change and remove Vite 5 handling (#1020)

  • Support Vite 6 (#1026)

Minor Changes

  • Add esm-env to ssr.noExternal by default to resolve its conditions with Vite (#1020)

  • Support ?inline query on Svelte style virtual modules (#1024)

Patch Changes

  • remove vite6 beta from peer range (#1035)

  • Allow script tags to span multiple lines (0db95a9)

  • Updated dependencies [4fefbc2, e262266]:

    • @​sveltejs/vite-plugin-svelte-inspector@​4.0.0

@​sveltejs/vite-plugin-svelte@​5.0.0-next.0

Major Changes

  • Handle Vite 6 breaking change and remove Vite 5 handling (#1020)

  • Support Vite 6 (#1026)

Minor Changes

... (truncated)

Changelog

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

5.0.3

Patch Changes

  • fix errorhandling to work with errors that don't have a code property (#1054)

5.0.2

Patch Changes

  • adapt internal handling of warning and error code property to changes in svelte5 (#1044)

5.0.1

Patch Changes

  • Fix peer dependencies warning (#1038)

5.0.0

Major Changes

  • Handle Vite 6 breaking change and remove Vite 5 handling (#1020)

  • Support Vite 6 (#1026)

Minor Changes

  • Add esm-env to ssr.noExternal by default to resolve its conditions with Vite (#1020)

  • Support ?inline query on Svelte style virtual modules (#1024)

Patch Changes

  • remove vite6 beta from peer range (#1035)

  • Allow script tags to span multiple lines (0db95a9)

  • Updated dependencies [4fefbc2, e262266]:

    • @​sveltejs/vite-plugin-svelte-inspector@​4.0.0

5.0.0-next.0

Major Changes

... (truncated)

Commits

Updates vite from 5.4.18 to 6.2.6

Release notes

Sourced from vite's releases.

v5.4.18

Please refer to CHANGELOG.md for details.

v5.4.17

Please refer to CHANGELOG.md for details.

v5.4.16

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

5.4.18 (2025-04-10)

5.4.17 (2025-04-03)

5.4.16 (2025-03-31)

Commits

Updates vitest from 1.6.1 to 3.1.1

Release notes

Sourced from vitest's releases.

v3.1.1

   🐞 Bug Fixes

    View changes on GitHub

v3.1.0

🚀 Features

🐞 Bug Fixes

🏎 Performance

... (truncated)

Commits
  • a9d36c7 chore: release v3.1.1
  • 69ca425 fix(reporter): print test only once in the verbose mode (#7738)
  • b166efa fix(reporter): report tests in correct order (#7752)
  • b8eda4b chore: release v3.1.0
  • 938da77 fix (ui): rerun individually tests with special chars in name (#7707)
  • 7883acd feat: use providers request interception for module mocking (#7576)
  • a7ecd0f refactor: remove direct imports from rollup (#7751)
  • 5659a0e feat: Added vitest-browser-lit to vitest init browser and docs (#7705)
  • 2702cf4 fix: fix vm tests flakiness (#7741)
  • 12762ea perf(browser): fork jest-dom instead of bundling it (#7605)
  • Additional commits viewable in compare view

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
    You can disable automated security fix PRs for this repo from the Security Alerts page.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/open-webui/open-webui/pull/12870 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 4/15/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/npm_and_yarn-06a2c619a6` --- ### 📝 Commits (1) - [`56d9ee4`](https://github.com/open-webui/open-webui/commit/56d9ee45d6f05b644884c443565e31f2259491da) build(deps): bump the npm_and_yarn group across 1 directory with 5 updates ### 📊 Changes **2 files changed** (+474 additions, -962 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+470 -958) 📝 `package.json` (+4 -4) </details> ### 📄 Description Bumps the npm_and_yarn group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@sveltejs/kit](https://github.com/sveltejs/kit/tree/HEAD/packages/kit) | `2.20.2` | `2.20.6` | | [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.4.15` | `5.4.18` | | [esbuild](https://github.com/evanw/esbuild) | `0.21.5` | `0.25.1` | | [@sveltejs/vite-plugin-svelte](https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte) | `3.1.1` | `5.0.3` | | [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.4.18` | `6.2.6` | | [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `1.6.1` | `3.1.1` | Updates `@sveltejs/kit` from 2.20.2 to 2.20.6 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/sveltejs/kit/releases"><code>@​sveltejs/kit</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​sveltejs/kit</code><a href="https://github.com/2"><code>@​2</code></a>.20.6</h2> <h3>Patch Changes</h3> <ul> <li>fix: escape names of tracked search parameters (<a href="https://github.com/sveltejs/kit/commit/d3300c6a67908590266c363dba7b0835d9a194cf"><code>d3300c6a67908590266c363dba7b0835d9a194cf</code></a>)</li> </ul> <h2><code>@​sveltejs/kit</code><a href="https://github.com/2"><code>@​2</code></a>.20.5</h2> <h3>Patch Changes</h3> <ul> <li> <p>allow <code>HandleServerError</code> hook to access <code>getRequestEvent</code> (<a href="https://redirect.github.com/sveltejs/kit/pull/13666">#13666</a>)</p> </li> <li> <p>fix: prevent Rollup warnings for undefined hooks (<a href="https://redirect.github.com/sveltejs/kit/pull/13687">#13687</a>)</p> </li> </ul> <h2><code>@​sveltejs/kit</code><a href="https://github.com/2"><code>@​2</code></a>.20.4</h2> <h3>Patch Changes</h3> <ul> <li>chore: remove internal class-replacement hack that isn't needed anymore (<a href="https://redirect.github.com/sveltejs/kit/pull/13664">#13664</a>)</li> </ul> <h2><code>@​sveltejs/kit</code><a href="https://github.com/2"><code>@​2</code></a>.20.3</h2> <h3>Patch Changes</h3> <ul> <li>fix: only call <code>afterNavigate</code> once on app start when SSR is disabled (<a href="https://redirect.github.com/sveltejs/kit/pull/13593">#13593</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/sveltejs/kit/blob/main/packages/kit/CHANGELOG.md"><code>@​sveltejs/kit</code>'s changelog</a>.</em></p> <blockquote> <h2>2.20.6</h2> <h3>Patch Changes</h3> <ul> <li>fix: escape names of tracked search parameters (<a href="https://github.com/sveltejs/kit/commit/d3300c6a67908590266c363dba7b0835d9a194cf"><code>d3300c6a67908590266c363dba7b0835d9a194cf</code></a>)</li> </ul> <h2>2.20.5</h2> <h3>Patch Changes</h3> <ul> <li> <p>allow <code>HandleServerError</code> hook to access <code>getRequestEvent</code> (<a href="https://redirect.github.com/sveltejs/kit/pull/13666">#13666</a>)</p> </li> <li> <p>fix: prevent Rollup warnings for undefined hooks (<a href="https://redirect.github.com/sveltejs/kit/pull/13687">#13687</a>)</p> </li> </ul> <h2>2.20.4</h2> <h3>Patch Changes</h3> <ul> <li>chore: remove internal class-replacement hack that isn't needed anymore (<a href="https://redirect.github.com/sveltejs/kit/pull/13664">#13664</a>)</li> </ul> <h2>2.20.3</h2> <h3>Patch Changes</h3> <ul> <li>fix: only call <code>afterNavigate</code> once on app start when SSR is disabled (<a href="https://redirect.github.com/sveltejs/kit/pull/13593">#13593</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sveltejs/kit/commit/711d37a788d6c5f522caf8c348d1a587f90b30fa"><code>711d37a</code></a> Version Packages (<a href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/13706">#13706</a>)</li> <li><a href="https://github.com/sveltejs/kit/commit/d3300c6a67908590266c363dba7b0835d9a194cf"><code>d3300c6</code></a> Merge commit from fork</li> <li><a href="https://github.com/sveltejs/kit/commit/a4acd47f547b9716e0ce3e3ec4549a3f34211f56"><code>a4acd47</code></a> Version Packages (<a href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/13685">#13685</a>)</li> <li><a href="https://github.com/sveltejs/kit/commit/dd5381a17b72cc0182f36dd45a9b85198d07805b"><code>dd5381a</code></a> Squelch rollup warnings (<a href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/13687">#13687</a>)</li> <li><a href="https://github.com/sveltejs/kit/commit/99b8079bfb8e7b403ef3d03db653302b20571bab"><code>99b8079</code></a> fix: allow <code>HandleServerError</code> hook to access the <code> getRequestEvent</code> (<a href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/13666">#13666</a>)</li> <li><a href="https://github.com/sveltejs/kit/commit/1fc4ed97c4eb3b930fc43d8399aaa34dc19d80f5"><code>1fc4ed9</code></a> Version Packages (<a href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/13672">#13672</a>)</li> <li><a href="https://github.com/sveltejs/kit/commit/7fd7bcb7142e7d0d2dd64174fa1a94d56a45d643"><code>7fd7bcb</code></a> chore: get rid of class-replacement hack (<a href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/13664">#13664</a>)</li> <li><a href="https://github.com/sveltejs/kit/commit/aefa5b1e0f87ae9d1487f31c9d517b7677877dd7"><code>aefa5b1</code></a> chore: tweak tsconfig includes (<a href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/13663">#13663</a>)</li> <li><a href="https://github.com/sveltejs/kit/commit/fa29a79a766159dad4e14dcd2c4069230d3fee76"><code>fa29a79</code></a> Version Packages (<a href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/13632">#13632</a>)</li> <li><a href="https://github.com/sveltejs/kit/commit/370e9f95c1d6efd5393f73d2dbef68143b27f681"><code>370e9f9</code></a> fix: only call <code>afterNavigate</code> once on start when SSR is disabled (<a href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/13593">#13593</a>)</li> <li>See full diff in <a href="https://github.com/sveltejs/kit/commits/@sveltejs/kit@2.20.6/packages/kit">compare view</a></li> </ul> </details> <br /> Updates `vite` from 5.4.15 to 5.4.18 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite/releases">vite's releases</a>.</em></p> <blockquote> <h2>v5.4.18</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v5.4.17</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v5.4.17/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v5.4.16</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v5.4.16/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md">vite's changelog</a>.</em></p> <blockquote> <h2><!-- raw HTML omitted -->5.4.18 (2025-04-10)<!-- raw HTML omitted --></h2> <ul> <li>fix: backport <a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19830">#19830</a>, reject requests with <code>#</code> in request-target (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19831">#19831</a>) (<a href="https://github.com/vitejs/vite/commit/823675baff2bd6809c74ba2d9acca0327923a54f">823675b</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19830">#19830</a> <a href="https://redirect.github.com/vitejs/vite/issues/19831">#19831</a></li> </ul> <h2><!-- raw HTML omitted -->5.4.17 (2025-04-03)<!-- raw HTML omitted --></h2> <ul> <li>fix: backport <a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19782">#19782</a>, fs check with svg and relative paths (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19784">#19784</a>) (<a href="https://github.com/vitejs/vite/commit/84b2b46ed129be8215108e789a90adbb33a9c42c">84b2b46</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19782">#19782</a> <a href="https://redirect.github.com/vitejs/vite/issues/19784">#19784</a></li> </ul> <h2><!-- raw HTML omitted -->5.4.16 (2025-03-31)<!-- raw HTML omitted --></h2> <ul> <li>fix: backport <a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19761">#19761</a>, fs check in transform middleware (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19762">#19762</a>) (<a href="https://github.com/vitejs/vite/commit/b627c50d359f3bd9b602408fbbf462cf4a2f019c">b627c50</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19761">#19761</a> <a href="https://redirect.github.com/vitejs/vite/issues/19762">#19762</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitejs/vite/commit/731b77d19d36f5682a5441b49cb2f6473389ad99"><code>731b77d</code></a> release: v5.4.18</li> <li><a href="https://github.com/vitejs/vite/commit/823675baff2bd6809c74ba2d9acca0327923a54f"><code>823675b</code></a> fix: backport <a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19830">#19830</a>, reject requests with <code>#</code> in request-target (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19831">#19831</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/0a2518a98d2354c61ee8ef51f7d00fa92aebb511"><code>0a2518a</code></a> release: v5.4.17</li> <li><a href="https://github.com/vitejs/vite/commit/84b2b46ed129be8215108e789a90adbb33a9c42c"><code>84b2b46</code></a> fix: backport <a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19782">#19782</a>, fs check with svg and relative paths (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19784">#19784</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/712cb71aa0e2a03dbf49db92043fb4ecbfc826b1"><code>712cb71</code></a> release: v5.4.16</li> <li><a href="https://github.com/vitejs/vite/commit/b627c50d359f3bd9b602408fbbf462cf4a2f019c"><code>b627c50</code></a> fix: backport <a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19761">#19761</a>, fs check in transform middleware (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19762">#19762</a>)</li> <li>See full diff in <a href="https://github.com/vitejs/vite/commits/v5.4.18/packages/vite">compare view</a></li> </ul> </details> <br /> Updates `esbuild` from 0.21.5 to 0.25.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/evanw/esbuild/releases">esbuild's releases</a>.</em></p> <blockquote> <h2>v0.25.1</h2> <ul> <li> <p>Fix incorrect paths in inline source maps (<a href="https://redirect.github.com/evanw/esbuild/issues/4070">#4070</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/4075">#4075</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/4105">#4105</a>)</p> <p>This fixes a regression from version 0.25.0 where esbuild didn't correctly resolve relative paths contained within source maps in inline <code>sourceMappingURL</code> data URLs. The paths were incorrectly being passed through as-is instead of being resolved relative to the source file containing the <code>sourceMappingURL</code> comment, which was due to the data URL not being a file URL. This regression has been fixed, and this case now has test coverage.</p> </li> <li> <p>Fix invalid generated source maps (<a href="https://redirect.github.com/evanw/esbuild/issues/4080">#4080</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/4082">#4082</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/4104">#4104</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/4107">#4107</a>)</p> <p>This release fixes a regression from version 0.24.1 that could cause esbuild to generate invalid source maps. Specifically under certain conditions, esbuild could generate a mapping with an out-of-bounds source index. It was introduced by code that attempted to improve esbuild's handling of &quot;null&quot; entries in source maps (i.e. mappings with a generated position but no original position). This regression has been fixed.</p> <p>This fix was contributed by <a href="https://github.com/jridgewell"><code>@​jridgewell</code></a>.</p> </li> <li> <p>Fix a regression with non-file source map paths (<a href="https://redirect.github.com/evanw/esbuild/issues/4078">#4078</a>)</p> <p>The format of paths in source maps that aren't in the <code>file</code> namespace was unintentionally changed in version 0.25.0. Path namespaces is an esbuild-specific concept that is optionally available for plugins to use to distinguish paths from <code>file</code> paths and from paths meant for other plugins. Previously the namespace was prepended to the path joined with a <code>:</code> character, but version 0.25.0 unintentionally failed to prepend the namespace. The previous behavior has been restored.</p> </li> <li> <p>Fix a crash with <code>switch</code> optimization (<a href="https://redirect.github.com/evanw/esbuild/issues/4088">#4088</a>)</p> <p>The new code in the previous release to optimize dead code in switch statements accidentally introduced a crash in the edge case where one or more switch case values include a function expression. This is because esbuild now visits the case values first to determine whether any cases are dead code, and then visits the case bodies once the dead code status is known. That triggered some internal asserts that guard against traversing the AST in an unexpected order. This crash has been fixed by changing esbuild to expect the new traversal ordering. Here's an example of affected code:</p> <pre lang="js"><code>switch (x) { case '': return y.map(z =&gt; z.value) case y.map(z =&gt; z.key).join(','): return [] } </code></pre> </li> <li> <p>Update Go from 1.23.5 to 1.23.7 (<a href="https://redirect.github.com/evanw/esbuild/issues/4076">#4076</a>, <a href="https://redirect.github.com/evanw/esbuild/pull/4077">#4077</a>)</p> <p>This should have no effect on existing code as this version change does not change Go's operating system support. It may remove certain reports from vulnerability scanners that detect which version of the Go compiler esbuild uses.</p> <p>This PR was contributed by <a href="https://github.com/MikeWillCook"><code>@​MikeWillCook</code></a>.</p> </li> </ul> <h2>v0.25.0</h2> <p><strong>This release deliberately contains backwards-incompatible changes.</strong> To avoid automatically picking up releases like this, you should either be pinning the exact version of <code>esbuild</code> in your <code>package.json</code> file (recommended) or be using a version range syntax that only accepts patch upgrades such as <code>^0.24.0</code> or <code>~0.24.0</code>. See npm's documentation about <a href="https://docs.npmjs.com/cli/v6/using-npm/semver/">semver</a> for more information.</p> <ul> <li> <p>Restrict access to esbuild's development server (<a href="https://github.com/evanw/esbuild/security/advisories/GHSA-67mh-4wv8-2f99">GHSA-67mh-4wv8-2f99</a>)</p> <p>This change addresses esbuild's first security vulnerability report. Previously esbuild set the <code>Access-Control-Allow-Origin</code> header to <code>*</code> to allow esbuild's development server to be flexible in how it's used for development. However, this allows the websites you visit to make HTTP requests to esbuild's local development server, which gives read-only access to your source code if the website were to fetch your source code's specific URL. You can read more information in <a href="https://github.com/evanw/esbuild/security/advisories/GHSA-67mh-4wv8-2f99">the report</a>.</p> <p>Starting with this release, <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS">CORS</a> will now be disabled, and requests will now be denied if the host does not match the one provided to <code>--serve=</code>. The default host is <code>0.0.0.0</code>, which refers to all of the IP addresses that represent the local machine (e.g. both <code>127.0.0.1</code> and <code>192.168.0.1</code>). If you want to customize anything about esbuild's development server, you can <a href="https://esbuild.github.io/api/#serve-proxy">put a proxy in front of esbuild</a> and modify the incoming and/or outgoing requests.</p> <p>In addition, the <code>serve()</code> API call has been changed to return an array of <code>hosts</code> instead of a single <code>host</code> string. This makes it possible to determine all of the hosts that esbuild's development server will accept.</p> <p>Thanks to <a href="https://github.com/sapphi-red"><code>@​sapphi-red</code></a> for reporting this issue.</p> </li> <li> <p>Delete output files when a build fails in watch mode (<a href="https://redirect.github.com/evanw/esbuild/issues/3643">#3643</a>)</p> <p>It has been requested for esbuild to delete files when a build fails in watch mode. Previously esbuild left the old files in place, which could cause people to not immediately realize that the most recent build failed. With this release, esbuild will now delete all output files if a rebuild fails. Fixing the build error and triggering another rebuild will restore all output files again.</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/evanw/esbuild/blob/main/CHANGELOG-2024.md">esbuild's changelog</a>.</em></p> <blockquote> <h1>Changelog: 2024</h1> <p>This changelog documents all esbuild versions published in the year 2024 (versions 0.19.12 through 0.24.2).</p> <h2>0.24.2</h2> <ul> <li> <p>Fix regression with <code>--define</code> and <code>import.meta</code> (<a href="https://redirect.github.com/evanw/esbuild/issues/4010">#4010</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/4012">#4012</a>, <a href="https://redirect.github.com/evanw/esbuild/pull/4013">#4013</a>)</p> <p>The previous change in version 0.24.1 to use a more expression-like parser for <code>define</code> values to allow quoted property names introduced a regression that removed the ability to use <code>--define:import.meta=...</code>. Even though <code>import</code> is normally a keyword that can't be used as an identifier, ES modules special-case the <code>import.meta</code> expression to behave like an identifier anyway. This change fixes the regression.</p> <p>This fix was contributed by <a href="https://github.com/sapphi-red"><code>@​sapphi-red</code></a>.</p> </li> </ul> <h2>0.24.1</h2> <ul> <li> <p>Allow <code>es2024</code> as a target in <code>tsconfig.json</code> (<a href="https://redirect.github.com/evanw/esbuild/issues/4004">#4004</a>)</p> <p>TypeScript recently <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-7/#support-for---target-es2024-and---lib-es2024">added <code>es2024</code></a> as a compilation target, so esbuild now supports this in the <code>target</code> field of <code>tsconfig.json</code> files, such as in the following configuration file:</p> <pre lang="json"><code>{ &quot;compilerOptions&quot;: { &quot;target&quot;: &quot;ES2024&quot; } } </code></pre> <p>As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in <a href="https://esbuild.github.io/content-types/#tsconfig-json">the documentation</a>.</p> <p>This fix was contributed by <a href="https://github.com/billyjanitsch"><code>@​billyjanitsch</code></a>.</p> </li> <li> <p>Allow automatic semicolon insertion after <code>get</code>/<code>set</code></p> <p>This change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error:</p> <pre lang="ts"><code>class Foo { get *x() {} set *y() {} } </code></pre> <p>The above code will be considered valid starting with this release. This change to esbuild follows a <a href="https://redirect.github.com/microsoft/TypeScript/pull/60225">similar change to TypeScript</a> which will allow this syntax starting with TypeScript 5.7.</p> </li> <li> <p>Allow quoted property names in <code>--define</code> and <code>--pure</code> (<a href="https://redirect.github.com/evanw/esbuild/issues/4008">#4008</a>)</p> <p>The <code>define</code> and <code>pure</code> API options now accept identifier expressions containing quoted property names. Previously all identifiers in the identifier expression had to be bare identifiers. This change now makes <code>--define</code> and <code>--pure</code> consistent with <code>--global-name</code>, which already supported quoted property names. For example, the following is now possible:</p> <pre lang="js"><code></code></pre> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/evanw/esbuild/commit/6bfc1c13b4d986b86e8bc2035f00c337b0c1d007"><code>6bfc1c1</code></a> publish 0.25.1 to npm</li> <li><a href="https://github.com/evanw/esbuild/commit/f9b39529a328f513cd73b36e8488a4a624df5c36"><code>f9b3952</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4078">#4078</a>: prepend namespaces to source map paths</li> <li><a href="https://github.com/evanw/esbuild/commit/ccf3dd7889e7765a1d6f1596ada0f22b320d7174"><code>ccf3dd7</code></a> add &quot;contributed by&quot; in changelog</li> <li><a href="https://github.com/evanw/esbuild/commit/48cd7a9e26452f30345eb10a3d471f26de56d1ec"><code>48cd7a9</code></a> Update Go from 1.23.5 to 1.23.7 (<a href="https://redirect.github.com/evanw/esbuild/issues/4077">#4077</a>)</li> <li><a href="https://github.com/evanw/esbuild/commit/1f04fa4dc85ef4b1fa01e1938fa127a2cc170c35"><code>1f04fa4</code></a> fix absolute windows paths in source maps</li> <li><a href="https://github.com/evanw/esbuild/commit/9ca03f6ea8aa4c418cb66da876139eef4e2abb26"><code>9ca03f6</code></a> also add test case from <a href="https://redirect.github.com/evanw/esbuild/issues/4075">#4075</a></li> <li><a href="https://github.com/evanw/esbuild/commit/2f244c085a970b873e579ac2a0b1c054cf9c66ea"><code>2f244c0</code></a> add test case from <a href="https://redirect.github.com/evanw/esbuild/issues/4104">#4104</a></li> <li><a href="https://github.com/evanw/esbuild/commit/1dde994de8858d71fe0e9e128d22142b3c9d7de6"><code>1dde994</code></a> fix incorrect test names</li> <li><a href="https://github.com/evanw/esbuild/commit/9f008c59b628b65c00878d7673ed24317e911666"><code>9f008c5</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4070">#4070</a>: <code>file</code> namespace for <code>sourceMappingURL</code></li> <li><a href="https://github.com/evanw/esbuild/commit/cbd5eb8c82089619f235b96be7b7b18c06fc10c0"><code>cbd5eb8</code></a> release notes and tests for <a href="https://redirect.github.com/evanw/esbuild/issues/4082">#4082</a></li> <li>Additional commits viewable in <a href="https://github.com/evanw/esbuild/compare/v0.21.5...v0.25.1">compare view</a></li> </ul> </details> <br /> Updates `@sveltejs/vite-plugin-svelte` from 3.1.1 to 5.0.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/sveltejs/vite-plugin-svelte/releases"><code>@​sveltejs/vite-plugin-svelte</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​sveltejs/vite-plugin-svelte</code><a href="https://github.com/5"><code>@​5</code></a>.0.3</h2> <h3>Patch Changes</h3> <ul> <li>fix errorhandling to work with errors that don't have a code property (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1054">#1054</a>)</li> </ul> <h2><code>@​sveltejs/vite-plugin-svelte</code><a href="https://github.com/5"><code>@​5</code></a>.0.2</h2> <h3>Patch Changes</h3> <ul> <li>adapt internal handling of warning and error <code>code</code> property to changes in svelte5 (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1044">#1044</a>)</li> </ul> <h2><code>@​sveltejs/vite-plugin-svelte</code><a href="https://github.com/5"><code>@​5</code></a>.0.1</h2> <h3>Patch Changes</h3> <ul> <li>Fix peer dependencies warning (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1038">#1038</a>)</li> </ul> <h2><code>@​sveltejs/vite-plugin-svelte</code><a href="https://github.com/5"><code>@​5</code></a>.0.0</h2> <h3>Major Changes</h3> <ul> <li> <p>Handle Vite 6 breaking change and remove Vite 5 handling (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1020">#1020</a>)</p> </li> <li> <p>Support Vite 6 (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1026">#1026</a>)</p> </li> </ul> <h3>Minor Changes</h3> <ul> <li> <p>Add <code>esm-env</code> to <code>ssr.noExternal</code> by default to resolve its conditions with Vite (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1020">#1020</a>)</p> </li> <li> <p>Support <code>?inline</code> query on Svelte style virtual modules (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1024">#1024</a>)</p> </li> </ul> <h3>Patch Changes</h3> <ul> <li> <p>remove vite6 beta from peer range (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1035">#1035</a>)</p> </li> <li> <p>Allow script tags to span multiple lines (<a href="https://github.com/sveltejs/vite-plugin-svelte/commit/0db95a9cbcd281b99b8b817c8eda8d9ff8fa2db2"><code>0db95a9</code></a>)</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/sveltejs/vite-plugin-svelte/commit/4fefbc24718953161ac7f86750df2dd539ca7978"><code>4fefbc2</code></a>, <a href="https://github.com/sveltejs/vite-plugin-svelte/commit/e2622664d9871558e03974524467968c7f906098"><code>e262266</code></a>]:</p> <ul> <li><code>@​sveltejs/vite-plugin-svelte-inspector</code><a href="https://github.com/4"><code>@​4</code></a>.0.0</li> </ul> </li> </ul> <h2><code>@​sveltejs/vite-plugin-svelte</code><a href="https://github.com/5"><code>@​5</code></a>.0.0-next.0</h2> <h3>Major Changes</h3> <ul> <li> <p>Handle Vite 6 breaking change and remove Vite 5 handling (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1020">#1020</a>)</p> </li> <li> <p>Support Vite 6 (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1026">#1026</a>)</p> </li> </ul> <h3>Minor Changes</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/sveltejs/vite-plugin-svelte/blob/main/packages/vite-plugin-svelte/CHANGELOG.md"><code>@​sveltejs/vite-plugin-svelte</code>'s changelog</a>.</em></p> <blockquote> <h2>5.0.3</h2> <h3>Patch Changes</h3> <ul> <li>fix errorhandling to work with errors that don't have a code property (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1054">#1054</a>)</li> </ul> <h2>5.0.2</h2> <h3>Patch Changes</h3> <ul> <li>adapt internal handling of warning and error <code>code</code> property to changes in svelte5 (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1044">#1044</a>)</li> </ul> <h2>5.0.1</h2> <h3>Patch Changes</h3> <ul> <li>Fix peer dependencies warning (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1038">#1038</a>)</li> </ul> <h2>5.0.0</h2> <h3>Major Changes</h3> <ul> <li> <p>Handle Vite 6 breaking change and remove Vite 5 handling (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1020">#1020</a>)</p> </li> <li> <p>Support Vite 6 (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1026">#1026</a>)</p> </li> </ul> <h3>Minor Changes</h3> <ul> <li> <p>Add <code>esm-env</code> to <code>ssr.noExternal</code> by default to resolve its conditions with Vite (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1020">#1020</a>)</p> </li> <li> <p>Support <code>?inline</code> query on Svelte style virtual modules (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1024">#1024</a>)</p> </li> </ul> <h3>Patch Changes</h3> <ul> <li> <p>remove vite6 beta from peer range (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1035">#1035</a>)</p> </li> <li> <p>Allow script tags to span multiple lines (<a href="https://github.com/sveltejs/vite-plugin-svelte/commit/0db95a9cbcd281b99b8b817c8eda8d9ff8fa2db2"><code>0db95a9</code></a>)</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/sveltejs/vite-plugin-svelte/commit/4fefbc24718953161ac7f86750df2dd539ca7978"><code>4fefbc2</code></a>, <a href="https://github.com/sveltejs/vite-plugin-svelte/commit/e2622664d9871558e03974524467968c7f906098"><code>e262266</code></a>]:</p> <ul> <li><code>@​sveltejs/vite-plugin-svelte-inspector</code><a href="https://github.com/4"><code>@​4</code></a>.0.0</li> </ul> </li> </ul> <h2>5.0.0-next.0</h2> <h3>Major Changes</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sveltejs/vite-plugin-svelte/commit/2a8966690fa5d9df955bcd7acdad7f129bffd2be"><code>2a89666</code></a> Version Packages (<a href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/1056">#1056</a>)</li> <li><a href="https://github.com/sveltejs/vite-plugin-svelte/commit/47184d4194f015442270a280b33ee850ba9b0f83"><code>47184d4</code></a> Use optional chaining to catch null error codes in error.js (<a href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/1054">#1054</a>)</li> <li><a href="https://github.com/sveltejs/vite-plugin-svelte/commit/d215c889298d8ad61eda3cfa775e0fa2c55d43fa"><code>d215c88</code></a> chore(deps): bump deps and update test case to match new svelte export (<a href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/1049">#1049</a>)</li> <li><a href="https://github.com/sveltejs/vite-plugin-svelte/commit/0e8ebf3ef0a04a930139bc00e46c080b373a58ef"><code>0e8ebf3</code></a> Version Packages (<a href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/1045">#1045</a>)</li> <li><a href="https://github.com/sveltejs/vite-plugin-svelte/commit/e41edff61afe645c2f6b07fa1b3bfd98ec8d806e"><code>e41edff</code></a> fix: update warning codes for svelte5 (<a href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/1044">#1044</a>)</li> <li><a href="https://github.com/sveltejs/vite-plugin-svelte/commit/1b302f1f8b43ddde753fac41f1b0b00dc4acb301"><code>1b302f1</code></a> chore(deps): update all non-major dependencies (<a href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/1042">#1042</a>)</li> <li><a href="https://github.com/sveltejs/vite-plugin-svelte/commit/12dc87ca164cff05244f666f593b50898c4492de"><code>12dc87c</code></a> chore(deps): update all non-major dependencies (<a href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/1041">#1041</a>)</li> <li><a href="https://github.com/sveltejs/vite-plugin-svelte/commit/0c06e1fafbe96165c46f695d75e39154a915e9c8"><code>0c06e1f</code></a> Version Packages (<a href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/1039">#1039</a>)</li> <li><a href="https://github.com/sveltejs/vite-plugin-svelte/commit/5389d3150cbcbb88e48f364c27e1dee9f0870416"><code>5389d31</code></a> fix: handle peer dep warning (<a href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/1038">#1038</a>)</li> <li><a href="https://github.com/sveltejs/vite-plugin-svelte/commit/5192b92851b807324bdeaaa1f953841579b0203f"><code>5192b92</code></a> Version Packages (<a href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/1036">#1036</a>)</li> <li>Additional commits viewable in <a href="https://github.com/sveltejs/vite-plugin-svelte/commits/@sveltejs/vite-plugin-svelte@5.0.3/packages/vite-plugin-svelte">compare view</a></li> </ul> </details> <br /> Updates `vite` from 5.4.18 to 6.2.6 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite/releases">vite's releases</a>.</em></p> <blockquote> <h2>v5.4.18</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v5.4.17</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v5.4.17/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v5.4.16</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v5.4.16/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite/blob/v5.4.18/packages/vite/CHANGELOG.md">vite's changelog</a>.</em></p> <blockquote> <h2><!-- raw HTML omitted -->5.4.18 (2025-04-10)<!-- raw HTML omitted --></h2> <ul> <li>fix: backport <a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19830">#19830</a>, reject requests with <code>#</code> in request-target (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19831">#19831</a>) (<a href="https://github.com/vitejs/vite/commit/823675baff2bd6809c74ba2d9acca0327923a54f">823675b</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19830">#19830</a> <a href="https://redirect.github.com/vitejs/vite/issues/19831">#19831</a></li> </ul> <h2><!-- raw HTML omitted -->5.4.17 (2025-04-03)<!-- raw HTML omitted --></h2> <ul> <li>fix: backport <a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19782">#19782</a>, fs check with svg and relative paths (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19784">#19784</a>) (<a href="https://github.com/vitejs/vite/commit/84b2b46ed129be8215108e789a90adbb33a9c42c">84b2b46</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19782">#19782</a> <a href="https://redirect.github.com/vitejs/vite/issues/19784">#19784</a></li> </ul> <h2><!-- raw HTML omitted -->5.4.16 (2025-03-31)<!-- raw HTML omitted --></h2> <ul> <li>fix: backport <a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19761">#19761</a>, fs check in transform middleware (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19762">#19762</a>) (<a href="https://github.com/vitejs/vite/commit/b627c50d359f3bd9b602408fbbf462cf4a2f019c">b627c50</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19761">#19761</a> <a href="https://redirect.github.com/vitejs/vite/issues/19762">#19762</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitejs/vite/commit/731b77d19d36f5682a5441b49cb2f6473389ad99"><code>731b77d</code></a> release: v5.4.18</li> <li><a href="https://github.com/vitejs/vite/commit/823675baff2bd6809c74ba2d9acca0327923a54f"><code>823675b</code></a> fix: backport <a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19830">#19830</a>, reject requests with <code>#</code> in request-target (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19831">#19831</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/0a2518a98d2354c61ee8ef51f7d00fa92aebb511"><code>0a2518a</code></a> release: v5.4.17</li> <li><a href="https://github.com/vitejs/vite/commit/84b2b46ed129be8215108e789a90adbb33a9c42c"><code>84b2b46</code></a> fix: backport <a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19782">#19782</a>, fs check with svg and relative paths (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19784">#19784</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/712cb71aa0e2a03dbf49db92043fb4ecbfc826b1"><code>712cb71</code></a> release: v5.4.16</li> <li><a href="https://github.com/vitejs/vite/commit/b627c50d359f3bd9b602408fbbf462cf4a2f019c"><code>b627c50</code></a> fix: backport <a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19761">#19761</a>, fs check in transform middleware (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19762">#19762</a>)</li> <li>See full diff in <a href="https://github.com/vitejs/vite/commits/v5.4.18/packages/vite">compare view</a></li> </ul> </details> <br /> Updates `vitest` from 1.6.1 to 3.1.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vitest-dev/vitest/releases">vitest's releases</a>.</em></p> <blockquote> <h2>v3.1.1</h2> <h3>   🐞 Bug Fixes</h3> <ul> <li><strong>reporter</strong>: <ul> <li>Report tests in correct order  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7752">vitest-dev/vitest#7752</a> <a href="https://github.com/vitest-dev/vitest/commit/b166efa2"><!-- raw HTML omitted -->(b166e)<!-- raw HTML omitted --></a></li> <li>Print test only once in the verbose mode  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7738">vitest-dev/vitest#7738</a> <a href="https://github.com/vitest-dev/vitest/commit/69ca425c"><!-- raw HTML omitted -->(69ca4)<!-- raw HTML omitted --></a></li> </ul> </li> </ul> <h5>    <a href="https://github.com/vitest-dev/vitest/compare/v3.1.0...v3.1.1">View changes on GitHub</a></h5> <h2>v3.1.0</h2> <h3>🚀 Features</h3> <ul> <li>Introduce <code>%$</code> option to add number of the test to its title - by <a href="https://github.com/kemuridama"><code>@​kemuridama</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7412">vitest-dev/vitest#7412</a> <a href="https://github.com/vitest-dev/vitest/commit/df3477076"><!-- raw HTML omitted -->(df347)<!-- raw HTML omitted --></a></li> <li>Add <code>diff.maxDepth</code> option and set non-<code>Infinity</code> value as a default to reduce crash - by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7481">vitest-dev/vitest#7481</a> <a href="https://github.com/vitest-dev/vitest/commit/eacab25e7"><!-- raw HTML omitted -->(eacab)<!-- raw HTML omitted --></a></li> <li>Allow array element for <code>test.each/for</code> title formatting - by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7522">vitest-dev/vitest#7522</a> <a href="https://github.com/vitest-dev/vitest/commit/ea3d67b03"><!-- raw HTML omitted -->(ea3d6)<!-- raw HTML omitted --></a></li> <li>Add &quot;configureVitest&quot; plugin hook - by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> and <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7349">vitest-dev/vitest#7349</a> <a href="https://github.com/vitest-dev/vitest/commit/20a5d4bfc"><!-- raw HTML omitted -->(20a5d)<!-- raw HTML omitted --></a></li> <li>Support <code>--configLoader</code> CLI option - by <a href="https://github.com/Carnageous"><code>@​Carnageous</code></a> and <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7574">vitest-dev/vitest#7574</a> <a href="https://github.com/vitest-dev/vitest/commit/2a8520a83"><!-- raw HTML omitted -->(2a852)<!-- raw HTML omitted --></a></li> <li>Added <code>vitest-browser-lit</code> to <code>vitest init browser</code> and docs - by <a href="https://github.com/EskiMojo14"><code>@​EskiMojo14</code></a> and <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7705">vitest-dev/vitest#7705</a> <a href="https://github.com/vitest-dev/vitest/commit/5659a0e0c"><!-- raw HTML omitted -->(5659a)<!-- raw HTML omitted --></a></li> <li>Use providers request interception for module mocking - by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7576">vitest-dev/vitest#7576</a> <a href="https://github.com/vitest-dev/vitest/commit/7883acd63"><!-- raw HTML omitted -->(7883a)<!-- raw HTML omitted --></a></li> <li><strong>browser</strong>: <ul> <li>Introduce <code>and</code>, <code>or</code> and <code>filter</code> locators - by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> and <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7463">vitest-dev/vitest#7463</a> <a href="https://github.com/vitest-dev/vitest/commit/63949b1d7"><!-- raw HTML omitted -->(63949)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>reporter</strong>: <ul> <li>Always render test time - by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> and <a href="https://github.com/spamshaker"><code>@​spamshaker</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7529">vitest-dev/vitest#7529</a> <a href="https://github.com/vitest-dev/vitest/commit/5eba60ae1"><!-- raw HTML omitted -->(5eba6)<!-- raw HTML omitted --></a></li> <li><code>--silent=passed-only</code> to log failed tasks only - by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7530">vitest-dev/vitest#7530</a> <a href="https://github.com/vitest-dev/vitest/commit/f9e1cb494"><!-- raw HTML omitted -->(f9e1c)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>runner</strong>: <ul> <li>Add <code>test.scoped</code> to override <code>test.extend</code> fixtures per-suite - by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7233">vitest-dev/vitest#7233</a> <a href="https://github.com/vitest-dev/vitest/commit/e5851e4b8"><!-- raw HTML omitted -->(e5851)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>vitest</strong>: <ul> <li>Allow conditional <code>context.skip(boolean)</code> - by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> and <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7659">vitest-dev/vitest#7659</a> <a href="https://github.com/vitest-dev/vitest/commit/6adecb903"><!-- raw HTML omitted -->(6adec)<!-- raw HTML omitted --></a></li> <li>Support rolldown-vite in NormalizeUrlPlugin - by <a href="https://github.com/sapphi-red"><code>@​sapphi-red</code></a> and <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7739">vitest-dev/vitest#7739</a> <a href="https://github.com/vitest-dev/vitest/commit/1ef31a7bb"><!-- raw HTML omitted -->(1ef31)<!-- raw HTML omitted --></a></li> </ul> </li> </ul> <h3>🐞 Bug Fixes</h3> <ul> <li>Update test stats regularly - by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7700">vitest-dev/vitest#7700</a> <a href="https://github.com/vitest-dev/vitest/commit/b7953487b"><!-- raw HTML omitted -->(b7953)<!-- raw HTML omitted --></a></li> <li>Fix vm tests flakiness - by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7741">vitest-dev/vitest#7741</a> <a href="https://github.com/vitest-dev/vitest/commit/2702cf424"><!-- raw HTML omitted -->(2702c)<!-- raw HTML omitted --></a></li> <li>Set <code>diff.expand: false</code> as default - by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7697">vitest-dev/vitest#7697</a> <a href="https://github.com/vitest-dev/vitest/commit/f34206536"><!-- raw HTML omitted -->(f3420)<!-- raw HTML omitted --></a></li> <li><strong>browser</strong>: <ul> <li>Correctly calculate timeout in hooks when actions are performed - by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7747">vitest-dev/vitest#7747</a> <a href="https://github.com/vitest-dev/vitest/commit/a55055180"><!-- raw HTML omitted -->(a5505)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>deps</strong>: <ul> <li>Update all non-major dependencies - by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7600">vitest-dev/vitest#7600</a> <a href="https://github.com/vitest-dev/vitest/commit/7fc5a2908"><!-- raw HTML omitted -->(7fc5a)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>reporter</strong>: <ul> <li><code>--hideSkippedTests</code> should hide suites too - by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7695">vitest-dev/vitest#7695</a> <a href="https://github.com/vitest-dev/vitest/commit/ba9b51ccc"><!-- raw HTML omitted -->(ba9b5)<!-- raw HTML omitted --></a></li> <li>Report tests in correct order - by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7752">vitest-dev/vitest#7752</a> <a href="https://github.com/vitest-dev/vitest/commit/b166efa28"><!-- raw HTML omitted -->(b166e)<!-- raw HTML omitted --></a></li> <li>Print test only once in the verbose mode - by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7738">vitest-dev/vitest#7738</a> <a href="https://github.com/vitest-dev/vitest/commit/69ca425c6"><!-- raw HTML omitted -->(69ca4)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>snapshot</strong>: <ul> <li>Fix indent normalization - by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7400">vitest-dev/vitest#7400</a> <a href="https://github.com/vitest-dev/vitest/commit/8299709d2"><!-- raw HTML omitted -->(82997)<!-- raw HTML omitted --></a></li> <li>This change can cause small amount of very old snapshots to be updated, but there will be no functional change to how they work.</li> </ul> </li> </ul> <h3>🏎 Performance</h3> <ul> <li><strong>browser</strong>: Fork jest-dom instead of bundling it - by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7605">vitest-dev/vitest#7605</a> <a href="https://github.com/vitest-dev/vitest/commit/12762ea6c"><!-- raw HTML omitted -->(12762)<!-- raw HTML omitted --></a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitest-dev/vitest/commit/a9d36c719f8ce5551f61da20181490d3673bdf99"><code>a9d36c7</code></a> chore: release v3.1.1</li> <li><a href="https://github.com/vitest-dev/vitest/commit/69ca425c695805ee19e5d14840df9c9ef6d8e7a4"><code>69ca425</code></a> fix(reporter): print test only once in the verbose mode (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7738">#7738</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/b166efa285f4f678914008edf4a1b96e9d936dab"><code>b166efa</code></a> fix(reporter): report tests in correct order (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7752">#7752</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/b8eda4bb1c7a586fb4c8622e3989513e7d57c6a5"><code>b8eda4b</code></a> chore: release v3.1.0</li> <li><a href="https://github.com/vitest-dev/vitest/commit/938da77ee063748cfb12a7f302d2efcef249cf1f"><code>938da77</code></a> fix (ui): rerun individually tests with special chars in name (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7707">#7707</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/7883acd636192e541860bba436dfb00bb5eaf0e2"><code>7883acd</code></a> feat: use providers request interception for module mocking (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7576">#7576</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/a7ecd0f495de081ea4819b243da8c48b0b35f1c9"><code>a7ecd0f</code></a> refactor: remove direct imports from rollup (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7751">#7751</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/5659a0e0ce748f9574c74c2cf90f65bfcf8c0ab8"><code>5659a0e</code></a> feat: Added <code>vitest-browser-lit</code> to <code>vitest init browser</code> and docs (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7705">#7705</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/2702cf4245ffa543f5b5b2335ab299453870a4e3"><code>2702cf4</code></a> fix: fix vm tests flakiness (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7741">#7741</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/12762ea6cc1a295cbf6c4cac53b3710fd766fd32"><code>12762ea</code></a> perf(browser): fork jest-dom instead of bundling it (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7605">#7605</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vitest-dev/vitest/commits/v3.1.1/packages/vitest">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/open-webui/open-webui/network/alerts). </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-20 04:35:30 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#23040