[PR #11] [MERGED] chore(deps): bump the npm_and_yarn group across 1 directory with 7 updates #120

Closed
opened 2026-06-06 22:09:16 -04:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/vxcontrol/pentagi/pull/11
Author: @dependabot[bot]
Created: 3/5/2025
Status: Merged
Merged: 3/24/2025
Merged by: @asdek

Base: masterHead: dependabot/npm_and_yarn/frontend/npm_and_yarn-d243486dab


📝 Commits (2)

  • d68cbf5 chore(deps): bump the npm_and_yarn group across 1 directory with 7 updates
  • 64bd77b chore(deps): update Babel packages and axios to latest versions

📊 Changes

2 files changed (+1251 additions, -1491 deletions)

View changed files

📝 frontend/package-lock.json (+1245 -1485)
📝 frontend/package.json (+6 -6)

📄 Description

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

Package From To
esbuild 0.21.5 0.25.0
@vitejs/plugin-react-swc 3.7.1 3.8.0
@vitest/coverage-v8 2.1.9 3.0.7
eslint-config-hyoban 3.1.12 3.2.1
tsx 4.19.2 4.19.3
vite 5.4.14 6.2.0
vitest 2.1.9 3.0.7

Updates esbuild from 0.21.5 to 0.25.0

Release notes

Sourced from esbuild's releases.

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.

  • Fix correctness issues with the CSS nesting transform (#3620, #3877, #3933, #3997, #4005, #4037, #4038)

    This release fixes the following problems:

    • Naive expansion of CSS nesting can result in an exponential blow-up of generated CSS if each nesting level has multiple selectors. Previously esbuild sometimes collapsed individual nesting levels using :is() to limit expansion. However, this collapsing wasn't correct in some cases, so it has been removed to fix correctness issues.

      /* Original code */
      .parent {
        > .a,
        > .b1 > .b2 {
          color: red;
        }
      }
      

      /* Old output (with --supported:nesting=false) */
      .parent > :is(.a, .b1 > .b2) {
      color: red;
      }

      /* New output (with --supported:nesting=false) */
      .parent > .a,
      .parent > .b1 > .b2 {
      color: red;
      }

      Thanks to @​tim-we for working on a fix.

    • The & CSS nesting selector can be repeated multiple times to increase CSS specificity. Previously esbuild ignored this possibility and incorrectly considered && to have the same specificity as &. With this release, this should now work correctly:

      /* Original code (color should be red) */
      

... (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
  • e9174d6 publish 0.25.0 to npm
  • c27dbeb fix hosts in plugin-tests.js
  • 6794f60 fix hosts in node-unref-tests.js
  • de85afd Merge commit from fork
  • da1de1b fix #4065: bitwise operators can return bigints
  • f4e9d19 switch case liveness: default is always last
  • 7aa47c3 fix #4028: minify live/dead switch cases better
  • 22ecd30 minify: more constant folding for strict equality
  • 4cdf03c fix #4053: reordering of .tsx in node_modules
  • dc71977 fix #3692: 0 now picks a random ephemeral port
  • Additional commits viewable in compare view

Updates @vitejs/plugin-react-swc from 3.7.1 to 3.8.0

Release notes

Sourced from @​vitejs/plugin-react-swc's releases.

v3.8.0

Add useAtYourOwnRisk_mutateSwcOptions option

The future of Vite is with OXC, and from the beginning this was a design choice to not exposed too many specialties from SWC so that Vite React users can move to another transformer later. Also debugging why some specific version of decorators with some other unstable/legacy feature doesn't work is not fun, so we won't provide support for it, hence the name useAtYourOwnRisk.

react({
  useAtYourOwnRisk_mutateSwcOptions(options) {
    options.jsc.parser.decorators = true;
    options.jsc.transform.decoratorVersion = "2022-03";
  },
});

v3.7.2

Add Vite 6 to peerDependencies range #207

Thanks @​RobinTail

Revert throw when refresh runtime is loaded twice #237

Revert the throw when refresh runtime is loaded twice to enable usage in micro frontend apps. This was added to help fix setup usage, and this is not worth an annoying warning for others or a config parameter.

This revert was done in the Babel plugin last year and I didn't port it back.

Changelog

Sourced from @​vitejs/plugin-react-swc's changelog.

3.8.0

Add useAtYourOwnRisk_mutateSwcOptions option

The future of Vite is with OXC, and from the beginning this was a design choice to not exposed too many specialties from SWC so that Vite React users can move to another transformer later. Also debugging why some specific version of decorators with some other unstable/legacy feature doesn't work is not fun, so we won't provide support for it, hence the name useAtYourOwnRisk.

react({
  useAtYourOwnRisk_mutateSwcOptions(options) {
    options.jsc.parser.decorators = true;
    options.jsc.transform.decoratorVersion = "2022-03";
  },
});

3.7.2

Add Vite 6 to peerDependencies range #207

Thanks @​RobinTail

Revert throw when refresh runtime is loaded twice #237

Revert the throw when refresh runtime is loaded twice to enable usage in micro frontend apps. This was added to help fix setup usage, and this is not worth an annoying warning for others or a config parameter.

This revert was done in the Babel plugin last year and I didn't port it back.

Commits

Updates @vitest/coverage-v8 from 2.1.9 to 3.0.7

Release notes

Sourced from @​vitest/coverage-v8's releases.

v3.0.7

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v3.0.6

   🐞 Bug Fixes

    View changes on GitHub

v3.0.5

This release includes security patches for:

... (truncated)

Commits

Updates eslint-config-hyoban from 3.1.12 to 3.2.1

Release notes

Sourced from eslint-config-hyoban's releases.

v3.2.1

   🐞 Bug Fixes

    View changes on GitHub

v3.2.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v3.1.15

   🐞 Bug Fixes

  • Update deps  -  by Stephen Zhou (46926)
    View changes on GitHub

v3.1.14

   🐞 Bug Fixes

  • Update deps  -  by Stephen Zhou (0fddb)
    View changes on GitHub

v3.1.13

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates tsx from 4.19.2 to 4.19.3

Release notes

Sourced from tsx's releases.

v4.19.3

4.19.3 (2025-02-19)

Bug Fixes

  • upgrade esbuild to ~0.25.0 to address vuln report (#698) (e04e6c6)

This release is also available on:

Commits

Updates vite from 5.4.14 to 6.2.0

Release notes

Sourced from vite's releases.

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.

v6.0.8

Please refer to CHANGELOG.md for details.

v6.0.7

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from vite's changelog.

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)

6.1.0 (2025-02-05)

Features

... (truncated)

Commits

Updates vitest from 2.1.9 to 3.0.7

Release notes

Sourced from vitest's releases.

v3.0.7

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v3.0.6

   🐞 Bug Fixes

    View changes on GitHub

v3.0.5

This release includes security patches for:

... (truncated)

Commits
  • 358cccf chore: release v3.0.7
  • 365ffe6 fix(deps): update all non-major dependencies (#7543)
  • aaa5855 perf(browser): do wdio context switching only once per file (#7549)
  • f71004f fix(spy): clear/reset/restore mocks in stack order (#7499)
  • 9584be3 chore: release v3.0.6
  • 027ce9b fix(reporters): render tasks in tree when in TTY (#7503)
  • b62ac22 chore: use tinyglobby instead of fast-glob in Vitest (#7504)
  • 167a98d fix: exclude queueMicrotask from default fake timers to not break node fetc...
  • 6cc408d fix(deps): update all non-major dependencies (#7507)
  • 8f13825 docs: fix sequence.hooks: 'stack' as default (#7492)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
    You can disable automated security fix PRs for this repo from the Security Alerts page.

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

## 📋 Pull Request Information **Original PR:** https://github.com/vxcontrol/pentagi/pull/11 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 3/5/2025 **Status:** ✅ Merged **Merged:** 3/24/2025 **Merged by:** [@asdek](https://github.com/asdek) **Base:** `master` ← **Head:** `dependabot/npm_and_yarn/frontend/npm_and_yarn-d243486dab` --- ### 📝 Commits (2) - [`d68cbf5`](https://github.com/vxcontrol/pentagi/commit/d68cbf5e536bd5cf18e10c3f4e0d94aace818782) chore(deps): bump the npm_and_yarn group across 1 directory with 7 updates - [`64bd77b`](https://github.com/vxcontrol/pentagi/commit/64bd77b40dac38573568c037187319750e70eda6) chore(deps): update Babel packages and axios to latest versions ### 📊 Changes **2 files changed** (+1251 additions, -1491 deletions) <details> <summary>View changed files</summary> 📝 `frontend/package-lock.json` (+1245 -1485) 📝 `frontend/package.json` (+6 -6) </details> ### 📄 Description Bumps the npm_and_yarn group with 7 updates in the /frontend directory: | Package | From | To | | --- | --- | --- | | [esbuild](https://github.com/evanw/esbuild) | `0.21.5` | `0.25.0` | | [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) | `3.7.1` | `3.8.0` | | [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `2.1.9` | `3.0.7` | | [eslint-config-hyoban](https://github.com/hyoban/eslint-config-hyoban) | `3.1.12` | `3.2.1` | | [tsx](https://github.com/privatenumber/tsx) | `4.19.2` | `4.19.3` | | [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.4.14` | `6.2.0` | | [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.1.9` | `3.0.7` | Updates `esbuild` from 0.21.5 to 0.25.0 <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.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> <li> <p>Fix correctness issues with the CSS nesting transform (<a href="https://redirect.github.com/evanw/esbuild/issues/3620">#3620</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/3877">#3877</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/3933">#3933</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/3997">#3997</a>, <a href="https://redirect.github.com/evanw/esbuild/issues/4005">#4005</a>, <a href="https://redirect.github.com/evanw/esbuild/pull/4037">#4037</a>, <a href="https://redirect.github.com/evanw/esbuild/pull/4038">#4038</a>)</p> <p>This release fixes the following problems:</p> <ul> <li> <p>Naive expansion of CSS nesting can result in an exponential blow-up of generated CSS if each nesting level has multiple selectors. Previously esbuild sometimes collapsed individual nesting levels using <code>:is()</code> to limit expansion. However, this collapsing wasn't correct in some cases, so it has been removed to fix correctness issues.</p> <pre lang="css"><code>/* Original code */ .parent { &gt; .a, &gt; .b1 &gt; .b2 { color: red; } } <p>/* Old output (with --supported:nesting=false) */<br /> .parent &gt; :is(.a, .b1 &gt; .b2) {<br /> color: red;<br /> }</p> <p>/* New output (with --supported:nesting=false) */<br /> .parent &gt; .a,<br /> .parent &gt; .b1 &gt; .b2 {<br /> color: red;<br /> }<br /> </code></pre></p> <p>Thanks to <a href="https://github.com/tim-we"><code>@​tim-we</code></a> for working on a fix.</p> </li> <li> <p>The <code>&amp;</code> CSS nesting selector can be repeated multiple times to increase CSS specificity. Previously esbuild ignored this possibility and incorrectly considered <code>&amp;&amp;</code> to have the same specificity as <code>&amp;</code>. With this release, this should now work correctly:</p> <pre lang="css"><code>/* Original code (color should be red) */ </code></pre> </li> </ul> </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/e9174d671b1882758cd32ac5e146200f5bee3e45"><code>e9174d6</code></a> publish 0.25.0 to npm</li> <li><a href="https://github.com/evanw/esbuild/commit/c27dbebb9e7a55dd9a084dd151dddd840787490e"><code>c27dbeb</code></a> fix <code>hosts</code> in <code>plugin-tests.js</code></li> <li><a href="https://github.com/evanw/esbuild/commit/6794f602a453cf0255bcae245871de120a89a559"><code>6794f60</code></a> fix <code>hosts</code> in <code>node-unref-tests.js</code></li> <li><a href="https://github.com/evanw/esbuild/commit/de85afd65edec9ebc44a11e245fd9e9a2e99760d"><code>de85afd</code></a> Merge commit from fork</li> <li><a href="https://github.com/evanw/esbuild/commit/da1de1bf77a65f06654b49878d9ec4747ddaa21f"><code>da1de1b</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4065">#4065</a>: bitwise operators can return bigints</li> <li><a href="https://github.com/evanw/esbuild/commit/f4e9d19fb20095a98bf40634f0380f6a16be91e7"><code>f4e9d19</code></a> switch case liveness: <code>default</code> is always last</li> <li><a href="https://github.com/evanw/esbuild/commit/7aa47c3e778ea04849f97f18dd9959df88fa0886"><code>7aa47c3</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4028">#4028</a>: minify live/dead <code>switch</code> cases better</li> <li><a href="https://github.com/evanw/esbuild/commit/22ecd306190b8971ec4474b5485266c20350e266"><code>22ecd30</code></a> minify: more constant folding for strict equality</li> <li><a href="https://github.com/evanw/esbuild/commit/4cdf03c03697128044fa8fb76e5c478e9765b353"><code>4cdf03c</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4053">#4053</a>: reordering of <code>.tsx</code> in <code>node_modules</code></li> <li><a href="https://github.com/evanw/esbuild/commit/dc719775b7140120916bd9e6777ca1cb8a1cdc0e"><code>dc71977</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/3692">#3692</a>: <code>0</code> now picks a random ephemeral port</li> <li>Additional commits viewable in <a href="https://github.com/evanw/esbuild/compare/v0.21.5...v0.25.0">compare view</a></li> </ul> </details> <br /> Updates `@vitejs/plugin-react-swc` from 3.7.1 to 3.8.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite-plugin-react-swc/releases"><code>@​vitejs/plugin-react-swc</code>'s releases</a>.</em></p> <blockquote> <h2>v3.8.0</h2> <h3>Add useAtYourOwnRisk_mutateSwcOptions option</h3> <p>The future of Vite is with OXC, and from the beginning this was a design choice to not exposed too many specialties from SWC so that Vite React users can move to another transformer later. Also debugging why some specific version of decorators with some other unstable/legacy feature doesn't work is not fun, so we won't provide support for it, hence the name <code>useAtYourOwnRisk</code>.</p> <pre lang="ts"><code>react({ useAtYourOwnRisk_mutateSwcOptions(options) { options.jsc.parser.decorators = true; options.jsc.transform.decoratorVersion = &quot;2022-03&quot;; }, }); </code></pre> <h2>v3.7.2</h2> <h3>Add Vite 6 to peerDependencies range <a href="https://redirect.github.com/vitejs/vite-plugin-react-swc/pull/207">#207</a></h3> <p>Thanks <a href="https://github.com/RobinTail"><code>@​RobinTail</code></a></p> <h3>Revert throw when refresh runtime is loaded twice <a href="https://redirect.github.com/vitejs/vite-plugin-react-swc/issues/237">#237</a></h3> <p>Revert the throw when refresh runtime is loaded twice to enable usage in micro frontend apps. This was added to help fix setup usage, and this is not worth an annoying warning for others or a config parameter.</p> <p>This revert was done in the Babel plugin last year and I didn't port it back.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite-plugin-react-swc/blob/main/CHANGELOG.md"><code>@​vitejs/plugin-react-swc</code>'s changelog</a>.</em></p> <blockquote> <h2>3.8.0</h2> <h3>Add useAtYourOwnRisk_mutateSwcOptions option</h3> <p>The future of Vite is with OXC, and from the beginning this was a design choice to not exposed too many specialties from SWC so that Vite React users can move to another transformer later. Also debugging why some specific version of decorators with some other unstable/legacy feature doesn't work is not fun, so we won't provide support for it, hence the name <code>useAtYourOwnRisk</code>.</p> <pre lang="ts"><code>react({ useAtYourOwnRisk_mutateSwcOptions(options) { options.jsc.parser.decorators = true; options.jsc.transform.decoratorVersion = &quot;2022-03&quot;; }, }); </code></pre> <h2>3.7.2</h2> <h3>Add Vite 6 to peerDependencies range <a href="https://redirect.github.com/vitejs/vite-plugin-react-swc/pull/207">#207</a></h3> <p>Thanks <a href="https://github.com/RobinTail"><code>@​RobinTail</code></a></p> <h3>Revert throw when refresh runtime is loaded twice <a href="https://redirect.github.com/vitejs/vite-plugin-react-swc/issues/237">#237</a></h3> <p>Revert the throw when refresh runtime is loaded twice to enable usage in micro frontend apps. This was added to help fix setup usage, and this is not worth an annoying warning for others or a config parameter.</p> <p>This revert was done in the Babel plugin last year and I didn't port it back.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitejs/vite-plugin-react-swc/commit/f79b137f50084a902312cd829eb1be0e56466f0e"><code>f79b137</code></a> release: v3.8.0</li> <li><a href="https://github.com/vitejs/vite-plugin-react-swc/commit/ea18caa8dd48b697e71375284c690ccfe0280456"><code>ea18caa</code></a> fix(deps): update all non-major dependencies (<a href="https://redirect.github.com/vitejs/vite-plugin-react-swc/issues/233">#233</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-react-swc/commit/374377ad1a6e1624af842f273134e2780c812c50"><code>374377a</code></a> fix(deps): update dependency react-router-dom to v7 (<a href="https://redirect.github.com/vitejs/vite-plugin-react-swc/issues/245">#245</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-react-swc/commit/b91516a70f98401b8e4e2d3ff39e76a3516258df"><code>b91516a</code></a> chore(deps): update dependency <code>@​types/node</code> to v22 (<a href="https://redirect.github.com/vitejs/vite-plugin-react-swc/issues/240">#240</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-react-swc/commit/e546701655432ca400f6acfcf069150abe898349"><code>e546701</code></a> chore: test against React 18 &amp; React 19 (<a href="https://redirect.github.com/vitejs/vite-plugin-react-swc/issues/261">#261</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-react-swc/commit/b55e68ff6a09c06ef96848b3b942640e7ada8cc0"><code>b55e68f</code></a> doc: remove outdated section (<a href="https://redirect.github.com/vitejs/vite-plugin-react-swc/issues/260">#260</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-react-swc/commit/f499d75f3b20dbf2a0944047e474e249cb5f5404"><code>f499d75</code></a> feat: add useAtYourOwnRisk_mutateSwcOptions option (<a href="https://redirect.github.com/vitejs/vite-plugin-react-swc/issues/255">#255</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-react-swc/commit/f642b2256135d3fbcdf01d63af41febe3dd83591"><code>f642b22</code></a> release: v3.7.2</li> <li><a href="https://github.com/vitejs/vite-plugin-react-swc/commit/def01487011716589a7f6f695f733e712f704aea"><code>def0148</code></a> Add Vite 6 to peerDependencies range (<a href="https://redirect.github.com/vitejs/vite-plugin-react-swc/issues/207">#207</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-react-swc/commit/beb09db39d4930a0013916508648e21d1d76d3e9"><code>beb09db</code></a> fix: revert throw when refresh runtime is loaded twice (fixes <a href="https://redirect.github.com/vitejs/vite-plugin-react-swc/issues/234">#234</a>) (<a href="https://redirect.github.com/vitejs/vite-plugin-react-swc/issues/237">#237</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vitejs/vite-plugin-react-swc/compare/v3.7.1...v3.8.0">compare view</a></li> </ul> </details> <br /> Updates `@vitest/coverage-v8` from 2.1.9 to 3.0.7 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vitest-dev/vitest/releases"><code>@​vitest/coverage-v8</code>'s releases</a>.</em></p> <blockquote> <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/issues/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><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)<!-- raw HTML omitted --></a></li> <li>Relax locator selectors methods  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7422">vitest-dev/vitest#7422</a> <a href="https://github.com/vitest-dev/vitest/commit/1b8c5c9e"><!-- raw HTML omitted -->(1b8c5)<!-- raw HTML omitted --></a></li> <li>Resolve thread count from <code>maxWorkers</code>  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7483">vitest-dev/vitest#7483</a> <a href="https://github.com/vitest-dev/vitest/commit/adbb25ab"><!-- raw HTML omitted -->(adbb2)<!-- raw HTML omitted --></a></li> <li>Cleanup timeout on resolve and give more information in the error  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7487">vitest-dev/vitest#7487</a> <a href="https://github.com/vitest-dev/vitest/commit/5a45a7ca"><!-- raw HTML omitted -->(5a45a)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>coverage</strong>: <ul> <li><code>vite-node</code> to pass correct execution wrapper offset  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7417">vitest-dev/vitest#7417</a> <a href="https://github.com/vitest-dev/vitest/commit/1f2e5552"><!-- raw HTML omitted -->(1f2e5)<!-- raw HTML omitted --></a></li> <li>Preserve moduleExecutionInfo in non-isolated runs  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7486">vitest-dev/vitest#7486</a> <a href="https://github.com/vitest-dev/vitest/commit/f31a07bb"><!-- raw HTML omitted -->(f31a0)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>deps</strong>: <ul> <li>Update all non-major dependencies  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7363">vitest-dev/vitest#7363</a> <a href="https://github.com/vitest-dev/vitest/commit/e348bd4c"><!-- raw HTML omitted -->(e348b)<!-- raw HTML omitted --></a></li> <li>Update all non-major dependencies  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7507">vitest-dev/vitest#7507</a> <a href="https://github.com/vitest-dev/vitest/commit/6cc408d6"><!-- raw HTML omitted -->(6cc40)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>init</strong>: <ul> <li>Invalid browser config  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7475">vitest-dev/vitest#7475</a> <a href="https://github.com/vitest-dev/vitest/commit/8fe641b4"><!-- raw HTML omitted -->(8fe64)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>reporters</strong>: <ul> <li>Render tasks in tree when in TTY  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7503">vitest-dev/vitest#7503</a> <a href="https://github.com/vitest-dev/vitest/commit/027ce9bb"><!-- raw HTML omitted -->(027ce)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>vite-node</strong>: <ul> <li>Remove fake first line mapping 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/7124">vitest-dev/vitest#7124</a> <a href="https://github.com/vitest-dev/vitest/commit/b997355b"><!-- raw HTML omitted -->(b9973)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>watch</strong>: <ul> <li>Properly remove cache after removing existing test files  -  by <a href="https://github.com/soc221b"><code>@​soc221b</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7399">vitest-dev/vitest#7399</a> <a href="https://github.com/vitest-dev/vitest/commit/01a59721"><!-- raw HTML omitted -->(01a59)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>workspace</strong>: <ul> <li>Forward <code>inspect</code> related cli options  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7373">vitest-dev/vitest#7373</a> <a href="https://github.com/vitest-dev/vitest/commit/ed15b5b3"><!-- raw HTML omitted -->(ed15b)<!-- raw HTML omitted --></a></li> </ul> </li> </ul> <h5>    <a href="https://github.com/vitest-dev/vitest/compare/v3.0.5...v3.0.6">View changes on GitHub</a></h5> <h2>v3.0.5</h2> <p>This release includes security patches for:</p> <ul> <li><a href="https://github.com/vitest-dev/vitest/security/advisories/GHSA-9crc-q9x8-hgqq">Remote Code Execution when accessing a malicious website while Vitest API server is listening | CVE-2025-24964</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitest-dev/vitest/commit/358cccfb8f21db00ff8f2b7d616fda864f491e71"><code>358cccf</code></a> chore: release v3.0.7</li> <li><a href="https://github.com/vitest-dev/vitest/commit/9584be337f00e22475895360cb5cfa5dc0775e79"><code>9584be3</code></a> chore: release v3.0.6</li> <li><a href="https://github.com/vitest-dev/vitest/commit/6cc408d66445de5472f61ea527ceea6e0dddb16e"><code>6cc408d</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8/issues/7507">#7507</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/accd2edaeff7aca01392452ff9d2753d4e448ac5"><code>accd2ed</code></a> refactor: enable <code>isolatedDeclarations</code> (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8/issues/7473">#7473</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/1f2e55522a65f0f576da6e9abdf75d34150bd73c"><code>1f2e555</code></a> fix(coverage): <code>vite-node</code> to pass correct execution wrapper offset (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8/issues/7417">#7417</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/115466265d23622d75f0d798641354a18e285072"><code>1154662</code></a> chore: release v3.0.5</li> <li><a href="https://github.com/vitest-dev/vitest/commit/9e404375825d870ed9d90db854d96f77a7abeaff"><code>9e40437</code></a> chore: release v3.0.4</li> <li><a href="https://github.com/vitest-dev/vitest/commit/38ea8eaef86f808a4c088f7439d138458a8b16a3"><code>38ea8ea</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8/issues/7297">#7297</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/33ab8a244a9fe02a929bc6cfa21712d60b0718f8"><code>33ab8a2</code></a> chore: release v3.0.3</li> <li><a href="https://github.com/vitest-dev/vitest/commit/f17918a79969d27a415f70431e08a9445b051e45"><code>f17918a</code></a> chore: release v3.0.2</li> <li>Additional commits viewable in <a href="https://github.com/vitest-dev/vitest/commits/v3.0.7/packages/coverage-v8">compare view</a></li> </ul> </details> <br /> Updates `eslint-config-hyoban` from 3.1.12 to 3.2.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/hyoban/eslint-config-hyoban/releases">eslint-config-hyoban's releases</a>.</em></p> <blockquote> <h2>v3.2.1</h2> <h3>   🐞 Bug Fixes</h3> <ul> <li>Update deps  -  by <a href="https://github.com/hyoban"><code>@​hyoban</code></a> <a href="https://github.com/hyoban/eslint-config-hyoban/commit/b9957eb"><!-- raw HTML omitted -->(b9957)<!-- raw HTML omitted --></a></li> </ul> <h5>    <a href="https://github.com/hyoban/eslint-config-hyoban/compare/v3.2.0...v3.2.1">View changes on GitHub</a></h5> <h2>v3.2.0</h2> <h3>   🚀 Features</h3> <ul> <li>Introduce eslint-plugin-react-google-translate  -  by <a href="https://github.com/hyoban"><code>@​hyoban</code></a> <a href="https://github.com/hyoban/eslint-config-hyoban/commit/a76d5d0"><!-- raw HTML omitted -->(a76d5)<!-- raw HTML omitted --></a></li> </ul> <h3>   🐞 Bug Fixes</h3> <ul> <li>Update deps  -  by <a href="https://github.com/hyoban"><code>@​hyoban</code></a> <a href="https://github.com/hyoban/eslint-config-hyoban/commit/582e0b1"><!-- raw HTML omitted -->(582e0)<!-- raw HTML omitted --></a></li> </ul> <h5>    <a href="https://github.com/hyoban/eslint-config-hyoban/compare/v3.1.16...v3.2.0">View changes on GitHub</a></h5> <h2>v3.1.15</h2> <h3>   🐞 Bug Fixes</h3> <ul> <li>Update deps  -  by <strong>Stephen Zhou</strong> <a href="https://github.com/hyoban/eslint-config-hyoban/commit/4692664"><!-- raw HTML omitted -->(46926)<!-- raw HTML omitted --></a></li> </ul> <h5>    <a href="https://github.com/hyoban/eslint-config-hyoban/compare/v3.1.14...v3.1.15">View changes on GitHub</a></h5> <h2>v3.1.14</h2> <h3>   🐞 Bug Fixes</h3> <ul> <li>Update deps  -  by <strong>Stephen Zhou</strong> <a href="https://github.com/hyoban/eslint-config-hyoban/commit/0fddb45"><!-- raw HTML omitted -->(0fddb)<!-- raw HTML omitted --></a></li> </ul> <h5>    <a href="https://github.com/hyoban/eslint-config-hyoban/compare/v3.1.13...v3.1.14">View changes on GitHub</a></h5> <h2>v3.1.13</h2> <h3>   🐞 Bug Fixes</h3> <ul> <li>Update deps  -  by <a href="https://github.com/hyoban"><code>@​hyoban</code></a> <a href="https://github.com/hyoban/eslint-config-hyoban/commit/ddd9225"><!-- raw HTML omitted -->(ddd92)<!-- raw HTML omitted --></a></li> </ul> <h5>    <a href="https://github.com/hyoban/eslint-config-hyoban/compare/v3.1.12...v3.1.13">View changes on GitHub</a></h5> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/hyoban/eslint-config-hyoban/commit/5b81f621436a1d9875f2921be0adbb628c3e1dc3"><code>5b81f62</code></a> chore: release v3.2.1</li> <li><a href="https://github.com/hyoban/eslint-config-hyoban/commit/b9957eb8923cdf030de12a9c66aa05095ba00858"><code>b9957eb</code></a> fix: update deps</li> <li><a href="https://github.com/hyoban/eslint-config-hyoban/commit/d2206d4f0c501fc1d8d53a6bc40919a18460457f"><code>d2206d4</code></a> chore: release v3.2.0</li> <li><a href="https://github.com/hyoban/eslint-config-hyoban/commit/582e0b1a81d2bfc8ac9c56f2010055a6905d179e"><code>582e0b1</code></a> fix: update deps</li> <li><a href="https://github.com/hyoban/eslint-config-hyoban/commit/a76d5d0451b08441218b77b3b3a54227e744db2a"><code>a76d5d0</code></a> feat: introduce eslint-plugin-react-google-translate</li> <li><a href="https://github.com/hyoban/eslint-config-hyoban/commit/c4ef57aa7d43b0c1294e9f6640a70ecff67c350d"><code>c4ef57a</code></a> chore: release v3.1.16</li> <li><a href="https://github.com/hyoban/eslint-config-hyoban/commit/6dd856ce556c098f91dba249ac27d5cab513d492"><code>6dd856c</code></a> fix: update deps</li> <li><a href="https://github.com/hyoban/eslint-config-hyoban/commit/83e1f7906d459693c654a97043123698d9aa23fb"><code>83e1f79</code></a> chore: release v3.1.15</li> <li><a href="https://github.com/hyoban/eslint-config-hyoban/commit/469266476077db26da4ece630fb3f44ef5f190f4"><code>4692664</code></a> fix: update deps</li> <li><a href="https://github.com/hyoban/eslint-config-hyoban/commit/6362414dfac4cc73ae500f8bdf6cacf364ed52cb"><code>6362414</code></a> chore: release v3.1.14</li> <li>Additional commits viewable in <a href="https://github.com/hyoban/eslint-config-hyoban/compare/v3.1.12...v3.2.1">compare view</a></li> </ul> </details> <br /> Updates `tsx` from 4.19.2 to 4.19.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/privatenumber/tsx/releases">tsx's releases</a>.</em></p> <blockquote> <h2>v4.19.3</h2> <h2><a href="https://github.com/privatenumber/tsx/compare/v4.19.2...v4.19.3">4.19.3</a> (2025-02-19)</h2> <h3>Bug Fixes</h3> <ul> <li>upgrade <code>esbuild</code> to <code>~0.25.0</code> to address vuln report (<a href="https://redirect.github.com/privatenumber/tsx/issues/698">#698</a>) (<a href="https://github.com/privatenumber/tsx/commit/e04e6c6ccb56f74db5036c358d6c6b24bebe6319">e04e6c6</a>)</li> </ul> <hr /> <p>This release is also available on:</p> <ul> <li><a href="https://www.npmjs.com/package/tsx/v/4.19.3"><code>npm package (@​latest dist-tag)</code></a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/privatenumber/tsx/commit/e04e6c6ccb56f74db5036c358d6c6b24bebe6319"><code>e04e6c6</code></a> fix: upgrade <code>esbuild</code> to <code>~0.25.0</code> to address vuln report (<a href="https://redirect.github.com/privatenumber/tsx/issues/698">#698</a>)</li> <li><a href="https://github.com/privatenumber/tsx/commit/28a3e7d2b8fd72b683aab8a98dd1fcee4624e4cb"><code>28a3e7d</code></a> docs: update links to <code>npx</code> (<a href="https://redirect.github.com/privatenumber/tsx/issues/680">#680</a>)</li> <li><a href="https://github.com/privatenumber/tsx/commit/38b7135c0c412cde85a48ec6445085f3df173d2d"><code>38b7135</code></a> docs: add carbon ads</li> <li>See full diff in <a href="https://github.com/privatenumber/tsx/compare/v4.19.2...v4.19.3">compare view</a></li> </ul> </details> <br /> Updates `vite` from 5.4.14 to 6.2.0 <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.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> <h2>v6.0.8</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.0.8/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v6.0.7</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.0.7/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>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> <li>fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19440">#19440</a>) (<a href="https://github.com/vitejs/vite/commit/ccac73d9d0e92c7232f09207d1d6b893e823ed8e">ccac73d</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19440">#19440</a></li> <li>fix(html): ignore malformed src attrs (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19397">#19397</a>) (<a href="https://github.com/vitejs/vite/commit/aff7812f0aed059c05ca36c86bf907d25964119a">aff7812</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19397">#19397</a></li> <li>fix(worker): fix web worker type detection (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19462">#19462</a>) (<a href="https://github.com/vitejs/vite/commit/edc65eafa332b57ce44835deb7d7707e2d036c24">edc65ea</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19462">#19462</a></li> <li>refactor: remove custom .jxl mime (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19457">#19457</a>) (<a href="https://github.com/vitejs/vite/commit/0c854645bd17960abbe8f01b602d1a1da1a2b9fd">0c85464</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19457">#19457</a></li> <li>feat: add support for injecting debug IDs (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18763">#18763</a>) (<a href="https://github.com/vitejs/vite/commit/0ff556a6d9b55bff7cac17396ce7d4397becacaa">0ff556a</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/18763">#18763</a></li> <li>chore: update 6.1.0 changelog (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19363">#19363</a>) (<a href="https://github.com/vitejs/vite/commit/fa7c211bf3e51269f8a8601e5994fb3ebb6859f9">fa7c211</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19363">#19363</a></li> </ul> <h2>6.1.0 (2025-02-05)</h2> <h3>Features</h3> <ul> <li>feat: show hosts in cert in CLI (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19317">#19317</a>) (<a href="https://github.com/vitejs/vite/commit/a5e306f2fc34fc70d543028c319367ff9b232ea0">a5e306f</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19317">#19317</a></li> <li>feat: support for env var for defining allowed hosts (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19325">#19325</a>) (<a href="https://github.com/vitejs/vite/commit/4d88f6c9391f96275b1359f1343ee2ec3e1adb7b">4d88f6c</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19325">#19325</a></li> <li>feat: use native runtime to import the config (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19178">#19178</a>) (<a href="https://github.com/vitejs/vite/commit/7c2a7942cc8494a98fbc2b0235d91faf25242d30">7c2a794</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19178">#19178</a></li> <li>feat: print <code>port</code> in the logged error message after failed WS connection with <code>EADDRINUSE</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19212">#19212</a>) (<a href="https://github.com/vitejs/vite/commit/14027b0f2a9b01c14815c38aab22baf5b29594bb">14027b0</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19212">#19212</a></li> <li>perf(css): only run postcss when needed (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19061">#19061</a>) (<a href="https://github.com/vitejs/vite/commit/30194fa1e41dda6470aa20f2bb34655c4bfd9cd1">30194fa</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/19061">#19061</a></li> <li>feat: add support for <code>.jxl</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18855">#18855</a>) (<a href="https://github.com/vitejs/vite/commit/57b397c4aa3d3c657e0117c2468800d627049c8d">57b397c</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/18855">#18855</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/fa7c211bf3e51269f8a8601e5994fb3ebb6859f9"><code>fa7c211</code></a> chore: update 6.1.0 changelog (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19363">#19363</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/051370a332df99d107365ed6beab418ef017eff6"><code>051370a</code></a> release: v6.1.0</li> <li><a href="https://github.com/vitejs/vite/commit/6e0e3c0b990f1132db923e4599e18b270baa3a93"><code>6e0e3c0</code></a> refactor: deprecate <code>vite optimize</code> command (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19348">#19348</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/7c2a7942cc8494a98fbc2b0235d91faf25242d30"><code>7c2a794</code></a> feat: use native runtime to import the config (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19178">#19178</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/fcd578587b2fbdef0ff8de8a0d97c9fc6da19ce1"><code>fcd5785</code></a> fix(build): fix stale build manifest on watch rebuild (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19361">#19361</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/a5e306f2fc34fc70d543028c319367ff9b232ea0"><code>a5e306f</code></a> feat: show hosts in cert in CLI (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19317">#19317</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/4d88f6c9391f96275b1359f1343ee2ec3e1adb7b"><code>4d88f6c</code></a> feat: support for env var for defining allowed hosts (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19325">#19325</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/fdb36e076969c763d4249f6db890f8bf26e9f5d1"><code>fdb36e0</code></a> fix: avoid builtStart during vite optimize (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19356">#19356</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/5ce7443462068c5d8ee76144dd23376762a7b3fe"><code>5ce7443</code></a> release: v6.1.0-beta.2</li> <li><a href="https://github.com/vitejs/vite/commit/e7b4ba37f90a033036326b45023a1753584dd259"><code>e7b4ba3</code></a> fix(html): fix css disorder when building multiple entry html (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19143">#19143</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vitejs/vite/commits/create-vite@6.2.0/packages/vite">compare view</a></li> </ul> </details> <br /> Updates `vitest` from 2.1.9 to 3.0.7 <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.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/issues/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><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)<!-- raw HTML omitted --></a></li> <li>Relax locator selectors methods  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7422">vitest-dev/vitest#7422</a> <a href="https://github.com/vitest-dev/vitest/commit/1b8c5c9e"><!-- raw HTML omitted -->(1b8c5)<!-- raw HTML omitted --></a></li> <li>Resolve thread count from <code>maxWorkers</code>  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7483">vitest-dev/vitest#7483</a> <a href="https://github.com/vitest-dev/vitest/commit/adbb25ab"><!-- raw HTML omitted -->(adbb2)<!-- raw HTML omitted --></a></li> <li>Cleanup timeout on resolve and give more information in the error  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7487">vitest-dev/vitest#7487</a> <a href="https://github.com/vitest-dev/vitest/commit/5a45a7ca"><!-- raw HTML omitted -->(5a45a)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>coverage</strong>: <ul> <li><code>vite-node</code> to pass correct execution wrapper offset  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7417">vitest-dev/vitest#7417</a> <a href="https://github.com/vitest-dev/vitest/commit/1f2e5552"><!-- raw HTML omitted -->(1f2e5)<!-- raw HTML omitted --></a></li> <li>Preserve moduleExecutionInfo in non-isolated runs  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7486">vitest-dev/vitest#7486</a> <a href="https://github.com/vitest-dev/vitest/commit/f31a07bb"><!-- raw HTML omitted -->(f31a0)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>deps</strong>: <ul> <li>Update all non-major dependencies  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7363">vitest-dev/vitest#7363</a> <a href="https://github.com/vitest-dev/vitest/commit/e348bd4c"><!-- raw HTML omitted -->(e348b)<!-- raw HTML omitted --></a></li> <li>Update all non-major dependencies  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7507">vitest-dev/vitest#7507</a> <a href="https://github.com/vitest-dev/vitest/commit/6cc408d6"><!-- raw HTML omitted -->(6cc40)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>init</strong>: <ul> <li>Invalid browser config  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7475">vitest-dev/vitest#7475</a> <a href="https://github.com/vitest-dev/vitest/commit/8fe641b4"><!-- raw HTML omitted -->(8fe64)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>reporters</strong>: <ul> <li>Render tasks in tree when in TTY  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7503">vitest-dev/vitest#7503</a> <a href="https://github.com/vitest-dev/vitest/commit/027ce9bb"><!-- raw HTML omitted -->(027ce)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>vite-node</strong>: <ul> <li>Remove fake first line mapping 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/7124">vitest-dev/vitest#7124</a> <a href="https://github.com/vitest-dev/vitest/commit/b997355b"><!-- raw HTML omitted -->(b9973)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>watch</strong>: <ul> <li>Properly remove cache after removing existing test files  -  by <a href="https://github.com/soc221b"><code>@​soc221b</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7399">vitest-dev/vitest#7399</a> <a href="https://github.com/vitest-dev/vitest/commit/01a59721"><!-- raw HTML omitted -->(01a59)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>workspace</strong>: <ul> <li>Forward <code>inspect</code> related cli options  -  by <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7373">vitest-dev/vitest#7373</a> <a href="https://github.com/vitest-dev/vitest/commit/ed15b5b3"><!-- raw HTML omitted -->(ed15b)<!-- raw HTML omitted --></a></li> </ul> </li> </ul> <h5>    <a href="https://github.com/vitest-dev/vitest/compare/v3.0.5...v3.0.6">View changes on GitHub</a></h5> <h2>v3.0.5</h2> <p>This release includes security patches for:</p> <ul> <li><a href="https://github.com/vitest-dev/vitest/security/advisories/GHSA-9crc-q9x8-hgqq">Remote Code Execution when accessing a malicious website while Vitest API server is listening | CVE-2025-24964</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitest-dev/vitest/commit/358cccfb8f21db00ff8f2b7d616fda864f491e71"><code>358cccf</code></a> chore: release v3.0.7</li> <li><a href="https://github.com/vitest-dev/vitest/commit/365ffe6b4ce96b16e96d72b989c7666b0422c516"><code>365ffe6</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7543">#7543</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/aaa58556e6d6794726c3cc359a3242fc788c3ebf"><code>aaa5855</code></a> perf(browser): do wdio context switching only once per file (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7549">#7549</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/f71004ffa379fc290031e628857ea4f3fb5d44c8"><code>f71004f</code></a> fix(spy): clear/reset/restore mocks in stack order (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7499">#7499</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/9584be337f00e22475895360cb5cfa5dc0775e79"><code>9584be3</code></a> chore: release v3.0.6</li> <li><a href="https://github.com/vitest-dev/vitest/commit/027ce9bbf73c560006c372d68bcde867c80f9c2d"><code>027ce9b</code></a> fix(reporters): render tasks in tree when in TTY (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7503">#7503</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/b62ac2280e1b8b1dd4bb8a2376bf22720fb27b77"><code>b62ac22</code></a> chore: use <code>tinyglobby</code> instead of <code>fast-glob</code> in Vitest (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7504">#7504</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/167a98d77c8095288fcf193f8dfff0dd5cd44fa1"><code>167a98d</code></a> fix: exclude <code>queueMicrotask</code> from default fake timers to not break node fetc...</li> <li><a href="https://github.com/vitest-dev/vitest/commit/6cc408d66445de5472f61ea527ceea6e0dddb16e"><code>6cc408d</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7507">#7507</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/8f138257ba9efbc32e498e7711907870197ce8e0"><code>8f13825</code></a> docs: fix <code>sequence.hooks: 'stack'</code> as default (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7492">#7492</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vitest-dev/vitest/commits/v3.0.7/packages/vitest">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/vxcontrol/pentagi/network/alerts). </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-06-06 22:09:16 -04:00
yindo closed this issue 2026-06-06 22:09:16 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: vxcontrol/pentagi#120