[PR #13924] [CLOSED] build(deps): bump the npm_and_yarn group across 1 directory with 6 updates #38964

Closed
opened 2026-04-25 11:44:29 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

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

Base: mainHead: dependabot/npm_and_yarn/npm_and_yarn-c81a8de801


📝 Commits (1)

  • 2b2ad24 build(deps): bump the npm_and_yarn group across 1 directory with 6 updates

📊 Changes

2 files changed (+556 additions, -961 deletions)

View changed files

📝 package-lock.json (+551 -956)
📝 package.json (+5 -5)

📄 Description

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

Package From To
undici 7.3.0 7.5.0
@sveltejs/kit 2.20.2 2.21.0
vite 5.4.15 5.4.19
esbuild 0.21.5 0.25.1
@sveltejs/vite-plugin-svelte 3.1.1 5.0.3
vite 5.4.19 6.3.5
vitest 1.6.1 3.1.3

Updates undici from 7.3.0 to 7.5.0

Release notes

Sourced from undici's releases.

v7.5.0

What's Changed

New Contributors

Full Changelog: https://github.com/nodejs/undici/compare/v7.4.0...v7.5.0

v7.4.0

What's Changed

New Contributors

Full Changelog: https://github.com/nodejs/undici/compare/v7.3.0...v7.4.0

Commits

Updates @sveltejs/kit from 2.20.2 to 2.21.0

Release notes

Sourced from @​sveltejs/kit's releases.

@​sveltejs/kit@​2.21.0

Minor Changes

  • feat: allow running client-side code at the top-level of universal pages/layouts when SSR is disabled and page options are only boolean or string literals (#13684)

Patch Changes

  • chore: remove import-meta-resolve dependency (#13629)

  • fix: remove component code from server nodes that are never used for SSR (#13684)

@​sveltejs/kit@​2.20.8

Patch Changes

  • fix: ensure that ssr and csr page options apply to error pages rendered as a result of a load function error on the server (#13695)

@​sveltejs/kit@​2.20.7

Patch Changes

  • fix: regression when serializing server data (#13709)

@​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.21.0

Minor Changes

  • feat: allow running client-side code at the top-level of universal pages/layouts when SSR is disabled and page options are only boolean or string literals (#13684)

Patch Changes

  • chore: remove import-meta-resolve dependency (#13629)

  • fix: remove component code from server nodes that are never used for SSR (#13684)

2.20.8

Patch Changes

  • fix: ensure that ssr and csr page options apply to error pages rendered as a result of a load function error on the server (#13695)

2.20.7

Patch Changes

  • fix: regression when serializing server data (#13709)

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

... (truncated)

Commits

Updates vite from 5.4.15 to 5.4.19

Release notes

Sourced from vite's releases.

v5.4.19

Please refer to CHANGELOG.md for details.

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.19 (2025-04-30)

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.19 to 6.3.5

Release notes

Sourced from vite's releases.

v5.4.19

Please refer to CHANGELOG.md for details.

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.19 (2025-04-30)

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

Release notes

Sourced from vitest's releases.

v3.1.3

   🐞 Bug Fixes

    View changes on GitHub

v3.1.2

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v3.1.1

... (truncated)

Commits
  • 6e8d937 chore: release v3.1.3
  • 8c7f75a fix: ignore failures on writeToCache (#7893)
  • d613b81 fix(reporters): --merge-reports to show each total run times (#7877)
  • 2fa763a fix: reset mocks on test retry/repeat (#7897)
  • 573cb16 ci: fix flaky browser tests (#7887)
  • 03660f9 fix(browser): correctly inherit CLI options (#7858)
  • a83f3bf fix: correctly resolve vitest import if inline: true is set (#7856)
  • 5a0afd1 chore: release v3.1.2
  • b70a6f1 chore(deps): unbundle tinyglobby and update (#7864)
  • f9eacbc fix(vite-node): add ERR_MODULE_NOT_FOUND code error if module cannot be loade...
  • 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 ...

Description has been truncated


🔄 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/13924 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 5/15/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/npm_and_yarn-c81a8de801` --- ### 📝 Commits (1) - [`2b2ad24`](https://github.com/open-webui/open-webui/commit/2b2ad24bf22dca2f8109e3104431596775793ed6) build(deps): bump the npm_and_yarn group across 1 directory with 6 updates ### 📊 Changes **2 files changed** (+556 additions, -961 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+551 -956) 📝 `package.json` (+5 -5) </details> ### 📄 Description Bumps the npm_and_yarn group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [undici](https://github.com/nodejs/undici) | `7.3.0` | `7.5.0` | | [@sveltejs/kit](https://github.com/sveltejs/kit/tree/HEAD/packages/kit) | `2.20.2` | `2.21.0` | | [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.4.15` | `5.4.19` | | [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.19` | `6.3.5` | | [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `1.6.1` | `3.1.3` | Updates `undici` from 7.3.0 to 7.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/nodejs/undici/releases">undici's releases</a>.</em></p> <blockquote> <h2>v7.5.0</h2> <h2>What's Changed</h2> <ul> <li>feat(docs): button to switch dark and light mode by <a href="https://github.com/shivarm"><code>@​shivarm</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/4044">nodejs/undici#4044</a></li> <li>feat: add mock call history to access request configuration in test by <a href="https://github.com/blephy"><code>@​blephy</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/4029">nodejs/undici#4029</a></li> <li>fix: Fix retry-handler.js when retry-after header is a Date by <a href="https://github.com/fgiova"><code>@​fgiova</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/4084">nodejs/undici#4084</a></li> <li>Update Cache Tests by <a href="https://github.com/github-actions"><code>@​github-actions</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/4027">nodejs/undici#4027</a></li> <li>Allow disabling autoSelectFamily in an Agent by <a href="https://github.com/hitsthings"><code>@​hitsthings</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/4070">nodejs/undici#4070</a></li> <li>Removed clients with unrecoverable errors from the Pool by <a href="https://github.com/mcollina"><code>@​mcollina</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/4088">nodejs/undici#4088</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/blephy"><code>@​blephy</code></a> made their first contribution in <a href="https://redirect.github.com/nodejs/undici/pull/4029">nodejs/undici#4029</a></li> <li><a href="https://github.com/fgiova"><code>@​fgiova</code></a> made their first contribution in <a href="https://redirect.github.com/nodejs/undici/pull/4084">nodejs/undici#4084</a></li> <li><a href="https://github.com/hitsthings"><code>@​hitsthings</code></a> made their first contribution in <a href="https://redirect.github.com/nodejs/undici/pull/4070">nodejs/undici#4070</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/nodejs/undici/compare/v7.4.0...v7.5.0">https://github.com/nodejs/undici/compare/v7.4.0...v7.5.0</a></p> <h2>v7.4.0</h2> <h2>What's Changed</h2> <ul> <li>fix: apply byte offset on Buffer.from by <a href="https://github.com/ronag"><code>@​ronag</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/4019">nodejs/undici#4019</a></li> <li>fix: fetch body fallback random number generation by <a href="https://github.com/Uzlopak"><code>@​Uzlopak</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/4023">nodejs/undici#4023</a></li> <li>Add release instructions by <a href="https://github.com/mcollina"><code>@​mcollina</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/4022">nodejs/undici#4022</a></li> <li>Update Cache Tests by <a href="https://github.com/github-actions"><code>@​github-actions</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/4020">nodejs/undici#4020</a></li> <li>Update WPT by <a href="https://github.com/github-actions"><code>@​github-actions</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/4011">nodejs/undici#4011</a></li> <li>docs: document about global dispatcher and errors (<a href="https://redirect.github.com/nodejs/undici/issues/3987">#3987</a>) by <a href="https://github.com/zuozp8"><code>@​zuozp8</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/4014">nodejs/undici#4014</a></li> <li>docs: fix incorrect method signature of <code>onResponseError</code> by <a href="https://github.com/tmair"><code>@​tmair</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/4030">nodejs/undici#4030</a></li> <li>feat(docs): copy to clipboard button by <a href="https://github.com/shivarm"><code>@​shivarm</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/4037">nodejs/undici#4037</a></li> <li>don't check AbortSignal maxListeners on some node versions by <a href="https://github.com/KhafraDev"><code>@​KhafraDev</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/4045">nodejs/undici#4045</a></li> <li>feat: mark <code>EnvHttpProxyAgent</code> as stable by <a href="https://github.com/aduh95"><code>@​aduh95</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/4049">nodejs/undici#4049</a></li> <li>test: fix windows wpt by <a href="https://github.com/metcoder95"><code>@​metcoder95</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/4050">nodejs/undici#4050</a></li> <li>fix: do not throw unhandled exception when data is undefined in interceptor.reply by <a href="https://github.com/frederikprijck"><code>@​frederikprijck</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/4036">nodejs/undici#4036</a></li> <li>fix: handle missing vary header values by <a href="https://github.com/gurgunday"><code>@​gurgunday</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/4031">nodejs/undici#4031</a></li> <li>Update WPT by <a href="https://github.com/github-actions"><code>@​github-actions</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/4028">nodejs/undici#4028</a></li> <li>Update WPT by <a href="https://github.com/github-actions"><code>@​github-actions</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/4062">nodejs/undici#4062</a></li> <li>fix: fix EnvHttpProxyAgent for the Node.js bundle by <a href="https://github.com/joyeecheung"><code>@​joyeecheung</code></a> in <a href="https://redirect.github.com/nodejs/undici/pull/4064">nodejs/undici#4064</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/zuozp8"><code>@​zuozp8</code></a> made their first contribution in <a href="https://redirect.github.com/nodejs/undici/pull/4014">nodejs/undici#4014</a></li> <li><a href="https://github.com/tmair"><code>@​tmair</code></a> made their first contribution in <a href="https://redirect.github.com/nodejs/undici/pull/4030">nodejs/undici#4030</a></li> <li><a href="https://github.com/shivarm"><code>@​shivarm</code></a> made their first contribution in <a href="https://redirect.github.com/nodejs/undici/pull/4037">nodejs/undici#4037</a></li> <li><a href="https://github.com/frederikprijck"><code>@​frederikprijck</code></a> made their first contribution in <a href="https://redirect.github.com/nodejs/undici/pull/4036">nodejs/undici#4036</a></li> <li><a href="https://github.com/joyeecheung"><code>@​joyeecheung</code></a> made their first contribution in <a href="https://redirect.github.com/nodejs/undici/pull/4064">nodejs/undici#4064</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/nodejs/undici/compare/v7.3.0...v7.4.0">https://github.com/nodejs/undici/compare/v7.3.0...v7.4.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/nodejs/undici/commit/a180465f3ae472d1cc860badcc36bda5566ff2a5"><code>a180465</code></a> Bumped v7.5.0 (<a href="https://redirect.github.com/nodejs/undici/issues/4091">#4091</a>)</li> <li><a href="https://github.com/nodejs/undici/commit/f317618ec28753a4218beccea048bcf89c36db25"><code>f317618</code></a> Removed clients with unrecoverable errors from the Pool (<a href="https://redirect.github.com/nodejs/undici/issues/4088">#4088</a>)</li> <li><a href="https://github.com/nodejs/undici/commit/1e58b58523c59fa49ce5de61fefbae6825052633"><code>1e58b58</code></a> feat: Allow disabling autoSelectFamily in an Agent (<a href="https://redirect.github.com/nodejs/undici/issues/4070">#4070</a>)</li> <li><a href="https://github.com/nodejs/undici/commit/2767d0e4e9214bf36e446f82675e758c8ef2f49e"><code>2767d0e</code></a> chore: update cache tests (<a href="https://redirect.github.com/nodejs/undici/issues/4027">#4027</a>)</li> <li><a href="https://github.com/nodejs/undici/commit/ef276d4a296b99f547ed563a11e74ae71bc84bc1"><code>ef276d4</code></a> fix: Fix retry-handler.js when retry-after header is a Date (<a href="https://redirect.github.com/nodejs/undici/issues/4084">#4084</a>)</li> <li><a href="https://github.com/nodejs/undici/commit/61797882f210e7e6f2b34158c0f25336ff72a751"><code>6179788</code></a> feat: add mock call history to access request configuration in test (<a href="https://redirect.github.com/nodejs/undici/issues/4029">#4029</a>)</li> <li><a href="https://github.com/nodejs/undici/commit/f11ae944dab697d2dc22318403200b144b4b2b91"><code>f11ae94</code></a> feat(docs): button to switch dark and light mode (<a href="https://redirect.github.com/nodejs/undici/issues/4044">#4044</a>)</li> <li><a href="https://github.com/nodejs/undici/commit/6bb527e9d768c5ca5b98765c28cf403ad8b250fb"><code>6bb527e</code></a> Bumped v7.4.0 (<a href="https://redirect.github.com/nodejs/undici/issues/4071">#4071</a>)</li> <li><a href="https://github.com/nodejs/undici/commit/a217002369c403f5a84a870520294435632ef6eb"><code>a217002</code></a> fix: fix EnvHttpProxyAgent for the Node.js bundle (<a href="https://redirect.github.com/nodejs/undici/issues/4064">#4064</a>)</li> <li><a href="https://github.com/nodejs/undici/commit/782f06b1ec44043f858b8ad1f76225919ecd55db"><code>782f06b</code></a> chore: update WPT (<a href="https://redirect.github.com/nodejs/undici/issues/4062">#4062</a>)</li> <li>Additional commits viewable in <a href="https://github.com/nodejs/undici/compare/v7.3.0...v7.5.0">compare view</a></li> </ul> </details> <br /> Updates `@sveltejs/kit` from 2.20.2 to 2.21.0 <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>.21.0</h2> <h3>Minor Changes</h3> <ul> <li>feat: allow running client-side code at the top-level of universal pages/layouts when SSR is disabled and page options are only boolean or string literals (<a href="https://redirect.github.com/sveltejs/kit/pull/13684">#13684</a>)</li> </ul> <h3>Patch Changes</h3> <ul> <li> <p>chore: remove <code>import-meta-resolve</code> dependency (<a href="https://redirect.github.com/sveltejs/kit/pull/13629">#13629</a>)</p> </li> <li> <p>fix: remove component code from server nodes that are never used for SSR (<a href="https://redirect.github.com/sveltejs/kit/pull/13684">#13684</a>)</p> </li> </ul> <h2><code>@​sveltejs/kit</code><a href="https://github.com/2"><code>@​2</code></a>.20.8</h2> <h3>Patch Changes</h3> <ul> <li>fix: ensure that <code>ssr</code> and <code>csr</code> page options apply to error pages rendered as a result of a load function error on the server (<a href="https://redirect.github.com/sveltejs/kit/pull/13695">#13695</a>)</li> </ul> <h2><code>@​sveltejs/kit</code><a href="https://github.com/2"><code>@​2</code></a>.20.7</h2> <h3>Patch Changes</h3> <ul> <li>fix: regression when serializing server data (<a href="https://redirect.github.com/sveltejs/kit/pull/13709">#13709</a>)</li> </ul> <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.21.0</h2> <h3>Minor Changes</h3> <ul> <li>feat: allow running client-side code at the top-level of universal pages/layouts when SSR is disabled and page options are only boolean or string literals (<a href="https://redirect.github.com/sveltejs/kit/pull/13684">#13684</a>)</li> </ul> <h3>Patch Changes</h3> <ul> <li> <p>chore: remove <code>import-meta-resolve</code> dependency (<a href="https://redirect.github.com/sveltejs/kit/pull/13629">#13629</a>)</p> </li> <li> <p>fix: remove component code from server nodes that are never used for SSR (<a href="https://redirect.github.com/sveltejs/kit/pull/13684">#13684</a>)</p> </li> </ul> <h2>2.20.8</h2> <h3>Patch Changes</h3> <ul> <li>fix: ensure that <code>ssr</code> and <code>csr</code> page options apply to error pages rendered as a result of a load function error on the server (<a href="https://redirect.github.com/sveltejs/kit/pull/13695">#13695</a>)</li> </ul> <h2>2.20.7</h2> <h3>Patch Changes</h3> <ul> <li>fix: regression when serializing server data (<a href="https://redirect.github.com/sveltejs/kit/pull/13709">#13709</a>)</li> </ul> <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> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sveltejs/kit/commit/d0f2d7b8cbb0d2f469141349ac168f54299f1683"><code>d0f2d7b</code></a> Version Packages (<a href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/13783">#13783</a>)</li> <li><a href="https://github.com/sveltejs/kit/commit/09f61ec2a14573e27769edb403c58aea5433a39f"><code>09f61ec</code></a> feat: statically analyse universal pages and layouts v3 (<a href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/13684">#13684</a>)</li> <li><a href="https://github.com/sveltejs/kit/commit/bd1c04662332cbafa843c35a2e783486116af3d5"><code>bd1c046</code></a> chore: remove import-meta-resolve (<a href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/13629">#13629</a>)</li> <li><a href="https://github.com/sveltejs/kit/commit/08660a76295a6646a34478d16fddebcc83376892"><code>08660a7</code></a> chore(deps): update all non-major dependencies (<a href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/13611">#13611</a>)</li> <li><a href="https://github.com/sveltejs/kit/commit/149779ad085a511d48b063864247c3cf119697e2"><code>149779a</code></a> chore(deps-dev): bump vite from 6.2.6 to 6.2.7 (<a href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/13770">#13770</a>)</li> <li><a href="https://github.com/sveltejs/kit/commit/7bb41aa4263b057a8912f4cdd35db03755d37342"><code>7bb41aa</code></a> minor doc tweaks etc (<a href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/13767">#13767</a>)</li> <li><a href="https://github.com/sveltejs/kit/commit/1244721d441ee5046f1f6e8a8841e574fdf59601"><code>1244721</code></a> Version Packages (<a href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/13713">#13713</a>)</li> <li><a href="https://github.com/sveltejs/kit/commit/0656e113b68b33a4215a203f523bf185d18f1deb"><code>0656e11</code></a> chore(deps): update playwright (<a href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/13715">#13715</a>)</li> <li><a href="https://github.com/sveltejs/kit/commit/a6cde448b55831fb38555d9dcc03058ac426303d"><code>a6cde44</code></a> chore(deps): upgrade vite, vitest, esbuild, wrangler (<a href="https://github.com/sveltejs/kit/tree/HEAD/packages/kit/issues/13716">#13716</a>)</li> <li><a href="https://github.com/sveltejs/kit/commit/c51fb554416e0c4a21655c1d79e834f69743d1d5"><code>c51fb55</code></a> fix: respect page options when rendering an error page as a result of an erro...</li> <li>Additional commits viewable in <a href="https://github.com/sveltejs/kit/commits/@sveltejs/kit@2.21.0/packages/kit">compare view</a></li> </ul> </details> <br /> Updates `vite` from 5.4.15 to 5.4.19 <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.19</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v5.4.19/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <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.19/packages/vite/CHANGELOG.md">vite's changelog</a>.</em></p> <blockquote> <h2><!-- raw HTML omitted -->5.4.19 (2025-04-30)<!-- raw HTML omitted --></h2> <ul> <li>fix: backport <a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19965">#19965</a>, check static serve file inside sirv (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19966">#19966</a>) (<a href="https://github.com/vitejs/vite/commit/766947e7cbf1cdd07df9737394e8c870401b78b0">766947e</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19965">#19965</a> <a href="https://redirect.github.com/vitejs/vite/issues/19966">#19966</a></li> </ul> <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/80a333a23103ced0442d4463d1191433d90f5e19"><code>80a333a</code></a> release: v5.4.19</li> <li><a href="https://github.com/vitejs/vite/commit/766947e7cbf1cdd07df9737394e8c870401b78b0"><code>766947e</code></a> fix: backport <a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19965">#19965</a>, check static serve file inside sirv (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19966">#19966</a>)</li> <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.19/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.19 to 6.3.5 <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.19</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v5.4.19/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <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.19/packages/vite/CHANGELOG.md">vite's changelog</a>.</em></p> <blockquote> <h2><!-- raw HTML omitted -->5.4.19 (2025-04-30)<!-- raw HTML omitted --></h2> <ul> <li>fix: backport <a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19965">#19965</a>, check static serve file inside sirv (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19966">#19966</a>) (<a href="https://github.com/vitejs/vite/commit/766947e7cbf1cdd07df9737394e8c870401b78b0">766947e</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19965">#19965</a> <a href="https://redirect.github.com/vitejs/vite/issues/19966">#19966</a></li> </ul> <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/80a333a23103ced0442d4463d1191433d90f5e19"><code>80a333a</code></a> release: v5.4.19</li> <li><a href="https://github.com/vitejs/vite/commit/766947e7cbf1cdd07df9737394e8c870401b78b0"><code>766947e</code></a> fix: backport <a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19965">#19965</a>, check static serve file inside sirv (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19966">#19966</a>)</li> <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.19/packages/vite">compare view</a></li> </ul> </details> <br /> Updates `vitest` from 1.6.1 to 3.1.3 <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.3</h2> <h3>   🐞 Bug Fixes</h3> <ul> <li>Correctly resolve vitest import if <code>inline: true</code> is set  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7856">vitest-dev/vitest#7856</a> <a href="https://github.com/vitest-dev/vitest/commit/a83f3bf6"><!-- raw HTML omitted -->(a83f3)<!-- raw HTML omitted --></a></li> <li>Fix fixture parsing with lowered async with esbuild 0.25.3  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7921">vitest-dev/vitest#7921</a> <a href="https://github.com/vitest-dev/vitest/commit/c5c8502b"><!-- raw HTML omitted -->(c5c85)<!-- raw HTML omitted --></a></li> <li>Remove event-catcher code  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7898">vitest-dev/vitest#7898</a> <a href="https://github.com/vitest-dev/vitest/commit/deb1bc27"><!-- raw HTML omitted -->(deb1b)<!-- raw HTML omitted --></a></li> <li>Reset mocks on test retry/repeat  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7897">vitest-dev/vitest#7897</a> <a href="https://github.com/vitest-dev/vitest/commit/2fa763a6"><!-- raw HTML omitted -->(2fa76)<!-- raw HTML omitted --></a></li> <li>Ignore failures on writeToCache  -  by <a href="https://github.com/orgads"><code>@​orgads</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7893">vitest-dev/vitest#7893</a> <a href="https://github.com/vitest-dev/vitest/commit/8c7f75a6"><!-- raw HTML omitted -->(8c7f7)<!-- raw HTML omitted --></a></li> <li><strong>browser</strong>: Correctly inherit CLI options  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7858">vitest-dev/vitest#7858</a> <a href="https://github.com/vitest-dev/vitest/commit/03660f9d"><!-- raw HTML omitted -->(03660)<!-- raw HTML omitted --></a></li> <li><strong>deps</strong>: Update all non-major dependencies  -  in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7867">vitest-dev/vitest#7867</a> <a href="https://github.com/vitest-dev/vitest/commit/67ef74a0"><!-- raw HTML omitted -->(67ef7)<!-- raw HTML omitted --></a></li> <li><strong>reporters</strong>: <code>--merge-reports</code> to show each total run times  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7877">vitest-dev/vitest#7877</a> <a href="https://github.com/vitest-dev/vitest/commit/d613b813"><!-- raw HTML omitted -->(d613b)<!-- raw HTML omitted --></a></li> </ul> <h5>    <a href="https://github.com/vitest-dev/vitest/compare/v3.1.2...v3.1.3">View changes on GitHub</a></h5> <h2>v3.1.2</h2> <h3>   🐞 Bug Fixes</h3> <ul> <li>Add global <code>chai</code> variable in <code>vitest/globals</code> (fix: <a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7474">#7474</a>)  -  by <a href="https://github.com/Jay-Karia"><code>@​Jay-Karia</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7771">vitest-dev/vitest#7771</a> and <a href="https://redirect.github.com/vitest-dev/vitest/issues/7474">vitest-dev/vitest#7474</a> <a href="https://github.com/vitest-dev/vitest/commit/d9297920"><!-- raw HTML omitted -->(d9297)<!-- raw HTML omitted --></a></li> <li>Prevent modifying <code>test.exclude</code> when same object passed in <code>coverage.exclude</code>  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7774">vitest-dev/vitest#7774</a> <a href="https://github.com/vitest-dev/vitest/commit/c375101d"><!-- raw HTML omitted -->(c3751)<!-- raw HTML omitted --></a></li> <li>Fix already hoisted mock  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7815">vitest-dev/vitest#7815</a> <a href="https://github.com/vitest-dev/vitest/commit/773b10e0"><!-- raw HTML omitted -->(773b1)<!-- raw HTML omitted --></a></li> <li>Fix test.scoped inheritance  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7814">vitest-dev/vitest#7814</a> <a href="https://github.com/vitest-dev/vitest/commit/db6c3bcc"><!-- raw HTML omitted -->(db6c3)<!-- raw HTML omitted --></a></li> <li>Remove pointer-events-none after resizing the left panel  -  by <a href="https://github.com/alexprudhomme"><code>@​alexprudhomme</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7811">vitest-dev/vitest#7811</a> <a href="https://github.com/vitest-dev/vitest/commit/a7e773bd"><!-- raw HTML omitted -->(a7e77)<!-- raw HTML omitted --></a></li> <li>Default to run mode when stdin is not a TTY  -  by <a href="https://github.com/kentonv"><code>@​kentonv</code></a>, <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</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/7673">vitest-dev/vitest#7673</a> <a href="https://github.com/vitest-dev/vitest/commit/6358f216"><!-- raw HTML omitted -->(6358f)<!-- raw HTML omitted --></a></li> <li>Use happy-dom/jsdom types for <code>envionmentOptions</code>  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7795">vitest-dev/vitest#7795</a> <a href="https://github.com/vitest-dev/vitest/commit/67430083"><!-- raw HTML omitted -->(67430)<!-- raw HTML omitted --></a></li> <li><strong>browser</strong>: <ul> <li>Fix transform error before browser server initialization  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7783">vitest-dev/vitest#7783</a> <a href="https://github.com/vitest-dev/vitest/commit/5f762ec5"><!-- raw HTML omitted -->(5f762)<!-- raw HTML omitted --></a></li> <li>Fix mocking from outside of root  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7789">vitest-dev/vitest#7789</a> <a href="https://github.com/vitest-dev/vitest/commit/03f55d74"><!-- raw HTML omitted -->(03f55)<!-- raw HTML omitted --></a></li> <li>Scale iframe for non ui case  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6512">vitest-dev/vitest#6512</a> <a href="https://github.com/vitest-dev/vitest/commit/c3374808"><!-- raw HTML omitted -->(c3374)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>coverage</strong>: <ul> <li><code>await</code> profiler calls  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7763">vitest-dev/vitest#7763</a> <a href="https://github.com/vitest-dev/vitest/commit/795a6433"><!-- raw HTML omitted -->(795a6)<!-- raw HTML omitted --></a></li> <li>Expose profiling timers  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7820">vitest-dev/vitest#7820</a> <a href="https://github.com/vitest-dev/vitest/commit/5652bf92"><!-- raw HTML omitted -->(5652b)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>deps</strong>: <ul> <li>Update all non-major dependencies  -  in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7765">vitest-dev/vitest#7765</a> <a href="https://github.com/vitest-dev/vitest/commit/7c3dfb17"><!-- raw HTML omitted -->(7c3df)<!-- raw HTML omitted --></a></li> <li>Update all non-major dependencies  -  in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7831">vitest-dev/vitest#7831</a> <a href="https://github.com/vitest-dev/vitest/commit/15701f5d"><!-- raw HTML omitted -->(15701)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>runner</strong>: <ul> <li>Correctly call test hooks and teardown functions  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7775">vitest-dev/vitest#7775</a> <a href="https://github.com/vitest-dev/vitest/commit/3c00c875"><!-- raw HTML omitted -->(3c00c)<!-- raw HTML omitted --></a></li> <li>Show stacktrace on test timeout error  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7799">vitest-dev/vitest#7799</a> <a href="https://github.com/vitest-dev/vitest/commit/df33bba7"><!-- raw HTML omitted -->(df33b)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>ui</strong>: <ul> <li>Load panel sizes from storage on initial load  -  by <a href="https://github.com/userquin"><code>@​userquin</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7265">vitest-dev/vitest#7265</a> <a href="https://github.com/vitest-dev/vitest/commit/6555d61d"><!-- raw HTML omitted -->(6555d)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>vite-node</strong>: <ul> <li>Named export should overwrite export all  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7846">vitest-dev/vitest#7846</a> <a href="https://github.com/vitest-dev/vitest/commit/5ba0d914"><!-- raw HTML omitted -->(5ba0d)<!-- raw HTML omitted --></a></li> <li>Add ERR_MODULE_NOT_FOUND code error if module cannot be loaded  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7776">vitest-dev/vitest#7776</a> <a href="https://github.com/vitest-dev/vitest/commit/f9eacbc5"><!-- raw HTML omitted -->(f9eac)<!-- raw HTML omitted --></a></li> </ul> </li> </ul> <h3>   🏎 Performance</h3> <ul> <li><strong>browser</strong>: Improve browser parallelisation  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7665">vitest-dev/vitest#7665</a> <a href="https://github.com/vitest-dev/vitest/commit/816a5c51"><!-- raw HTML omitted -->(816a5)<!-- raw HTML omitted --></a></li> </ul> <h5>    <a href="https://github.com/vitest-dev/vitest/compare/v3.1.1...v3.1.2">View changes on GitHub</a></h5> <h2>v3.1.1</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitest-dev/vitest/commit/6e8d9377949b78957a2a617b922925250c80fbcb"><code>6e8d937</code></a> chore: release v3.1.3</li> <li><a href="https://github.com/vitest-dev/vitest/commit/8c7f75a6deaa91ce80a42601eadab936194af6ea"><code>8c7f75a</code></a> fix: ignore failures on writeToCache (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7893">#7893</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/d613b81305c950ac666641487c44466c9d21f145"><code>d613b81</code></a> fix(reporters): <code>--merge-reports</code> to show each total run times (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7877">#7877</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/2fa763a622dc1b6981ba4a64efa1bea6c3405c0c"><code>2fa763a</code></a> fix: reset mocks on test retry/repeat (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7897">#7897</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/573cb1689688a6704581b90a30b44bab6bb0a943"><code>573cb16</code></a> ci: fix flaky browser tests (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7887">#7887</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/03660f9d57b8966645e065cf338051e8b59cfbd6"><code>03660f9</code></a> fix(browser): correctly inherit CLI options (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7858">#7858</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/a83f3bf6f0f3fa22a961d50ab41bf54aea27dcdb"><code>a83f3bf</code></a> fix: correctly resolve vitest import if <code>inline: true</code> is set (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7856">#7856</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/5a0afd1e8f38f22c34f7d3b2eabb8915d8d0f487"><code>5a0afd1</code></a> chore: release v3.1.2</li> <li><a href="https://github.com/vitest-dev/vitest/commit/b70a6f1fd46a14ca006d4d0cd96525179cbbd187"><code>b70a6f1</code></a> chore(deps): unbundle tinyglobby and update (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7864">#7864</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/f9eacbc55dc6b04ba1a48bd2fc1ad26a47062b15"><code>f9eacbc</code></a> fix(vite-node): add ERR_MODULE_NOT_FOUND code error if module cannot be loade...</li> <li>Additional commits viewable in <a href="https://github.com/vitest-dev/vitest/commits/v3.1.3/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 ... _Description has been truncated_ --- <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-25 11:44:29 -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#38964