[PR #11638] [CLOSED] chore(deps): bump the npm_and_yarn group across 1 directory with 7 updates #22771

Closed
opened 2026-04-20 04:23:19 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/11638
Author: @dependabot[bot]
Created: 3/13/2025
Status: Closed

Base: devHead: dependabot/npm_and_yarn/npm_and_yarn-29483b1035


📝 Commits (1)

  • b561a9f chore(deps): bump the npm_and_yarn group across 1 directory with 7 updates

📊 Changes

2 files changed (+1492 additions, -1758 deletions)

View changed files

📝 package-lock.json (+1486 -1752)
📝 package.json (+6 -6)

📄 Description

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

Package From To
dompurify 3.1.6 3.2.4
mermaid 10.9.3 11.5.0
esbuild 0.20.2 0.25.1
@sveltejs/vite-plugin-svelte 3.1.1 5.0.3
vite 5.4.14 6.2.1
i18next-parser 9.0.1 9.3.0
vitest 1.6.1 3.0.8

Updates dompurify from 3.1.6 to 3.2.4

Release notes

Sourced from dompurify's releases.

DOMPurify 3.2.4

  • Fixed a conditional and config dependent mXSS-style bypass reported by @​nsysean
  • Added a new feature to allow specific hook removal, thanks @​davecardwell
  • Added purify.js and purify.min.js to exports, thanks @​Aetherinox
  • Added better logic in case no window object is president, thanks @​yehuya
  • Updated some dependencies called out by dependabot
  • Updated license files etc to show the correct year

DOMPurify 3.2.3

DOMPurify 3.2.2

  • Fixed a possible bypass in case a rather specific config for custom elements is set, thanks @​yaniv-git
  • Fixed several minor issues with the type definitions, thanks again @​reduckted
  • Fixed a minor issue with the types reference for trusted types, thanks @​reduckted
  • Fixed a minor problem with the template detection regex on some systems, thanks @​svdb99

DOMPurify 3.2.1

DOMPurify 3.2.0

DOMPurify 3.1.7

  • Fixed an issue with comment detection and possible bypasses with specific config settings, thanks @​masatokinugawa
  • Fixed several smaller typos in documentation and test & build files, thanks @​christianhg
  • Added better support for Angular compiler, thanks @​jeroen1602
  • Added several new attributes to HTML and SVG allow-list, thanks @​Gigabyte5671 and @​Rotzbua
  • Removed the foreignObject element from the list of HTML entry-points, thanks @​masatokinugawa
  • Bumped several dependencies to be more up to date
Commits
  • ec29e65 Merge pull request #1062 from cure53/main
  • 1c1b183 chore: Preparing 3.2.4 release
  • d18ffcb fix: Changed the template literal regex to avoid a config-dependent bypass
  • 0d64d2b Merge pull request #1060 from yehuya/initializeTestImprovements
  • 9ad7933 tests: DOMPurify custom window tests improvements
  • 72760ca Merge pull request #1059 from yehuya/fixMissingWindowElement
  • bc72d44 Fix tests
  • 363a89d fix: handle undefined Element in DOMPurify initialization
  • f41b45d Update LICENSE
  • b25bf26 Update README.md
  • Additional commits viewable in compare view

Updates mermaid from 10.9.3 to 11.5.0

Release notes

Sourced from mermaid's releases.

mermaid@11.5.0

Minor Changes

  • #6187 7809b5a Thanks @​ashishjain0512! - Flowchart new syntax for node metadata bugs

    • Incorrect label mapping for nodes when using &
    • Syntax error when } with trailing spaces before new line
  • #6136 ec0d9c3 Thanks @​knsv! - Adding support for animation of flowchart edges

  • #6373 05bdf0e Thanks @​ashishjain0512! - Upgrade Requirement and ER diagram to use the common renderer flow

    • Added support for directions
    • Added support for hand drawn look
  • #6371 4d25cab Thanks @​knsv! - The arrowhead color should match the color of the edge. Creates a unique clone of the arrow marker with the appropriate color.

Patch Changes

mermaid@11.4.1

Patch Changes

  • #6059 01b5079 Thanks @​knsv! - fix: Kanban diagrams will not render when adding a number as ticket id or assigned for a task

  • #6038 1388662 Thanks @​knsv! - fix: Intersection calculations for tilted cylinder/DAS when using handdrawn look. Some random seeds could cause the calculations to break.

... (truncated)

Commits
  • 41a737f Merge pull request #6374 from mermaid-js/changeset-release/master
  • 0c2e1bc Version Packages
  • f399561 Merge pull request #6373 from mermaid-js/release/11.5.0
  • 05bdf0e Added changeset
  • 292cd83 Fix for multi-line row issue and failsafe for edge style for stroke not present
  • 3848649 Merge develop into release/11.5.0
  • 1341e3d Added support for row odd/even in different themes
  • 1d6a55a Merge pull request #6371 from mermaid-js/6369-mirror-edge-color-on-arrowhead
  • 4d25cab Added changeset
  • f633557 test: Add test for edge marker color rendering
  • Additional commits viewable in compare view

Updates esbuild from 0.20.2 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.14 to 6.2.1

Release notes

Sourced from vite's releases.

create-vite@6.2.1

Please refer to CHANGELOG.md for details.

v6.2.1

Please refer to CHANGELOG.md for details.

create-vite@6.2.0

Please refer to CHANGELOG.md for details.

v6.2.0

Please refer to CHANGELOG.md for details.

v6.2.0-beta.1

Please refer to CHANGELOG.md for details.

v6.2.0-beta.0

Please refer to CHANGELOG.md for details.

create-vite@6.1.1

Please refer to CHANGELOG.md for details.

v6.1.1

Please refer to CHANGELOG.md for details.

create-vite@6.1.0

Please refer to CHANGELOG.md for details.

v6.1.0

Please refer to CHANGELOG.md for details.

v6.1.0-beta.2

Please refer to CHANGELOG.md for details.

v6.1.0-beta.1

Please refer to CHANGELOG.md for details.

v6.1.0-beta.0

Please refer to CHANGELOG.md for details.

v6.0.11

Please refer to CHANGELOG.md for details.

v6.0.10

Please refer to CHANGELOG.md for details.

v6.0.9

This version contains a breaking change due to security fixes. See https://github.com/vitejs/vite/security/advisories/GHSA-vg6x-rcgg-rjx6 for more details.

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from vite's changelog.

6.2.1 (2025-03-07)

6.2.0 (2025-02-25)

6.2.0-beta.1 (2025-02-21)

  • fix(css): temporary add ?. after this.getModuleInfo in vite:css-post (#19478) (12b0b8a), closes #19478

6.2.0-beta.0 (2025-02-21)

6.1.1 (2025-02-19)

... (truncated)

Commits
  • d8461b5 release: v6.2.0
  • c94c9e0 fix(deps): update all non-major dependencies (#19501)
  • 5c70296 chore: use unicode cross icon instead of x (#19497)
  • 07091a1 fix(worker): string interpolation in dynamic worker options (#19476)
  • e01573a release: v6.2.0-beta.1
  • 12b0b8a fix(css): temporary add ?. after this.getModuleInfo in vite:css-post (#...
  • d686252 release: v6.2.0-beta.0
  • 3ebd838 feat(css): allow scoping css to importers exports (#19418)
  • f6926ca feat: use host url to open browser (#19414)
  • c575b82 feat: show mode on server start and add env debugger (#18808)
  • Additional commits viewable in compare view

Updates i18next-parser from 9.0.1 to 9.3.0

Changelog

Sourced from i18next-parser's changelog.

9.3.0

  • Allow to use multiple translation functions with different namespaces and keyPrefixes #1083 #494 #973 #737

9.2.0

  • Support nested property namespace functions in namespaceFunctions #1104 #1103
  • Update dependencies

9.1.0

  • Add support for i18next 24 #1090 #1093
  • Add namespace information to duplicate warnings #1091
  • Update dependencies

9.0.2

  • Fix cheerio dependency #1045
  • Update dependencies
Commits

Updates vitest from 1.6.1 to 3.0.8

Release notes

Sourced from vitest's releases.

v3.0.8

   🐞 Bug Fixes

    View changes on GitHub

v3.0.7

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v3.0.6

   🐞 Bug Fixes

## 📋 Pull Request Information **Original PR:** https://github.com/open-webui/open-webui/pull/11638 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 3/13/2025 **Status:** ❌ Closed **Base:** `dev` ← **Head:** `dependabot/npm_and_yarn/npm_and_yarn-29483b1035` --- ### 📝 Commits (1) - [`b561a9f`](https://github.com/open-webui/open-webui/commit/b561a9fed15a36906bf6325f4012c05502f6c2e2) chore(deps): bump the npm_and_yarn group across 1 directory with 7 updates ### 📊 Changes **2 files changed** (+1492 additions, -1758 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+1486 -1752) 📝 `package.json` (+6 -6) </details> ### 📄 Description Bumps the npm_and_yarn group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [dompurify](https://github.com/cure53/DOMPurify) | `3.1.6` | `3.2.4` | | [mermaid](https://github.com/mermaid-js/mermaid) | `10.9.3` | `11.5.0` | | [esbuild](https://github.com/evanw/esbuild) | `0.20.2` | `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.14` | `6.2.1` | | [i18next-parser](https://github.com/i18next/i18next-parser) | `9.0.1` | `9.3.0` | | [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `1.6.1` | `3.0.8` | Updates `dompurify` from 3.1.6 to 3.2.4 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/cure53/DOMPurify/releases">dompurify's releases</a>.</em></p> <blockquote> <h2>DOMPurify 3.2.4</h2> <ul> <li>Fixed a conditional and config dependent mXSS-style <a href="https://nsysean.github.io/posts/dompurify-323-bypass/">bypass</a> reported by <a href="https://github.com/nsysean"><code>@​nsysean</code></a></li> <li>Added a new feature to allow specific hook removal, thanks <a href="https://github.com/davecardwell"><code>@​davecardwell</code></a></li> <li>Added <em>purify.js</em> and <em>purify.min.js</em> to exports, thanks <a href="https://github.com/Aetherinox"><code>@​Aetherinox</code></a></li> <li>Added better logic in case no window object is president, thanks <a href="https://github.com/yehuya"><code>@​yehuya</code></a></li> <li>Updated some dependencies called out by dependabot</li> <li>Updated license files etc to show the correct year</li> </ul> <h2>DOMPurify 3.2.3</h2> <ul> <li>Fixed two conditional sanitizer bypasses discovered by <a href="https://github.com/parrot409"><code>@​parrot409</code></a> and <a href="https://x.com/slonser_"><code>@​Slonser</code></a></li> <li>Updated the attribute clobbering checks to prevent future bypasses, thanks <a href="https://github.com/parrot409"><code>@​parrot409</code></a></li> </ul> <h2>DOMPurify 3.2.2</h2> <ul> <li>Fixed a possible bypass in case a rather specific config for custom elements is set, thanks <a href="https://github.com/yaniv-git"><code>@​yaniv-git</code></a></li> <li>Fixed several minor issues with the type definitions, thanks again <a href="https://github.com/reduckted"><code>@​reduckted</code></a></li> <li>Fixed a minor issue with the types reference for trusted types, thanks <a href="https://github.com/reduckted"><code>@​reduckted</code></a></li> <li>Fixed a minor problem with the template detection regex on some systems, thanks <a href="https://github.com/svdb99"><code>@​svdb99</code></a></li> </ul> <h2>DOMPurify 3.2.1</h2> <ul> <li>Fixed several minor issues with the type definitions, thanks <a href="https://github.com/reduckted"><code>@​reduckted</code></a> <a href="https://github.com/ghiscoding"><code>@​ghiscoding</code></a> <a href="https://github.com/asamuzaK"><code>@​asamuzaK</code></a> <a href="https://github.com/MiniDigger"><code>@​MiniDigger</code></a></li> <li>Fixed an issue with non-minified dist files and order of imports, thanks <a href="https://github.com/reduckted"><code>@​reduckted</code></a></li> </ul> <h2>DOMPurify 3.2.0</h2> <ul> <li>Added type declarations, thanks <a href="https://github.com/reduckted"><code>@​reduckted</code></a> , <a href="https://github.com/philmayfield"><code>@​philmayfield</code></a>, <a href="https://github.com/aloisklink"><code>@​aloisklink</code></a>, <a href="https://github.com/ssi02014"><code>@​ssi02014</code></a> and others</li> <li>Fixed a minor issue with the handling of hooks, thanks <a href="https://github.com/kevin-mizu"><code>@​kevin-mizu</code></a></li> </ul> <h2>DOMPurify 3.1.7</h2> <ul> <li>Fixed an issue with comment detection and possible bypasses with specific config settings, thanks <a href="https://github.com/masatokinugawa"><code>@​masatokinugawa</code></a></li> <li>Fixed several smaller typos in documentation and test &amp; build files, thanks <a href="https://github.com/christianhg"><code>@​christianhg</code></a></li> <li>Added better support for Angular compiler, thanks <a href="https://github.com/jeroen1602"><code>@​jeroen1602</code></a></li> <li>Added several new attributes to HTML and SVG allow-list, thanks <a href="https://github.com/Gigabyte5671"><code>@​Gigabyte5671</code></a> and <a href="https://github.com/Rotzbua"><code>@​Rotzbua</code></a></li> <li>Removed the <code>foreignObject</code> element from the list of HTML entry-points, thanks <a href="https://github.com/masatokinugawa"><code>@​masatokinugawa</code></a></li> <li>Bumped several dependencies to be more up to date</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/cure53/DOMPurify/commit/ec29e65f3675077c1a78e6edcab97f797f004a2e"><code>ec29e65</code></a> Merge pull request <a href="https://redirect.github.com/cure53/DOMPurify/issues/1062">#1062</a> from cure53/main</li> <li><a href="https://github.com/cure53/DOMPurify/commit/1c1b1838625851939d4b86436feeb3e3ccb7dbb6"><code>1c1b183</code></a> chore: Preparing 3.2.4 release</li> <li><a href="https://github.com/cure53/DOMPurify/commit/d18ffcb554e0001748865da03ac75dd7829f0f02"><code>d18ffcb</code></a> fix: Changed the template literal regex to avoid a config-dependent bypass</li> <li><a href="https://github.com/cure53/DOMPurify/commit/0d64d2b12f9ecaa28899c60aba0b9ed5072c4d93"><code>0d64d2b</code></a> Merge pull request <a href="https://redirect.github.com/cure53/DOMPurify/issues/1060">#1060</a> from yehuya/initializeTestImprovements</li> <li><a href="https://github.com/cure53/DOMPurify/commit/9ad79331566e0671788b120cc1f682f4e7f33f44"><code>9ad7933</code></a> tests: DOMPurify custom window tests improvements</li> <li><a href="https://github.com/cure53/DOMPurify/commit/72760ca8ee425c3129420390d4c10afe698ff2fb"><code>72760ca</code></a> Merge pull request <a href="https://redirect.github.com/cure53/DOMPurify/issues/1059">#1059</a> from yehuya/fixMissingWindowElement</li> <li><a href="https://github.com/cure53/DOMPurify/commit/bc72d44b2e3cec00d8ef2427869d03cb668969fa"><code>bc72d44</code></a> Fix tests</li> <li><a href="https://github.com/cure53/DOMPurify/commit/363a89dd3a051b72334cd4d0c867616fdc4ee40d"><code>363a89d</code></a> fix: handle undefined Element in DOMPurify initialization</li> <li><a href="https://github.com/cure53/DOMPurify/commit/f41b45df18a9666a50c1ad2662cee259230cfef4"><code>f41b45d</code></a> Update LICENSE</li> <li><a href="https://github.com/cure53/DOMPurify/commit/b25bf26d674ff4db9074cef01fc51490cb1369a0"><code>b25bf26</code></a> Update README.md</li> <li>Additional commits viewable in <a href="https://github.com/cure53/DOMPurify/compare/3.1.6...3.2.4">compare view</a></li> </ul> </details> <br /> Updates `mermaid` from 10.9.3 to 11.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mermaid-js/mermaid/releases">mermaid's releases</a>.</em></p> <blockquote> <h2>mermaid@11.5.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6187">#6187</a> <a href="https://github.com/mermaid-js/mermaid/commit/7809b5a93fae127f45727071f5ff14325222c518"><code>7809b5a</code></a> Thanks <a href="https://github.com/ashishjain0512"><code>@​ashishjain0512</code></a>! - Flowchart new syntax for node metadata bugs</p> <ul> <li>Incorrect label mapping for nodes when using <code>&amp;</code></li> <li>Syntax error when <code>}</code> with trailing spaces before new line</li> </ul> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6136">#6136</a> <a href="https://github.com/mermaid-js/mermaid/commit/ec0d9c389aa6018043187654044c1e0b5aa4f600"><code>ec0d9c3</code></a> Thanks <a href="https://github.com/knsv"><code>@​knsv</code></a>! - Adding support for animation of flowchart edges</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6373">#6373</a> <a href="https://github.com/mermaid-js/mermaid/commit/05bdf0e20e2629fe77513218fbd4e28e65f75882"><code>05bdf0e</code></a> Thanks <a href="https://github.com/ashishjain0512"><code>@​ashishjain0512</code></a>! - Upgrade Requirement and ER diagram to use the common renderer flow</p> <ul> <li>Added support for directions</li> <li>Added support for hand drawn look</li> </ul> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6371">#6371</a> <a href="https://github.com/mermaid-js/mermaid/commit/4d25caba8e65df078966a283e7e0ae1200bef595"><code>4d25cab</code></a> Thanks <a href="https://github.com/knsv"><code>@​knsv</code></a>! - The arrowhead color should match the color of the edge. Creates a unique clone of the arrow marker with the appropriate color.</p> </li> </ul> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6064">#6064</a> <a href="https://github.com/mermaid-js/mermaid/commit/2a91849a38641e97ed6b20cb60aa4506d1b63177"><code>2a91849</code></a> Thanks <a href="https://github.com/NicolasNewman"><code>@​NicolasNewman</code></a>! - fix: architecture diagrams no longer grow to extreme heights due to conflicting alignments</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6198">#6198</a> <a href="https://github.com/mermaid-js/mermaid/commit/963efa64c794466dcd0f06bad6de6ba554d05a54"><code>963efa6</code></a> Thanks <a href="https://github.com/ferozmht"><code>@​ferozmht</code></a>! - Fixes for consistent edge id creation &amp; handling edge cases for animate edge feature</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6196">#6196</a> <a href="https://github.com/mermaid-js/mermaid/commit/127bac1147034d8a8588cc8f7870abe92ebc945e"><code>127bac1</code></a> Thanks <a href="https://github.com/knsv"><code>@​knsv</code></a>! - Fix for issue <a href="https://redirect.github.com/mermaid-js/mermaid/issues/6195">#6195</a> - allowing @ signs inside node labels</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6212">#6212</a> <a href="https://github.com/mermaid-js/mermaid/commit/90bbf90a83bf5da53fc8030cf1370bc8238fa4aa"><code>90bbf90</code></a> Thanks <a href="https://github.com/saurabhg772244"><code>@​saurabhg772244</code></a>! - fix: <code>mermaidAPI.getDiagramFromText()</code> now returns a new different db for each class diagram</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6218">#6218</a> <a href="https://github.com/mermaid-js/mermaid/commit/232e60c8cbaea804e6d98aa90f90d1ce76730e17"><code>232e60c</code></a> Thanks <a href="https://github.com/saurabhg772244"><code>@​saurabhg772244</code></a>! - fix: revert state db to resolve getData returning empty nodes and edges</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6250">#6250</a> <a href="https://github.com/mermaid-js/mermaid/commit/9cad3c7aea3bbbc61495b23225ccff76d312783f"><code>9cad3c7</code></a> Thanks <a href="https://github.com/saurabhg772244"><code>@​saurabhg772244</code></a>! - <code>mermaidAPI.getDiagramFromText()</code> now returns a new db instance on each call for state diagrams</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6293">#6293</a> <a href="https://github.com/mermaid-js/mermaid/commit/cfd84e54d502f4d36a35b50478121558cfbef2c4"><code>cfd84e5</code></a> Thanks <a href="https://github.com/saurabhg772244"><code>@​saurabhg772244</code></a>! - Added versioning to StateDB and updated tests and diagrams to use it.</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6161">#6161</a> <a href="https://github.com/mermaid-js/mermaid/commit/6cc31b74530baa6d0f527346ab1395b0896bb3c2"><code>6cc31b7</code></a> Thanks <a href="https://github.com/saurabhg772244"><code>@​saurabhg772244</code></a>! - fix: <code>mermaidAPI.getDiagramFromText()</code> now returns a new different db for each flowchart</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6272">#6272</a> <a href="https://github.com/mermaid-js/mermaid/commit/ffa7804af0701b3d044d6794e36bd9132d6c7e8d"><code>ffa7804</code></a> Thanks <a href="https://github.com/saurabhg772244"><code>@​saurabhg772244</code></a>! - fix: <code>mermaidAPI.getDiagramFromText()</code> now returns a new different db for each sequence diagram. Added unique IDs for messages.</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6205">#6205</a> <a href="https://github.com/mermaid-js/mermaid/commit/32a68d489ed83a5b79f516d6b2fb3a7505c5eb24"><code>32a68d4</code></a> Thanks <a href="https://github.com/saurabhg772244"><code>@​saurabhg772244</code></a>! - fix: Gantt, Sankey and User Journey diagram are now able to pick font-family from mermaid config.</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6295">#6295</a> <a href="https://github.com/mermaid-js/mermaid/commit/da6361f6527918b4b6a9c07cc9558cf2e2c709d2"><code>da6361f</code></a> Thanks <a href="https://github.com/omkarht"><code>@​omkarht</code></a>! - fix: <code>getDirection</code> and <code>setDirection</code> in <code>stateDb</code> refactored to return and set actual direction</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6185">#6185</a> <a href="https://github.com/mermaid-js/mermaid/commit/3e32332814c659e7ed1bb73d4a26ed4e61b77d59"><code>3e32332</code></a> Thanks <a href="https://github.com/saurabhg772244"><code>@​saurabhg772244</code></a>! - <code>mermaidAPI.getDiagramFromText()</code> now returns a new different db for each state diagram</p> </li> </ul> <h2>mermaid@11.4.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6059">#6059</a> <a href="https://github.com/mermaid-js/mermaid/commit/01b5079562ec8d34ce9964910f168873843c68f8"><code>01b5079</code></a> Thanks <a href="https://github.com/knsv"><code>@​knsv</code></a>! - fix: Kanban diagrams will not render when adding a number as ticket id or assigned for a task</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6038">#6038</a> <a href="https://github.com/mermaid-js/mermaid/commit/1388662132cc829f9820c2e9970ae04e2dd90588"><code>1388662</code></a> Thanks <a href="https://github.com/knsv"><code>@​knsv</code></a>! - fix: Intersection calculations for tilted cylinder/DAS when using handdrawn look. Some random seeds could cause the calculations to break.</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mermaid-js/mermaid/commit/41a737f6821df4cdeab75643984912b82c1dff7a"><code>41a737f</code></a> Merge pull request <a href="https://redirect.github.com/mermaid-js/mermaid/issues/6374">#6374</a> from mermaid-js/changeset-release/master</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/0c2e1bc3feaf17621aa8aef26c94ec0ebd547574"><code>0c2e1bc</code></a> Version Packages</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/f399561565c8f7d1a94702e09ffa699657327ff0"><code>f399561</code></a> Merge pull request <a href="https://redirect.github.com/mermaid-js/mermaid/issues/6373">#6373</a> from mermaid-js/release/11.5.0</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/05bdf0e20e2629fe77513218fbd4e28e65f75882"><code>05bdf0e</code></a> Added changeset</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/292cd8343950a6a3de625a72e84f4a8aa65514c9"><code>292cd83</code></a> Fix for multi-line row issue and failsafe for edge style for stroke not present</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/3848649bdd8bf3b3e00aad40953a7c8b22be6d80"><code>3848649</code></a> Merge <code>develop</code> into release/11.5.0</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/1341e3d1562afcc5625144c3e12faf08243d100d"><code>1341e3d</code></a> Added support for row odd/even in different themes</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/1d6a55a311555368bc3b7901c8db38a0bc5f348d"><code>1d6a55a</code></a> Merge pull request <a href="https://redirect.github.com/mermaid-js/mermaid/issues/6371">#6371</a> from mermaid-js/6369-mirror-edge-color-on-arrowhead</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/4d25caba8e65df078966a283e7e0ae1200bef595"><code>4d25cab</code></a> Added changeset</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/f6335571ccaeef97799def9a7d1e5a1e22a90c13"><code>f633557</code></a> test: Add test for edge marker color rendering</li> <li>Additional commits viewable in <a href="https://github.com/mermaid-js/mermaid/compare/v10.9.3...mermaid@11.5.0">compare view</a></li> </ul> </details> <br /> Updates `esbuild` from 0.20.2 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.20.2...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.14 to 6.2.1 <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>create-vite@6.2.1</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/create-vite@6.2.1/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v6.2.1</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.2.1/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>create-vite@6.2.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/create-vite@6.2.0/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v6.2.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.2.0/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v6.2.0-beta.1</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.2.0-beta.1/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v6.2.0-beta.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.2.0-beta.0/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>create-vite@6.1.1</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/create-vite@6.1.1/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v6.1.1</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.1.1/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>create-vite@6.1.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/create-vite@6.1.0/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v6.1.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.1.0/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v6.1.0-beta.2</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.1.0-beta.2/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v6.1.0-beta.1</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.1.0-beta.1/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v6.1.0-beta.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.1.0-beta.0/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v6.0.11</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.0.11/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v6.0.10</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.0.10/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v6.0.9</h2> <p>This version contains a breaking change due to security fixes. See <a href="https://github.com/vitejs/vite/security/advisories/GHSA-vg6x-rcgg-rjx6">https://github.com/vitejs/vite/security/advisories/GHSA-vg6x-rcgg-rjx6</a> for more details.</p> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.0.9/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md">vite's changelog</a>.</em></p> <blockquote> <h2><!-- raw HTML omitted -->6.2.1 (2025-03-07)<!-- raw HTML omitted --></h2> <ul> <li>refactor: remove <code>isBuild</code> check from preAliasPlugin (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19587">#19587</a>) (<a href="https://github.com/vitejs/vite/commit/c9e086d35ac35ee1c6d85d48369e8a67a2ba6bfe">c9e086d</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19587">#19587</a></li> <li>refactor: restore endsWith usage (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19554">#19554</a>) (<a href="https://github.com/vitejs/vite/commit/6113a9670cc9b7d29fe0bffe033f7823e36ded00">6113a96</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19554">#19554</a></li> <li>refactor: use <code>applyToEnvironment</code> in internal plugins (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19588">#19588</a>) (<a href="https://github.com/vitejs/vite/commit/f678442d5701a00648a745956f9d884247e4e710">f678442</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19588">#19588</a></li> <li>fix(css): stabilize css module hashes with lightningcss in dev mode (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19481">#19481</a>) (<a href="https://github.com/vitejs/vite/commit/92125b41e4caa3e862bf5fd9b1941546f25d9bf2">92125b4</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19481">#19481</a></li> <li>fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19555">#19555</a>) (<a href="https://github.com/vitejs/vite/commit/f612e0fdf6810317b61fcca1ded125755f261d78">f612e0f</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19555">#19555</a></li> <li>fix(reporter): fix incorrect bundle size calculation with non-ASCII characters (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19561">#19561</a>) (<a href="https://github.com/vitejs/vite/commit/437c0ed8baa6739bbe944779b9e7515f9035046a">437c0ed</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19561">#19561</a></li> <li>fix(sourcemap): combine sourcemaps with multiple sources without matched source (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18971">#18971</a>) (<a href="https://github.com/vitejs/vite/commit/e3f6ae14f7a93118d7341de7379967f815725c4b">e3f6ae1</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/18971">#18971</a></li> <li>fix(ssr): named export should overwrite export all (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19534">#19534</a>) (<a href="https://github.com/vitejs/vite/commit/2fd2fc110738622651d361488767734cc23c34dd">2fd2fc1</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19534">#19534</a></li> <li>feat: add <code>*?url&amp;no-inline</code> type and warning for <code>.json?inline</code> / <code>.json?no-inline</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19566">#19566</a>) (<a href="https://github.com/vitejs/vite/commit/c0d36677cd305e8fa89153ed6305f0e0df43d289">c0d3667</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19566">#19566</a></li> <li>test: add glob import test case (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19516">#19516</a>) (<a href="https://github.com/vitejs/vite/commit/aa1d8075cc7ce7fbba62fea9e37ccb9b304fc039">aa1d807</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19516">#19516</a></li> <li>test: convert config playground to unit tests (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19568">#19568</a>) (<a href="https://github.com/vitejs/vite/commit/c0e68da4774f3487e9ba0c4d4d2c5e76bdc890ea">c0e68da</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19568">#19568</a></li> <li>test: convert resolve-config playground to unit tests (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19567">#19567</a>) (<a href="https://github.com/vitejs/vite/commit/db5fb48f5d4c1ee411e59c1e9b70d62fdb9d53d2">db5fb48</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19567">#19567</a></li> <li>perf: flush compile cache after 10s (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19537">#19537</a>) (<a href="https://github.com/vitejs/vite/commit/6c8a5a27e645a182f5b03a4ed6aa726eab85993f">6c8a5a2</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19537">#19537</a></li> <li>chore(css): move environment destructuring after condition check (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19492">#19492</a>) (<a href="https://github.com/vitejs/vite/commit/c9eda2348c244d591d23f131c6ddf262b256cbf0">c9eda23</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19492">#19492</a></li> <li>chore(html): remove unnecessary value check (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19491">#19491</a>) (<a href="https://github.com/vitejs/vite/commit/797959f01da583b85a0be1dc89f762fd01d138db">797959f</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19491">#19491</a></li> </ul> <h2>6.2.0 (2025-02-25)</h2> <ul> <li>fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19501">#19501</a>) (<a href="https://github.com/vitejs/vite/commit/c94c9e052127cf4796374de1d698ec60b2973dfa">c94c9e0</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19501">#19501</a></li> <li>fix(worker): string interpolation in dynamic worker options (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19476">#19476</a>) (<a href="https://github.com/vitejs/vite/commit/07091a1e804e5934208ef0b6324a04317dd0d815">07091a1</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19476">#19476</a></li> <li>chore: use unicode cross icon instead of x (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19497">#19497</a>) (<a href="https://github.com/vitejs/vite/commit/5c70296ffb22fe5a0f4039835aa14feb096b4a97">5c70296</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19497">#19497</a></li> </ul> <h2>6.2.0-beta.1 (2025-02-21)</h2> <ul> <li>fix(css): temporary add <code>?.</code> after <code>this.getModuleInfo</code> in <code>vite:css-post</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19478">#19478</a>) (<a href="https://github.com/vitejs/vite/commit/12b0b8a953ad7d08ba0540cb4f5cb26a7fa69da2">12b0b8a</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19478">#19478</a></li> </ul> <h2>6.2.0-beta.0 (2025-02-21)</h2> <ul> <li>feat: show <code>mode</code> on server start and add env debugger (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18808">#18808</a>) (<a href="https://github.com/vitejs/vite/commit/c575b825596ccaedfac1cfecbb9a464e5e584a60">c575b82</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/18808">#18808</a></li> <li>feat: use host url to open browser (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19414">#19414</a>) (<a href="https://github.com/vitejs/vite/commit/f6926caa1f2c9433ca544172378412795722d8e1">f6926ca</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19414">#19414</a></li> <li>feat(css): allow scoping css to importers exports (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19418">#19418</a>) (<a href="https://github.com/vitejs/vite/commit/3ebd83833f723dde64098bc617c61b37adb3ad01">3ebd838</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19418">#19418</a></li> <li>chore: bump esbuild to 0.25.0 (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19389">#19389</a>) (<a href="https://github.com/vitejs/vite/commit/73987f22ec3f2df0d36154f1766ca7a7dc4c2460">73987f2</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19389">#19389</a></li> </ul> <h2><!-- raw HTML omitted -->6.1.1 (2025-02-19)<!-- raw HTML omitted --></h2> <ul> <li>fix: ensure <code>.[cm]?[tj]sx?</code> static assets are JS mime (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19453">#19453</a>) (<a href="https://github.com/vitejs/vite/commit/e7ba55e7d57ad97ab43682b152159e29fa4b3753">e7ba55e</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19453">#19453</a></li> <li>fix: ignore <code>*.ipv4</code> address in cert (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19416">#19416</a>) (<a href="https://github.com/vitejs/vite/commit/973283bf84c3dca42e2e20a9f9b8761011878b8b">973283b</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19416">#19416</a></li> <li>fix(css): run rewrite plugin if postcss plugin exists (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19371">#19371</a>) (<a href="https://github.com/vitejs/vite/commit/bcdb51a1ac082f4e8ed6f820787d6745dfaa972d">bcdb51a</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19371">#19371</a></li> <li>fix(deps): bump tsconfck (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19375">#19375</a>) (<a href="https://github.com/vitejs/vite/commit/746a583d42592a31e1e8e80cc790a7c9e6acf58e">746a583</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19375">#19375</a></li> <li>fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19392">#19392</a>) (<a href="https://github.com/vitejs/vite/commit/60456a54fe90872dbd4bed332ecbd85bc88deb92">60456a5</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19392">#19392</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitejs/vite/commit/d8461b5b4f2884105bab2175b86af4aac521cb5c"><code>d8461b5</code></a> release: v6.2.0</li> <li><a href="https://github.com/vitejs/vite/commit/c94c9e052127cf4796374de1d698ec60b2973dfa"><code>c94c9e0</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19501">#19501</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/5c70296ffb22fe5a0f4039835aa14feb096b4a97"><code>5c70296</code></a> chore: use unicode cross icon instead of x (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19497">#19497</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/07091a1e804e5934208ef0b6324a04317dd0d815"><code>07091a1</code></a> fix(worker): string interpolation in dynamic worker options (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19476">#19476</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/e01573a5757420041530d47f707c720da5fe2231"><code>e01573a</code></a> release: v6.2.0-beta.1</li> <li><a href="https://github.com/vitejs/vite/commit/12b0b8a953ad7d08ba0540cb4f5cb26a7fa69da2"><code>12b0b8a</code></a> fix(css): temporary add <code>?.</code> after <code>this.getModuleInfo</code> in <code>vite:css-post</code> (#...</li> <li><a href="https://github.com/vitejs/vite/commit/d686252c1d86527759a07eb0aae9f3aea505e3fa"><code>d686252</code></a> release: v6.2.0-beta.0</li> <li><a href="https://github.com/vitejs/vite/commit/3ebd83833f723dde64098bc617c61b37adb3ad01"><code>3ebd838</code></a> feat(css): allow scoping css to importers exports (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19418">#19418</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/f6926caa1f2c9433ca544172378412795722d8e1"><code>f6926ca</code></a> feat: use host url to open browser (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19414">#19414</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/c575b825596ccaedfac1cfecbb9a464e5e584a60"><code>c575b82</code></a> feat: show <code>mode</code> on server start and add env debugger (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18808">#18808</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vitejs/vite/commits/create-vite@6.2.1/packages/vite">compare view</a></li> </ul> </details> <br /> Updates `i18next-parser` from 9.0.1 to 9.3.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/i18next/i18next-parser/blob/master/CHANGELOG.md">i18next-parser's changelog</a>.</em></p> <blockquote> <h1>9.3.0</h1> <ul> <li>Allow to use multiple translation functions with different namespaces and keyPrefixes <a href="https://redirect.github.com/i18next/i18next-parser/issues/1083">#1083</a> <a href="https://redirect.github.com/i18next/i18next-parser/issues/494">#494</a> <a href="https://redirect.github.com/i18next/i18next-parser/issues/973">#973</a> <a href="https://redirect.github.com/i18next/i18next-parser/issues/737">#737</a></li> </ul> <h1>9.2.0</h1> <ul> <li>Support nested property namespace functions in namespaceFunctions <a href="https://redirect.github.com/i18next/i18next-parser/issues/1104">#1104</a> <a href="https://redirect.github.com/i18next/i18next-parser/issues/1103">#1103</a></li> <li>Update dependencies</li> </ul> <h1>9.1.0</h1> <ul> <li>Add support for i18next 24 <a href="https://redirect.github.com/i18next/i18next-parser/issues/1090">#1090</a> <a href="https://redirect.github.com/i18next/i18next-parser/issues/1093">#1093</a></li> <li>Add namespace information to duplicate warnings <a href="https://redirect.github.com/i18next/i18next-parser/issues/1091">#1091</a></li> <li>Update dependencies</li> </ul> <h1>9.0.2</h1> <ul> <li>Fix cheerio dependency <a href="https://redirect.github.com/i18next/i18next-parser/issues/1045">#1045</a></li> <li>Update dependencies</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/i18next/i18next-parser/commits">compare view</a></li> </ul> </details> <br /> Updates `vitest` from 1.6.1 to 3.0.8 <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.0.8</h2> <h3>   🐞 Bug Fixes</h3> <ul> <li>Fix fetch cache multiple writes  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7546">vitest-dev/vitest#7546</a> <a href="https://github.com/vitest-dev/vitest/commit/1a8b4337"><!-- raw HTML omitted -->(1a8b4)<!-- raw HTML omitted --></a></li> <li>Use browser.isolate instead of config.isolate  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7560">vitest-dev/vitest#7560</a> <a href="https://github.com/vitest-dev/vitest/commit/4b5ed902"><!-- raw HTML omitted -->(4b5ed)<!-- raw HTML omitted --></a></li> <li>Remove vestigial spy stub, import directly from <code>@vitest/spy</code>  -  by <a href="https://github.com/mrginglymus"><code>@​mrginglymus</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7575">vitest-dev/vitest#7575</a> <a href="https://github.com/vitest-dev/vitest/commit/7f7ff11c"><!-- raw HTML omitted -->(7f7ff)<!-- raw HTML omitted --></a></li> <li>Correctly split the argv string  -  by <a href="https://github.com/btea"><code>@​btea</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7533">vitest-dev/vitest#7533</a> <a href="https://github.com/vitest-dev/vitest/commit/4325ac67"><!-- raw HTML omitted -->(4325a)<!-- raw HTML omitted --></a></li> <li><strong>browser</strong>: <ul> <li>Remove <code>@​testing-library/dom</code> from dependencies  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7555">vitest-dev/vitest#7555</a> <a href="https://github.com/vitest-dev/vitest/commit/5387a5b3"><!-- raw HTML omitted -->(5387a)<!-- raw HTML omitted --></a></li> <li>Improve source map handling for bundled files  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7534">vitest-dev/vitest#7534</a> <a href="https://github.com/vitest-dev/vitest/commit/e2c570b6"><!-- raw HTML omitted -->(e2c57)<!-- raw HTML omitted --></a></li> <li>Print related test file and potential test in unhandled errors  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7564">vitest-dev/vitest#7564</a> <a href="https://github.com/vitest-dev/vitest/commit/fee90d85"><!-- raw HTML omitted -->(fee90)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>runner</strong>: <ul> <li>Fix <code>beforeEach/All</code> cleanup callback timeout  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7500">vitest-dev/vitest#7500</a> <a href="https://github.com/vitest-dev/vitest/commit/0c2924b7"><!-- raw HTML omitted -->(0c292)<!-- raw HTML omitted --></a></li> <li>Fix and simplify <code>Task.suite</code> 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/7414">vitest-dev/vitest#7414</a> <a href="https://github.com/vitest-dev/vitest/commit/ca9ffac5"><!-- raw HTML omitted -->(ca9ff)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>snapshot</strong>: <ul> <li>Allow inline snapshot calls on same location with same snapshot  -  by <a href="https://github.com/jycouet"><code>@​jycouet</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/7464">vitest-dev/vitest#7464</a> <a href="https://github.com/vitest-dev/vitest/commit/d5cb8212"><!-- raw HTML omitted -->(d5cb8)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>vite-node</strong>: <ul> <li>Fix <code>buildStart</code> on Vite 6  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7480">vitest-dev/vitest#7480</a> <a href="https://github.com/vitest-dev/vitest/commit/c0f47e03"><!-- raw HTML omitted -->(c0f47)<!-- raw HTML omitted --></a></li> </ul> </li> </ul> <h5>    <a href="https://github.com/vitest-dev/vitest/compare/v3.0.7...v3.0.8">View changes on GitHub</a></h5> <h2>v3.0.7</h2> <h3>   🐞 Bug Fixes</h3> <ul> <li><strong>browser</strong>: Support webdriverio 9  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7553">vitest-dev/vitest#7553</a> <a href="https://github.com/vitest-dev/vitest/commit/b1949c97"><!-- raw HTML omitted -->(b1949)<!-- 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/7543">vitest-dev/vitest#7543</a> <a href="https://github.com/vitest-dev/vitest/commit/365ffe6b"><!-- raw HTML omitted -->(365ff)<!-- raw HTML omitted --></a></li> <li><strong>expect</strong>: Correct generic MatchersObject this type in expect.extend  -  by <a href="https://github.com/Workingstiff-s"><code>@​Workingstiff-s</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7526">vitest-dev/vitest#7526</a> <a href="https://github.com/vitest-dev/vitest/commit/d5765f71"><!-- raw HTML omitted -->(d5765)<!-- raw HTML omitted --></a></li> <li><strong>mocker</strong>: Include more modules to prefix-only module list  -  by <a href="https://github.com/btea"><code>@​btea</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7524">vitest-dev/vitest#7524</a> <a href="https://github.com/vitest-dev/vitest/commit/a12ec008"><!-- raw HTML omitted -->(a12ec)<!-- raw HTML omitted --></a></li> <li><strong>spy</strong>: Clear/reset/restore mocks in stack order  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7499">vitest-dev/vitest#7499</a> <a href="https://github.com/vitest-dev/vitest/commit/f71004ff"><!-- raw HTML omitted -->(f7100)<!-- raw HTML omitted --></a></li> </ul> <h3>   🏎 Performance</h3> <ul> <li><strong>browser</strong>: Do wdio context switching only once per file  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7549">vitest-dev/vitest#7549</a> <a href="https://github.com/vitest-dev/vitest/commit/aaa58556"><!-- raw HTML omitted -->(aaa58)<!-- raw HTML omitted --></a></li> </ul> <h5>    <a href="https://github.com/vitest-dev/vitest/compare/v3.0.6...v3.0.7">View changes on GitHub</a></h5> <h2>v3.0.6</h2> <h3>   🐞 Bug Fixes</h3> <ul> <li>Fix <code>getMockedSystemTime</code> for <code>useFakeTimer</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/7405">vitest-dev/vitest#7405</a> <a href="https://github.com/vitest-dev/vitest/commit/03912b43"><!-- raw HTML omitted -->(03912)<!-- raw HTML omitted --></a></li> <li>Compat for jest-image-snapshot  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7390">vitest-dev/vitest#7390</a> <a href="https://github.com/vitest-dev/vitest/commit/9542b699"><!-- raw HTML omitted -->(9542b)<!-- raw HTML omitted --></a></li> <li>Ensure project names are readable in dark terminals  -  by <a href="https://github.com/rgrove"><code>@​rgrove</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7371">vitest-dev/vitest#7371</a> <a href="https://github.com/vitest-dev/vitest/commit/bb94c19f"><!-- raw HTML omitted -->(bb94c)<!-- raw HTML omitted --></a></li> <li>Exclude <code>queueMicrotask</code> from default fake timers to not break node fetch  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/pull/7505">vitest-dev/vitest#7505</a> <a href="https://github.com/vitest-dev/vitest/commit/167a98d7"><!-- raw HTML omitted -->(167a9)<!-- raw HTML omitted --></a></li> <li>Use <code>tinyglobby</code> instead of <code>fast-glob</code>  -  by <a href="https://github.com/benmccann"><code>@​benmccann</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7504">vitest-dev/vitest#7504</a> <a href="https://github.com/vitest-dev/vitest/commit/b62ac22"><!-- raw HTML omitted -->(b62ac)<!-- raw HTML omitted --></a></li> <li><strong>browser</strong>: <ul> <li>Fix mocking modules out 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/7415">vitest-dev/vitest#7415</a> <a href="https://github.com/vitest-dev/vitest/commit/d3acbd8b"><!-- raw HTML omitted -->(d3acb)<!-- raw HTML omitted --></a></li> <li>Fix <code>toHaveClass</code> typing  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7383">vitest-dev/vitest#7383</a> <a href="https://github.com/vitest-dev/vitest/commit/7ef238c0"><!-- raw HTML omitted -->(7ef23)<!-- r... _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-20 04:23:19 -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#22771