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

Closed
opened 2026-04-25 12:18:27 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/16786
Author: @dependabot[bot]
Created: 8/21/2025
Status: Closed

Base: mainHead: dependabot/npm_and_yarn/npm_and_yarn-f3a9f20992


📝 Commits (1)

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

📊 Changes

2 files changed (+645 additions, -984 deletions)

View changed files

📝 package-lock.json (+640 -979)
📝 package.json (+5 -5)

📄 Description

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

Package From To
mermaid 11.6.0 11.10.0
vite-plugin-static-copy 2.2.0 2.3.2
esbuild 0.21.5 0.25.1
@sveltejs/vite-plugin-svelte 3.1.1 6.1.3
vite 5.4.19 7.1.3
vitest 1.6.1 3.2.4
tmp 0.2.3 0.2.5

Updates mermaid from 11.6.0 to 11.10.0

Release notes

Sourced from mermaid's releases.

mermaid@11.10.0

Minor Changes

Patch Changes

  • #6857 b9ef683 Thanks @​knsv! - feat: Exposing elk configuration forceNodeModelOrder and considerModelOrder to the mermaid configuration

  • #6653 2c0931d Thanks @​darshanr0107! - chore: Remove the "-beta" suffix from the XYChart, Block, Sankey diagrams to reflect their stable status

  • #6683 33e08da Thanks @​darshanr0107! - fix: Position the edge label in state diagram correctly relative to the edge

  • #6693 814b68b Thanks @​darshanr0107! - fix: Apply correct dateFormat in Gantt chart to show only day when specified

  • #6734 fce7cab Thanks @​darshanr0107! - fix: handle exclude dates properly in Gantt charts when using dateFormat: 'YYYY-MM-DD HH:mm:ss'

  • #6733 fc07f0d Thanks @​omkarht! - fix: fixed connection gaps in flowchart for roundedRect, stadium and diamond shape

  • #6876 12e01bd Thanks @​sidharthv96! - fix: sanitize icon labels and icon SVGs

    Resolves CVE-2025-54880 reported by @​fourcube

  • #6801 01aaef3 Thanks @​sidharthv96! - fix: Update casing of ID in requirement diagram

  • #6796 c36cd05 Thanks @​HashanCP! - fix: Make flowchart elk detector regex match less greedy

  • #6702 8bb29fc Thanks @​qraqras! - fix(block): overflowing blocks no longer affect later lines

    This may change the layout of block diagrams that have overflowing lines (i.e. block diagrams that use up more columns that the columns specifier).

  • #6717 71b04f9 Thanks @​darshanr0107! - fix: log warning for blocks exceeding column width

    This update adds a validation check that logs a warning message when a block's width exceeds the defined column layout.

  • #6820 c99bce6 Thanks @​kriss-u! - fix: Add escaped class literal name on namespace

  • #6332 6cc1926 Thanks @​ajuckel! - fix: Allow equals sign in sequenceDiagram labels

  • #6651 9da6fb3 Thanks @​darshanr0107! - Add validation for negative values in pie charts:

    Prevents crashes during parsing by validating values post-parsing.

    Provides clearer, user-friendly error messages for invalid negative inputs.

  • #6803 e48b0ba Thanks @​omkarht! - chore: migrate to class-based ArchitectureDB implementation

  • #6838 4d62d59 Thanks @​saurabhg772244! - fix: node border style for handdrawn shapes

... (truncated)

Commits
  • 96778f7 Merge pull request #6880 from mermaid-js/changeset-release/master
  • d4c058b Version Packages
  • b638a0a temp: Remove peerDeps from examples
  • fd9aa36 chore: Update peerDependencies for examples
  • 46a9f1b temp: Disable cspell check as it's blocking release
  • 83c6224 Merge pull request #6878 from mermaid-js/develop
  • d8161b1 fix: move fourcube to contributor
  • 8223141 chore: add fourcube to cspell
  • 99f98a6 Merge pull request #6877 from mermaid-js/update-timings
  • ef28f54 chore: update E2E timings
  • Additional commits viewable in compare view

Updates vite-plugin-static-copy from 2.2.0 to 2.3.2

Release notes

Sourced from vite-plugin-static-copy's releases.

vite-plugin-static-copy@2.3.2

Patch Changes

vite-plugin-static-copy@2.3.1

Patch Changes

vite-plugin-static-copy@2.3.0

Minor Changes

Patch Changes

Changelog

Sourced from vite-plugin-static-copy's changelog.

2.3.2

Patch Changes

2.3.1

Patch Changes

2.3.0

Minor Changes

Patch Changes

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 6.1.3

Release notes

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

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

Patch Changes

  • fix(api): add api.filter and deprecate api.idFilter to avoid confusing filter.id = idFilter.id assignments when used as hybrid filter in other plugins (#1199)

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

Patch Changes

  • fix: ensure compiled css is returned when reloading during dev with ssr (e.g. SvelteKit) (#1194)

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

Patch Changes

  • fix: ensure compiled svelte css is loaded correctly when rebuilding in build --watch (#1189)

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

Minor Changes

  • feat: add support for the new experimental.async option and apply dynamicCompileOptions when compiling Svelte modules (#1176)

Patch Changes

  • skip comment blocks when reporting compiler errors that might be caused by a preprocessor issue (#1166)

  • increase logLevel to info for "no Svelte config found" message (#1179)

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

Major Changes

  • drop support for node18 and update exports map to use default export. cjs is supported via require esm in node 20.19+ (#1129)

  • Remove experimental "advanced raw queries" feature. Basic File.svelte?raw is still supported. (#1145)

  • Using the typescript preprocessor now requires a tsconfig.json with verbatimModuleSyntax enabled, eg @​tsconfig/svelte (#1135)

  • remove support for loading commonjs svelte config files (#1142)

  • bump vite peer dependency to ^6.3.0 || ^7.0.0 (#1130)

  • define filters using object hook syntax and optimize the filter for resolveId (#1132)

    NOTE include logic has changed to files matching svelteConfig.include OR svelteConfig.extensions. Previously only files matching both were loaded and transformed.

... (truncated)

Changelog

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

6.1.3

Patch Changes

  • fix(api): add api.filter and deprecate api.idFilter to avoid confusing filter.id = idFilter.id assignments when used as hybrid filter in other plugins (#1199)

6.1.2

Patch Changes

  • fix: ensure compiled css is returned when reloading during dev with ssr (e.g. SvelteKit) (#1194)

6.1.1

Patch Changes

  • fix: ensure compiled svelte css is loaded correctly when rebuilding in build --watch (#1189)

6.1.0

Minor Changes

  • feat: add support for the new experimental.async option and apply dynamicCompileOptions when compiling Svelte modules (#1176)

Patch Changes

  • skip comment blocks when reporting compiler errors that might be caused by a preprocessor issue (#1166)

  • increase logLevel to info for "no Svelte config found" message (#1179)

6.0.0

Major Changes

  • drop support for node18 and update exports map to use default export. cjs is supported via require esm in node 20.19+ (#1129)

  • Remove experimental "advanced raw queries" feature. Basic File.svelte?raw is still supported. (#1145)

  • Using the typescript preprocessor now requires a tsconfig.json with verbatimModuleSyntax enabled, eg @​tsconfig/svelte (#1135)

  • remove support for loading commonjs svelte config files (#1142)

  • bump vite peer dependency to ^6.3.0 || ^7.0.0 (#1130)

... (truncated)

Commits

Updates vite from 5.4.19 to 7.1.3

Release notes

Sourced from vite's releases.

v7.1.3

Please refer to CHANGELOG.md for details.

v7.1.2

Please refer to CHANGELOG.md for details.

v7.1.1

Please refer to CHANGELOG.md for details.

create-vite@7.1.1

Please refer to CHANGELOG.md for details.

plugin-legacy@7.1.0

Please refer to CHANGELOG.md for details.

create-vite@7.1.0

Please refer to CHANGELOG.md for details.

v7.1.0

Please refer to CHANGELOG.md for details.

v7.1.0-beta.1

Please refer to CHANGELOG.md for details.

v7.1.0-beta.0

Please refer to CHANGELOG.md for details.

v7.0.6

Please refer to CHANGELOG.md for details.

v7.0.5

Please refer to CHANGELOG.md for details.

v7.0.4

Please refer to CHANGELOG.md for details.

v7.0.3

Please refer to CHANGELOG.md for details.

create-vite@7.0.3

Please refer to CHANGELOG.md for details.

v7.0.2

Please refer to CHANGELOG.md for details.

create-vite@7.0.2

Please refer to CHANGELOG.md for details.

v7.0.1

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from vite's changelog.

7.1.3 (2025-08-19)

Features

  • cli: add Node.js version warning for unsupported versions (#20638) (a1be1bf)
  • generate code frame for parse errors thrown by terser (#20642) (a9ba017)
  • support long lines in generateCodeFrame (#20640) (1559577)

Bug Fixes

  • deps: update all non-major dependencies (#20634) (4851cab)
  • optimizer: incorrect incompatible error (#20439) (446fe83)
  • support multiline new URL(..., import.meta.url) expressions (#20644) (9ccf142)

Performance Improvements

Miscellaneous Chores

Code Refactoring

Tests

7.1.2 (2025-08-12)

Bug Fixes

  • client: add [vite] prefixes to debug logs (#20595) (7cdef61)
  • config: make debugger work with bundle loader (#20573) (c583927)
  • deps: update all non-major dependencies (#20587) (20d4817)
  • don't consider ids with npm: prefix as a built-in module (#20558) (ab33803)
  • hmr: watch non-inlined assets referenced by CSS (#20581) (b7d494b)
  • module-runner: prevent crash when sourceMappingURL pattern appears in string literals (#20554) (2770478)

Miscellaneous Chores

  • deps: migrate to @jridgewell/remapping from @ampproject/remapping (#20577) (0a6048a)
  • deps: update rolldown-related dependencies (#20586) (77632c5)

7.1.1 (2025-08-08)

Bug Fixes

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for vite since your current version.


Updates vitest from 1.6.1 to 3.2.4

Release notes

Sourced from vitest's releases.

v3.2.4

   🐞 Bug Fixes

    View changes on GitHub

v3.2.3

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v3.2.2

... (truncated)

Commits
  • c666d14 chore: release v3.2.4
  • 8a18c8e fix(cli): throw error when --shard x/\<count> exceeds count of test files (#...
  • 8abd7cc chore(deps): update tinypool (#8174)
  • 93f3200 fix(deps): update all non-major dependencies (#8123)
  • 0c3be6f fix(coverage): ignore SCSS in browser mode (#8161)
  • 790bc31 chore: update deprecation notice for globs (#8148)
  • c0eae7d chore: update deprecated workspace file log (#8118)
  • 14dc072 fix(pool): auto-adjust minWorkers when only maxWorkers specified (#8110)
  • 85dc019 fix(cli): use absolute path environment on Windows (#8105)
  • 27df68a fix(reporter): task.meta should be available in custom reporter's errors (#...
  • Additional commits viewable in compare view

Updates tmp from 0.2.3 to 0.2.5

Commits

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

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/16786 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 8/21/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/npm_and_yarn-f3a9f20992` --- ### 📝 Commits (1) - [`d4ddfbe`](https://github.com/open-webui/open-webui/commit/d4ddfbe3b6a02073a796c264f3d80ab602605726) chore(deps): bump the npm_and_yarn group across 1 directory with 7 updates ### 📊 Changes **2 files changed** (+645 additions, -984 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+640 -979) 📝 `package.json` (+5 -5) </details> ### 📄 Description Bumps the npm_and_yarn group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [mermaid](https://github.com/mermaid-js/mermaid) | `11.6.0` | `11.10.0` | | [vite-plugin-static-copy](https://github.com/sapphi-red/vite-plugin-static-copy) | `2.2.0` | `2.3.2` | | [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` | `6.1.3` | | [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.4.19` | `7.1.3` | | [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `1.6.1` | `3.2.4` | | [tmp](https://github.com/raszi/node-tmp) | `0.2.3` | `0.2.5` | Updates `mermaid` from 11.6.0 to 11.10.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.10.0</h2> <h3>Minor Changes</h3> <ul> <li><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6744">#6744</a> <a href="https://github.com/mermaid-js/mermaid/commit/daf8d8d3befcd600618a629977b76463b38d0ad9"><code>daf8d8d</code></a> Thanks <a href="https://github.com/SpecularAura"><code>@​SpecularAura</code></a>! - feat: Added support for per link curve styling in flowchart diagram using edge ids</li> </ul> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6857">#6857</a> <a href="https://github.com/mermaid-js/mermaid/commit/b9ef683fb67b8959abc455d6cc5266c37ba435f6"><code>b9ef683</code></a> Thanks <a href="https://github.com/knsv"><code>@​knsv</code></a>! - feat: Exposing elk configuration forceNodeModelOrder and considerModelOrder to the mermaid configuration</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6653">#6653</a> <a href="https://github.com/mermaid-js/mermaid/commit/2c0931da46794b49d2523211e25f782900c34e94"><code>2c0931d</code></a> Thanks <a href="https://github.com/darshanr0107"><code>@​darshanr0107</code></a>! - chore: Remove the &quot;-beta&quot; suffix from the XYChart, Block, Sankey diagrams to reflect their stable status</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6683">#6683</a> <a href="https://github.com/mermaid-js/mermaid/commit/33e08daf175125295a06b1b80279437004a4e865"><code>33e08da</code></a> Thanks <a href="https://github.com/darshanr0107"><code>@​darshanr0107</code></a>! - fix: Position the edge label in state diagram correctly relative to the edge</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6693">#6693</a> <a href="https://github.com/mermaid-js/mermaid/commit/814b68b4a94813f7c6b3d7fb4559532a7bab2652"><code>814b68b</code></a> Thanks <a href="https://github.com/darshanr0107"><code>@​darshanr0107</code></a>! - fix: Apply correct dateFormat in Gantt chart to show only day when specified</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6734">#6734</a> <a href="https://github.com/mermaid-js/mermaid/commit/fce7cabb71d68a20a66246fe23d066512126a412"><code>fce7cab</code></a> Thanks <a href="https://github.com/darshanr0107"><code>@​darshanr0107</code></a>! - fix: handle exclude dates properly in Gantt charts when using dateFormat: 'YYYY-MM-DD HH:mm:ss'</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6733">#6733</a> <a href="https://github.com/mermaid-js/mermaid/commit/fc07f0d8abca49e4f887d7457b7b94fb07d1e3da"><code>fc07f0d</code></a> Thanks <a href="https://github.com/omkarht"><code>@​omkarht</code></a>! - fix: fixed connection gaps in flowchart for roundedRect, stadium and diamond shape</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6876">#6876</a> <a href="https://github.com/mermaid-js/mermaid/commit/12e01bdb5cacf3569133979a5a4f1d8973e9aec1"><code>12e01bd</code></a> Thanks <a href="https://github.com/sidharthv96"><code>@​sidharthv96</code></a>! - fix: sanitize icon labels and icon SVGs</p> <p>Resolves CVE-2025-54880 reported by <a href="https://github.com/fourcube"><code>@​fourcube</code></a></p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6801">#6801</a> <a href="https://github.com/mermaid-js/mermaid/commit/01aaef39b4a1ec8bc5a0c6bfa3a20b712d67f4dc"><code>01aaef3</code></a> Thanks <a href="https://github.com/sidharthv96"><code>@​sidharthv96</code></a>! - fix: Update casing of ID in requirement diagram</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6796">#6796</a> <a href="https://github.com/mermaid-js/mermaid/commit/c36cd05c45ac3090181152b4dae41f8d7b569bd6"><code>c36cd05</code></a> Thanks <a href="https://github.com/HashanCP"><code>@​HashanCP</code></a>! - fix: Make flowchart elk detector regex match less greedy</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6702">#6702</a> <a href="https://github.com/mermaid-js/mermaid/commit/8bb29fc879329ad109898e4025b4f4eba2ab0649"><code>8bb29fc</code></a> Thanks <a href="https://github.com/qraqras"><code>@​qraqras</code></a>! - fix(block): overflowing blocks no longer affect later lines</p> <p>This may change the layout of block diagrams that have overflowing lines (i.e. block diagrams that use up more columns that the <code>columns</code> specifier).</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6717">#6717</a> <a href="https://github.com/mermaid-js/mermaid/commit/71b04f93b07f876df2b30656ef36036c1d0e4e4f"><code>71b04f9</code></a> Thanks <a href="https://github.com/darshanr0107"><code>@​darshanr0107</code></a>! - fix: log warning for blocks exceeding column width</p> <p>This update adds a validation check that logs a warning message when a block's width exceeds the defined column layout.</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6820">#6820</a> <a href="https://github.com/mermaid-js/mermaid/commit/c99bce6bab4c7ce0b81b66d44f44853ce4aeb1c3"><code>c99bce6</code></a> Thanks <a href="https://github.com/kriss-u"><code>@​kriss-u</code></a>! - fix: Add escaped class literal name on namespace</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6332">#6332</a> <a href="https://github.com/mermaid-js/mermaid/commit/6cc192680a2531cab28f87a8061a53b786e010f3"><code>6cc1926</code></a> Thanks <a href="https://github.com/ajuckel"><code>@​ajuckel</code></a>! - fix: Allow equals sign in sequenceDiagram labels</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6651">#6651</a> <a href="https://github.com/mermaid-js/mermaid/commit/9da6fb39ae278401771943ac85d6d1b875f78cf1"><code>9da6fb3</code></a> Thanks <a href="https://github.com/darshanr0107"><code>@​darshanr0107</code></a>! - Add validation for negative values in pie charts:</p> <p>Prevents crashes during parsing by validating values post-parsing.</p> <p>Provides clearer, user-friendly error messages for invalid negative inputs.</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6803">#6803</a> <a href="https://github.com/mermaid-js/mermaid/commit/e48b0ba61dab7f95aa02da603b5b7d383b894932"><code>e48b0ba</code></a> Thanks <a href="https://github.com/omkarht"><code>@​omkarht</code></a>! - chore: migrate to class-based ArchitectureDB implementation</p> </li> <li> <p><a href="https://redirect.github.com/mermaid-js/mermaid/pull/6838">#6838</a> <a href="https://github.com/mermaid-js/mermaid/commit/4d62d5963238400270e9314c6e4d506f48147074"><code>4d62d59</code></a> Thanks <a href="https://github.com/saurabhg772244"><code>@​saurabhg772244</code></a>! - fix: node border style for handdrawn shapes</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/96778f77898c02489ba0d33c874eca4370e21205"><code>96778f7</code></a> Merge pull request <a href="https://redirect.github.com/mermaid-js/mermaid/issues/6880">#6880</a> from mermaid-js/changeset-release/master</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/d4c058bd565d6be1319d52df8320eb5d80edb96e"><code>d4c058b</code></a> Version Packages</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/b638a0a9c1edac9614a45354e7d1a3d5446d15ed"><code>b638a0a</code></a> temp: Remove peerDeps from examples</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/fd9aa36c77bdb1dc7026953effc7fffa48594b45"><code>fd9aa36</code></a> chore: Update peerDependencies for examples</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/46a9f1b31ed2d8b74d8faffcbb4fb97fee1c4d71"><code>46a9f1b</code></a> temp: Disable cspell check as it's blocking release</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/83c6224cc0159fb5d17fec1cbe8fe4ce052509a4"><code>83c6224</code></a> Merge pull request <a href="https://redirect.github.com/mermaid-js/mermaid/issues/6878">#6878</a> from mermaid-js/develop</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/d8161b1923718f12884d94cf80590fe35cfb55df"><code>d8161b1</code></a> fix: move fourcube to contributor</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/8223141af9d243eb2664f1ae699ce7f90af7b8c8"><code>8223141</code></a> chore: add fourcube to cspell</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/99f98a6876c8fafa375376a44c75d1f047ae7190"><code>99f98a6</code></a> Merge pull request <a href="https://redirect.github.com/mermaid-js/mermaid/issues/6877">#6877</a> from mermaid-js/update-timings</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/ef28f548dfcff5ffe52a9207d1a9c739e99994fe"><code>ef28f54</code></a> chore: update E2E timings</li> <li>Additional commits viewable in <a href="https://github.com/mermaid-js/mermaid/compare/mermaid@11.6.0...mermaid@11.10.0">compare view</a></li> </ul> </details> <br /> Updates `vite-plugin-static-copy` from 2.2.0 to 2.3.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/sapphi-red/vite-plugin-static-copy/releases">vite-plugin-static-copy's releases</a>.</em></p> <blockquote> <h2>vite-plugin-static-copy@2.3.2</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/4627afb8582083eab733881d3d974e1c1f23997d"><code>4627afb</code></a> Thanks <a href="https://github.com/sapphi-red"><code>@​sapphi-red</code></a>! - Files not included in <code>src</code> was possible to acess with a crafted request. See <a href="https://github.com/sapphi-red/vite-plugin-static-copy/security/advisories/GHSA-pp7p-q8fx-2968">GHSA-pp7p-q8fx-2968</a> for more details.</li> </ul> <h2>vite-plugin-static-copy@2.3.1</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/pull/152">#152</a> <a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/6aee6a3d8caf6d08bedeb4c97fb7580fd904b895"><code>6aee6a3</code></a> Thanks <a href="https://github.com/sapphi-red"><code>@​sapphi-red</code></a>! - improve performance of internal <code>isSubdirectoryOrEqual</code> function</li> </ul> <h2>vite-plugin-static-copy@2.3.0</h2> <h3>Minor Changes</h3> <ul> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/281f5b22aaa23a055af93553da8c84932ef31c41"><code>281f5b2</code></a> Thanks <a href="https://github.com/sapphi-red"><code>@​sapphi-red</code></a>! - improve performance by coping files concurrently when possible</li> </ul> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/pull/149">#149</a> <a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/a9f35c9557b0ab710006c83418c3c982c2eb746e"><code>a9f35c9</code></a> Thanks <a href="https://github.com/sapphi-red"><code>@​sapphi-red</code></a>! - ensure <code>.[cm]?[tj]sx?</code> static assets are JS mime to align with Vite. <a href="https://redirect.github.com/vitejs/vite/pull/19453">vitejs/vite#19453</a></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/sapphi-red/vite-plugin-static-copy/blob/vite-plugin-static-copy@2.3.2/CHANGELOG.md">vite-plugin-static-copy's changelog</a>.</em></p> <blockquote> <h2>2.3.2</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/4627afb8582083eab733881d3d974e1c1f23997d"><code>4627afb</code></a> Thanks <a href="https://github.com/sapphi-red"><code>@​sapphi-red</code></a>! - Files not included in <code>src</code> was possible to acess with a crafted request. See <a href="https://github.com/sapphi-red/vite-plugin-static-copy/security/advisories/GHSA-pp7p-q8fx-2968">GHSA-pp7p-q8fx-2968</a> for more details.</li> </ul> <h2>2.3.1</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/pull/152">#152</a> <a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/6aee6a3d8caf6d08bedeb4c97fb7580fd904b895"><code>6aee6a3</code></a> Thanks <a href="https://github.com/sapphi-red"><code>@​sapphi-red</code></a>! - improve performance of internal <code>isSubdirectoryOrEqual</code> function</li> </ul> <h2>2.3.0</h2> <h3>Minor Changes</h3> <ul> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/281f5b22aaa23a055af93553da8c84932ef31c41"><code>281f5b2</code></a> Thanks <a href="https://github.com/sapphi-red"><code>@​sapphi-red</code></a>! - improve performance by coping files concurrently when possible</li> </ul> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/pull/149">#149</a> <a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/a9f35c9557b0ab710006c83418c3c982c2eb746e"><code>a9f35c9</code></a> Thanks <a href="https://github.com/sapphi-red"><code>@​sapphi-red</code></a>! - ensure <code>.[cm]?[tj]sx?</code> static assets are JS mime to align with Vite. <a href="https://redirect.github.com/vitejs/vite/pull/19453">vitejs/vite#19453</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/326a79fb29bd082a876f59681d2d61e488267331"><code>326a79f</code></a> chore: update versions (<a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/issues/197">#197</a>)</li> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/0f39cad26e703a09ab6b10049a5ba455e14ad8c8"><code>0f39cad</code></a> ci: run release against <code>v*</code> branches</li> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/4627afb8582083eab733881d3d974e1c1f23997d"><code>4627afb</code></a> fix: only serve files under <code>src</code> (<a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/issues/195">#195</a>)</li> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/08cafec9b7562b76244aeff460328898724aac16"><code>08cafec</code></a> chore: update versions (<a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/issues/154">#154</a>)</li> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/6aee6a3d8caf6d08bedeb4c97fb7580fd904b895"><code>6aee6a3</code></a> perf: improve <code>isSubdirectoryOrEqual</code> performance (<a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/issues/152">#152</a>)</li> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/5f707b6103044ecff36791efee26b33ecf689b41"><code>5f707b6</code></a> chore: update versions (<a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/issues/147">#147</a>)</li> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/26cbffedd9dfa5241e3cd9269b660f1ea8bd23ea"><code>26cbffe</code></a> chore: update pnpm to v10</li> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/a9f35c9557b0ab710006c83418c3c982c2eb746e"><code>a9f35c9</code></a> fix: ensure <code>.[cm]?[tj]sx?</code> static assets are JS mime (<a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/issues/149">#149</a>)</li> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/94b04d5edde8eca46da38f504435901ee35e327c"><code>94b04d5</code></a> chore: update packages (<a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/issues/148">#148</a>)</li> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/281f5b22aaa23a055af93553da8c84932ef31c41"><code>281f5b2</code></a> chore: add changeset for <a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/issues/146">#146</a></li> <li>Additional commits viewable in <a href="https://github.com/sapphi-red/vite-plugin-static-copy/compare/vite-plugin-static-copy@2.2.0...vite-plugin-static-copy@2.3.2">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 6.1.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/6"><code>@​6</code></a>.1.3</h2> <h3>Patch Changes</h3> <ul> <li>fix(api): add <code>api.filter</code> and deprecate <code>api.idFilter</code> to avoid confusing <code>filter.id = idFilter.id</code> assignments when used as hybrid filter in other plugins (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1199">#1199</a>)</li> </ul> <h2><code>@​sveltejs/vite-plugin-svelte</code><a href="https://github.com/6"><code>@​6</code></a>.1.2</h2> <h3>Patch Changes</h3> <ul> <li>fix: ensure compiled css is returned when reloading during dev with ssr (e.g. SvelteKit) (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1194">#1194</a>)</li> </ul> <h2><code>@​sveltejs/vite-plugin-svelte</code><a href="https://github.com/6"><code>@​6</code></a>.1.1</h2> <h3>Patch Changes</h3> <ul> <li>fix: ensure compiled svelte css is loaded correctly when rebuilding in <code>build --watch</code> (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1189">#1189</a>)</li> </ul> <h2><code>@​sveltejs/vite-plugin-svelte</code><a href="https://github.com/6"><code>@​6</code></a>.1.0</h2> <h3>Minor Changes</h3> <ul> <li>feat: add support for the new experimental.async option and apply dynamicCompileOptions when compiling Svelte modules (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1176">#1176</a>)</li> </ul> <h3>Patch Changes</h3> <ul> <li> <p>skip comment blocks when reporting compiler errors that might be caused by a preprocessor issue (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1166">#1166</a>)</p> </li> <li> <p>increase logLevel to info for &quot;no Svelte config found&quot; message (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1179">#1179</a>)</p> </li> </ul> <h2><code>@​sveltejs/vite-plugin-svelte</code><a href="https://github.com/6"><code>@​6</code></a>.0.0</h2> <h3>Major Changes</h3> <ul> <li> <p>drop support for node18 and update exports map to use default export. cjs is supported via require esm in node 20.19+ (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1129">#1129</a>)</p> </li> <li> <p>Remove experimental &quot;advanced raw queries&quot; feature. Basic <code>File.svelte?raw</code> is still supported. (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1145">#1145</a>)</p> </li> <li> <p>Using the typescript preprocessor now requires a tsconfig.json with verbatimModuleSyntax enabled, eg <code>@​tsconfig/svelte</code> (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1135">#1135</a>)</p> </li> <li> <p>remove support for loading commonjs svelte config files (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1142">#1142</a>)</p> </li> <li> <p>bump vite peer dependency to ^6.3.0 || ^7.0.0 (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1130">#1130</a>)</p> </li> <li> <p>define filters using object hook syntax and optimize the filter for resolveId (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1132">#1132</a>)</p> <blockquote> <p><strong>NOTE</strong> include logic has changed to files matching <code>svelteConfig.include</code> <strong>OR</strong> <code>svelteConfig.extensions</code>. Previously only files matching both were loaded and transformed.</p> </blockquote> </li> </ul> <!-- 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>6.1.3</h2> <h3>Patch Changes</h3> <ul> <li>fix(api): add <code>api.filter</code> and deprecate <code>api.idFilter</code> to avoid confusing <code>filter.id = idFilter.id</code> assignments when used as hybrid filter in other plugins (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1199">#1199</a>)</li> </ul> <h2>6.1.2</h2> <h3>Patch Changes</h3> <ul> <li>fix: ensure compiled css is returned when reloading during dev with ssr (e.g. SvelteKit) (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1194">#1194</a>)</li> </ul> <h2>6.1.1</h2> <h3>Patch Changes</h3> <ul> <li>fix: ensure compiled svelte css is loaded correctly when rebuilding in <code>build --watch</code> (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1189">#1189</a>)</li> </ul> <h2>6.1.0</h2> <h3>Minor Changes</h3> <ul> <li>feat: add support for the new experimental.async option and apply dynamicCompileOptions when compiling Svelte modules (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1176">#1176</a>)</li> </ul> <h3>Patch Changes</h3> <ul> <li> <p>skip comment blocks when reporting compiler errors that might be caused by a preprocessor issue (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1166">#1166</a>)</p> </li> <li> <p>increase logLevel to info for &quot;no Svelte config found&quot; message (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1179">#1179</a>)</p> </li> </ul> <h2>6.0.0</h2> <h3>Major Changes</h3> <ul> <li> <p>drop support for node18 and update exports map to use default export. cjs is supported via require esm in node 20.19+ (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1129">#1129</a>)</p> </li> <li> <p>Remove experimental &quot;advanced raw queries&quot; feature. Basic <code>File.svelte?raw</code> is still supported. (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1145">#1145</a>)</p> </li> <li> <p>Using the typescript preprocessor now requires a tsconfig.json with verbatimModuleSyntax enabled, eg <code>@​tsconfig/svelte</code> (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1135">#1135</a>)</p> </li> <li> <p>remove support for loading commonjs svelte config files (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1142">#1142</a>)</p> </li> <li> <p>bump vite peer dependency to ^6.3.0 || ^7.0.0 (<a href="https://redirect.github.com/sveltejs/vite-plugin-svelte/pull/1130">#1130</a>)</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sveltejs/vite-plugin-svelte/commit/42681d32333655152dc84a454ebc5ec8bf9ee69b"><code>42681d3</code></a> Version Packages (<a href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/1200">#1200</a>)</li> <li><a href="https://github.com/sveltejs/vite-plugin-svelte/commit/f9e46326021b4c2275fab8e72f0f079e9ca364e0"><code>f9e4632</code></a> fix(api): rename idFilter to filter to avoid confusion (<a href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/1199">#1199</a>)</li> <li><a href="https://github.com/sveltejs/vite-plugin-svelte/commit/cf5a6be4b620d94b8fd686a6009d02ab5b7b3d59"><code>cf5a6be</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/1193">#1193</a>)</li> <li><a href="https://github.com/sveltejs/vite-plugin-svelte/commit/7bcf224ebb839985498f9612e99be27e3b1951b7"><code>7bcf224</code></a> Version Packages (<a href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/1195">#1195</a>)</li> <li><a href="https://github.com/sveltejs/vite-plugin-svelte/commit/3e3eb85a48034ec75084764bfdd09d4457608288"><code>3e3eb85</code></a> fix: ensure compiled css is available after reload during dev with SSR (Svelt...</li> <li><a href="https://github.com/sveltejs/vite-plugin-svelte/commit/81d0cf34409ec661db6f5b50879b55ac0ecdd7b8"><code>81d0cf3</code></a> Version Packages (<a href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/1191">#1191</a>)</li> <li><a href="https://github.com/sveltejs/vite-plugin-svelte/commit/41df0c9a6ed9ccbcc9f4a001fd69152b012f0841"><code>41df0c9</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/1183">#1183</a>)</li> <li><a href="https://github.com/sveltejs/vite-plugin-svelte/commit/3a6976a10feef874f05369e47fdfca41f0da9a3b"><code>3a6976a</code></a> fix <code>build --watch</code> (<a href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/1189">#1189</a>)</li> <li><a href="https://github.com/sveltejs/vite-plugin-svelte/commit/3119a4b53f36835a5a8d28b19cfb7c47abb8bbbd"><code>3119a4b</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/1180">#1180</a>)</li> <li><a href="https://github.com/sveltejs/vite-plugin-svelte/commit/b5f7194e0e1c0f48d363a5c2e827d131f3c5071c"><code>b5f7194</code></a> Version Packages (<a href="https://github.com/sveltejs/vite-plugin-svelte/tree/HEAD/packages/vite-plugin-svelte/issues/1169">#1169</a>)</li> <li>Additional commits viewable in <a href="https://github.com/sveltejs/vite-plugin-svelte/commits/@sveltejs/vite-plugin-svelte@6.1.3/packages/vite-plugin-svelte">compare view</a></li> </ul> </details> <br /> Updates `vite` from 5.4.19 to 7.1.3 <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>v7.1.3</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v7.1.3/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v7.1.2</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v7.1.2/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v7.1.1</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v7.1.1/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>create-vite@7.1.1</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/create-vite@7.1.1/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>plugin-legacy@7.1.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/plugin-legacy@7.1.0/packages/plugin-legacy/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>create-vite@7.1.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/create-vite@7.1.0/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v7.1.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v7.1.0/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v7.1.0-beta.1</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v7.1.0-beta.1/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v7.1.0-beta.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v7.1.0-beta.0/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v7.0.6</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v7.0.6/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v7.0.5</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v7.0.5/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v7.0.4</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v7.0.4/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v7.0.3</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v7.0.3/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>create-vite@7.0.3</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/create-vite@7.0.3/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v7.0.2</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v7.0.2/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>create-vite@7.0.2</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/create-vite@7.0.2/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v7.0.1</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v7.0.1/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 --><a href="https://github.com/vitejs/vite/compare/v7.1.2...v7.1.3">7.1.3</a> (2025-08-19)<!-- raw HTML omitted --></h2> <h3>Features</h3> <ul> <li><strong>cli:</strong> add Node.js version warning for unsupported versions (<a href="https://redirect.github.com/vitejs/vite/issues/20638">#20638</a>) (<a href="https://github.com/vitejs/vite/commit/a1be1bf0905b9086e5f1370c63d76a7fa4a195ec">a1be1bf</a>)</li> <li>generate code frame for parse errors thrown by terser (<a href="https://redirect.github.com/vitejs/vite/issues/20642">#20642</a>) (<a href="https://github.com/vitejs/vite/commit/a9ba0174a58b949373d6b4240bc69180dff0b780">a9ba017</a>)</li> <li>support long lines in <code>generateCodeFrame</code> (<a href="https://redirect.github.com/vitejs/vite/issues/20640">#20640</a>) (<a href="https://github.com/vitejs/vite/commit/15595773170c2a07f2efdccee05964fb87c19ae6">1559577</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><strong>deps:</strong> update all non-major dependencies (<a href="https://redirect.github.com/vitejs/vite/issues/20634">#20634</a>) (<a href="https://github.com/vitejs/vite/commit/4851cab3ba818b5f0f82eef3796b61d4b12768f1">4851cab</a>)</li> <li><strong>optimizer:</strong> incorrect incompatible error (<a href="https://redirect.github.com/vitejs/vite/issues/20439">#20439</a>) (<a href="https://github.com/vitejs/vite/commit/446fe83033686dd38d13b786a217b8277b5c5f09">446fe83</a>)</li> <li>support multiline new URL(..., import.meta.url) expressions (<a href="https://redirect.github.com/vitejs/vite/issues/20644">#20644</a>) (<a href="https://github.com/vitejs/vite/commit/9ccf142764d48292aa33e5ca6f020a7d55b97f61">9ccf142</a>)</li> </ul> <h3>Performance Improvements</h3> <ul> <li><strong>cli:</strong> dynamically import <code>resolveConfig</code> (<a href="https://redirect.github.com/vitejs/vite/issues/20646">#20646</a>) (<a href="https://github.com/vitejs/vite/commit/f691f57e46118328e00174160ceab2101b7256ca">f691f57</a>)</li> </ul> <h3>Miscellaneous Chores</h3> <ul> <li><strong>deps:</strong> update rolldown-related dependencies (<a href="https://redirect.github.com/vitejs/vite/issues/20633">#20633</a>) (<a href="https://github.com/vitejs/vite/commit/98b92e8c4b10ae87c48292a8ac09b01ca81a02cf">98b92e8</a>)</li> </ul> <h3>Code Refactoring</h3> <ul> <li>replace startsWith with strict equality (<a href="https://redirect.github.com/vitejs/vite/issues/20603">#20603</a>) (<a href="https://github.com/vitejs/vite/commit/42816dee0e177dded1c9de4d9099089ec4acef96">42816de</a>)</li> <li>use <code>import</code> in worker threads (<a href="https://redirect.github.com/vitejs/vite/issues/20641">#20641</a>) (<a href="https://github.com/vitejs/vite/commit/530687a344c51daf3115d1c134586bbde58356e0">530687a</a>)</li> </ul> <h3>Tests</h3> <ul> <li>remove <code>checkNodeVersion</code> test (<a href="https://redirect.github.com/vitejs/vite/issues/20647">#20647</a>) (<a href="https://github.com/vitejs/vite/commit/731d3e61f444f6c5e611f67b531416ed6450f90f">731d3e6</a>)</li> </ul> <h2><!-- raw HTML omitted --><a href="https://github.com/vitejs/vite/compare/v7.1.1...v7.1.2">7.1.2</a> (2025-08-12)<!-- raw HTML omitted --></h2> <h3>Bug Fixes</h3> <ul> <li><strong>client:</strong> add <code>[vite]</code> prefixes to debug logs (<a href="https://redirect.github.com/vitejs/vite/issues/20595">#20595</a>) (<a href="https://github.com/vitejs/vite/commit/7cdef612a65da5363905723f77516b6745ac9a94">7cdef61</a>)</li> <li><strong>config:</strong> make debugger work with bundle loader (<a href="https://redirect.github.com/vitejs/vite/issues/20573">#20573</a>) (<a href="https://github.com/vitejs/vite/commit/c583927bee657f15f63fdf80468fbe6a74eacdec">c583927</a>)</li> <li><strong>deps:</strong> update all non-major dependencies (<a href="https://redirect.github.com/vitejs/vite/issues/20587">#20587</a>) (<a href="https://github.com/vitejs/vite/commit/20d48172a0352d32f766b3c878d52a8944fdbf6e">20d4817</a>)</li> <li>don't consider ids with <code>npm:</code> prefix as a built-in module (<a href="https://redirect.github.com/vitejs/vite/issues/20558">#20558</a>) (<a href="https://github.com/vitejs/vite/commit/ab33803f2c831a82ddee637ad62e0c4ceeb663f1">ab33803</a>)</li> <li><strong>hmr:</strong> watch non-inlined assets referenced by CSS (<a href="https://redirect.github.com/vitejs/vite/issues/20581">#20581</a>) (<a href="https://github.com/vitejs/vite/commit/b7d494bf60af3ef7316d87266bb3ebf56617d5fd">b7d494b</a>)</li> <li><strong>module-runner:</strong> prevent crash when sourceMappingURL pattern appears in string literals (<a href="https://redirect.github.com/vitejs/vite/issues/20554">#20554</a>) (<a href="https://github.com/vitejs/vite/commit/2770478d1c190d3e3de34ef9a3d2c493c06e9933">2770478</a>)</li> </ul> <h3>Miscellaneous Chores</h3> <ul> <li><strong>deps:</strong> migrate to <code>@jridgewell/remapping</code> from <code>@ampproject/remapping</code> (<a href="https://redirect.github.com/vitejs/vite/issues/20577">#20577</a>) (<a href="https://github.com/vitejs/vite/commit/0a6048aba4523f451edf29ae4037d252cc963815">0a6048a</a>)</li> <li><strong>deps:</strong> update rolldown-related dependencies (<a href="https://redirect.github.com/vitejs/vite/issues/20586">#20586</a>) (<a href="https://github.com/vitejs/vite/commit/77632c55db51cd6d03bcf24a1cef8d21058100a3">77632c5</a>)</li> </ul> <h2><!-- raw HTML omitted --><a href="https://github.com/vitejs/vite/compare/v7.1.0...v7.1.1">7.1.1</a> (2025-08-08)<!-- raw HTML omitted --></h2> <h3>Bug Fixes</h3> <ul> <li><strong>deps:</strong> update <code>launch-editor-middleware</code> (<a href="https://redirect.github.com/vitejs/vite/issues/20569">#20569</a>) (<a href="https://github.com/vitejs/vite/commit/826b394e0efd033d2fe88126fe9a28da9573bd8f">826b394</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/e090b7d1e55f59722f5a312067242e96bb8d8994"><code>e090b7d</code></a> release: v7.1.3</li> <li><a href="https://github.com/vitejs/vite/commit/9ccf142764d48292aa33e5ca6f020a7d55b97f61"><code>9ccf142</code></a> fix: support multiline new URL(..., import.meta.url) expressions (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20644">#20644</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/731d3e61f444f6c5e611f67b531416ed6450f90f"><code>731d3e6</code></a> test: remove <code>checkNodeVersion</code> test (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20647">#20647</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/a9ba0174a58b949373d6b4240bc69180dff0b780"><code>a9ba017</code></a> feat: generate code frame for parse errors thrown by terser (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20642">#20642</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/530687a344c51daf3115d1c134586bbde58356e0"><code>530687a</code></a> refactor: use <code>import</code> in worker threads (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20641">#20641</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/a1be1bf0905b9086e5f1370c63d76a7fa4a195ec"><code>a1be1bf</code></a> feat(cli): add Node.js version warning for unsupported versions (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20638">#20638</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/15595773170c2a07f2efdccee05964fb87c19ae6"><code>1559577</code></a> feat: support long lines in <code>generateCodeFrame</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20640">#20640</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/f691f57e46118328e00174160ceab2101b7256ca"><code>f691f57</code></a> perf(cli): dynamically import <code>resolveConfig</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20646">#20646</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/446fe83033686dd38d13b786a217b8277b5c5f09"><code>446fe83</code></a> fix(optimizer): incorrect incompatible error (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20439">#20439</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/42816dee0e177dded1c9de4d9099089ec4acef96"><code>42816de</code></a> refactor: replace startsWith with strict equality (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20603">#20603</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vitejs/vite/commits/v7.1.3/packages/vite">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for vite since your current version.</p> </details> <br /> Updates `vitest` from 1.6.1 to 3.2.4 <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.2.4</h2> <h3>   🐞 Bug Fixes</h3> <ul> <li>Use correct path for optimisation of strip-literal  -  by <a href="https://github.com/mrginglymus"><code>@​mrginglymus</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8139">vitest-dev/vitest#8139</a> <a href="https://github.com/vitest-dev/vitest/commit/44940d9dd"><!-- raw HTML omitted -->(44940)<!-- raw HTML omitted --></a></li> <li>Print uint and buffer as a simple string  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8141">vitest-dev/vitest#8141</a> <a href="https://github.com/vitest-dev/vitest/commit/b86bf0d99"><!-- raw HTML omitted -->(b86bf)<!-- raw HTML omitted --></a></li> <li><strong>browser</strong>: <ul> <li>Show a helpful error when spying on an export  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8178">vitest-dev/vitest#8178</a> <a href="https://github.com/vitest-dev/vitest/commit/5600772c2"><!-- raw HTML omitted -->(56007)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>cli</strong>: <ul> <li><code>vitest run --watch</code> should be watch-mode  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8128">vitest-dev/vitest#8128</a> <a href="https://github.com/vitest-dev/vitest/commit/657e83f9f"><!-- raw HTML omitted -->(657e8)<!-- raw HTML omitted --></a></li> <li>Use absolute path environment on Windows  -  by <a href="https://github.com/colinaaa"><code>@​colinaaa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8105">vitest-dev/vitest#8105</a> <a href="https://github.com/vitest-dev/vitest/commit/85dc0195f"><!-- raw HTML omitted -->(85dc0)<!-- raw HTML omitted --></a></li> <li>Throw error when <code>--shard x/&lt;count&gt;</code> exceeds count of test files  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8112">vitest-dev/vitest#8112</a> <a href="https://github.com/vitest-dev/vitest/commit/8a18c8e20"><!-- raw HTML omitted -->(8a18c)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>coverage</strong>: <ul> <li>Ignore SCSS in browser mode  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8161">vitest-dev/vitest#8161</a> <a href="https://github.com/vitest-dev/vitest/commit/0c3be6f63"><!-- raw HTML omitted -->(0c3be)<!-- 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/8123">vitest-dev/vitest#8123</a> <a href="https://github.com/vitest-dev/vitest/commit/93f3200e4"><!-- raw HTML omitted -->(93f32)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>expect</strong>: <ul> <li>Handle async errors in expect.soft  -  by <a href="https://github.com/lzl0304"><code>@​lzl0304</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8145">vitest-dev/vitest#8145</a> <a href="https://github.com/vitest-dev/vitest/commit/686996912"><!-- raw HTML omitted -->(68699)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>pool</strong>: <ul> <li>Auto-adjust <code>minWorkers</code> when only <code>maxWorkers</code> specified  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8110">vitest-dev/vitest#8110</a> <a href="https://github.com/vitest-dev/vitest/commit/14dc0724f"><!-- raw HTML omitted -->(14dc0)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>reporter</strong>: <ul> <li><code>task.meta</code> should be available in custom reporter's errors  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8115">vitest-dev/vitest#8115</a> <a href="https://github.com/vitest-dev/vitest/commit/27df68a0e"><!-- raw HTML omitted -->(27df6)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>runner</strong>: <ul> <li>Preserve handler wrapping on extend  -  by <a href="https://github.com/pengooseDev"><code>@​pengooseDev</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8153">vitest-dev/vitest#8153</a> <a href="https://github.com/vitest-dev/vitest/commit/a92812b70"><!-- raw HTML omitted -->(a9281)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>ui</strong>: <ul> <li>Ensure ui config option works correctly  -  by <a href="https://github.com/lzl0304"><code>@​lzl0304</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8147">vitest-dev/vitest#8147</a> <a href="https://github.com/vitest-dev/vitest/commit/42eeb2ee6"><!-- raw HTML omitted -->(42eeb)<!-- raw HTML omitted --></a></li> </ul> </li> </ul> <h5>    <a href="https://github.com/vitest-dev/vitest/compare/v3.2.3...v3.2.4">View changes on GitHub</a></h5> <h2>v3.2.3</h2> <h3>   🚀 Features</h3> <ul> <li><strong>browser</strong>: Use base url instead of <strong>vitest</strong>  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8126">vitest-dev/vitest#8126</a> <a href="https://github.com/vitest-dev/vitest/commit/1d8ebf9ae"><!-- raw HTML omitted -->(1d8eb)<!-- raw HTML omitted --></a></li> <li><strong>ui</strong>: Show test annotations and metadata in the test report tab  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8093">vitest-dev/vitest#8093</a> <a href="https://github.com/vitest-dev/vitest/commit/c69be1fc1"><!-- raw HTML omitted -->(c69be)<!-- raw HTML omitted --></a></li> </ul> <h3>   🐞 Bug Fixes</h3> <ul> <li>Rerun tests when project's setup file is changed  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8097">vitest-dev/vitest#8097</a> <a href="https://github.com/vitest-dev/vitest/commit/0f3350667"><!-- raw HTML omitted -->(0f335)<!-- raw HTML omitted --></a></li> <li>Revert <code>expect.any</code> return type  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8129">vitest-dev/vitest#8129</a> <a href="https://github.com/vitest-dev/vitest/commit/4751436d5"><!-- raw HTML omitted -->(47514)<!-- raw HTML omitted --></a></li> <li>Run only the name plugin last, not all config plugins  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8130">vitest-dev/vitest#8130</a> <a href="https://github.com/vitest-dev/vitest/commit/83862d46e"><!-- raw HTML omitted -->(83862)<!-- raw HTML omitted --></a></li> <li><strong>pool</strong>: <ul> <li>Throw if user's tests use <code>process.send()</code>  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8125">vitest-dev/vitest#8125</a> <a href="https://github.com/vitest-dev/vitest/commit/dfe81a67a"><!-- raw HTML omitted -->(dfe81)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>runner</strong>: <ul> <li>Fast sequential task updates missing  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8121">vitest-dev/vitest#8121</a> <a href="https://github.com/vitest-dev/vitest/commit/7bd11a9b3"><!-- raw HTML omitted -->(7bd11)<!-- raw HTML omitted --></a></li> <li>Comments between fixture destructures  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/8127">vitest-dev/vitest#8127</a> <a href="https://github.com/vitest-dev/vitest/commit/dc469f260"><!-- raw HTML omitted -->(dc469)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>vite-node</strong>: <ul> <li>Unable to handle errors where sourcemap mapping empty  -  by <a href="https://github.com/blake-newman"><code>@​blake-newman</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/8071">vitest-dev/vitest#8071</a> <a href="https://github.com/vitest-dev/vitest/commit/8aa252121"><!-- raw HTML omitted -->(8aa25)<!-- raw HTML omitted --></a></li> </ul> </li> </ul> <h5>    <a href="https://github.com/vitest-dev/vitest/compare/v3.2.2...v3.2.3">View changes on GitHub</a></h5> <h2>v3.2.2</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitest-dev/vitest/commit/c666d149a4516761bae92ca56ce1336d2fd352c3"><code>c666d14</code></a> chore: release v3.2.4</li> <li><a href="https://github.com/vitest-dev/vitest/commit/8a18c8e20a19f2c8d9f402e426886999f378c389"><code>8a18c8e</code></a> fix(cli): throw error when <code>--shard x/\&lt;count&gt;</code> exceeds count of test files (#...</li> <li><a href="https://github.com/vitest-dev/vitest/commit/8abd7cc6fff5fa47d899b5f5383f526d2fdef784"><code>8abd7cc</code></a> chore(deps): update <code>tinypool</code> (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/8174">#8174</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/93f3200e452874ed4e2d018718bbbde7ebd28590"><code>93f3200</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/8123">#8123</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/0c3be6f637d65ef47f2fcf2ccd637f1ecc9d1786"><code>0c3be6f</code></a> fix(coverage): ignore SCSS in browser mode (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/8161">#8161</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/790bc310c55ce81306baf5d8954e7cc849ec4ca0"><code>790bc31</code></a> chore: update deprecation notice for globs (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/8148">#8148</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/c0eae7df8447602d20b39f3769edbc91fafebf7b"><code>c0eae7d</code></a> chore: update deprecated workspace file log (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/8118">#8118</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/14dc0724f9bfbf71c598156597ac12494ebce2f4"><code>14dc072</code></a> fix(pool): auto-adjust <code>minWorkers</code> when only <code>maxWorkers</code> specified (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/8110">#8110</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/85dc0195f53f140d7c1de2f62fec15ad990b1e5c"><code>85dc019</code></a> fix(cli): use absolute path environment on Windows (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/8105">#8105</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/27df68a0e978776ddf51fe4188f1c8036a89c04d"><code>27df68a</code></a> fix(reporter): <code>task.meta</code> should be available in custom reporter's errors (#...</li> <li>Additional commits viewable in <a href="https://github.com/vitest-dev/vitest/commits/v3.2.4/packages/vitest">compare view</a></li> </ul> </details> <br /> Updates `tmp` from 0.2.3 to 0.2.5 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/raszi/node-tmp/commit/3d2fe387f3f91b13830b9182faa02c3231ea8258"><code>3d2fe38</code></a> Bump up the version</li> <li><a href="https://github.com/raszi/node-tmp/commit/e16282879e5d0554fe824e1ab3df724847e91183"><code>e162828</code></a> Merge pull request <a href="https://redirect.github.com/raszi/node-tmp/issues/309">#309</a> from fflorent/fix-tmp-dir-with-dir</li> <li><a href="https://github.com/raszi/node-tmp/commit/b847d2f1a42b625c26149f4a2029ed00a1edf90b"><code>b847d2f</code></a> Fix use of tmp.dir() with <code>dir</code> option</li> <li><a href="https://github.com/raszi/node-tmp/commit/08fa3abac32b621506512724b28b56b9c4a95846"><code>08fa3ab</code></a> Update version</li> <li><a href="https://github.com/raszi/node-tmp/commit/1cf4ec54180a77a2a95dc1941efa1659774c8787"><code>1cf4ec5</code></a> Merge commit from fork</li> <li><a href="https://github.com/raszi/node-tmp/commit/188b25e529496e37adaf1a1d9dccb40019a08b1b"><code>188b25e</code></a> Fix GHSA-52f5-9888-hmc6</li> <li><a href="https://github.com/raszi/node-tmp/commit/73b9fe45bbb40157acdfab8126dd0911de91c8fa"><code>73b9fe4</code></a> Add test case for GHSA-52f5-9888-hmc6</li> <li><a href="https://github.com/raszi/node-tmp/commit/b8e2f29a7575352e49e4882a836aab4bd2ec927f"><code>b8e2f29</code></a> Remove broken tests</li> <li><a href="https://github.com/raszi/node-tmp/commit/2892a027b4d2d3a25d1d08a398bc108a0200857f"><code>2892a02</code></a> Remove outdated URL</li> <li><a href="https://github.com/raszi/node-tmp/commit/f5923182461a89e9de5a7a09c75f410a76979ae7"><code>f592318</code></a> Reformat package.json</li> <li>Additional commits viewable in <a href="https://github.com/raszi/node-tmp/compare/v0.2.3...v0.2.5">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 a... _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 12:18:27 -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#39872