Skip to content

Commit 1f88eb4

Browse files
⬆️ Bump the dependencies group with 4 updates (#240)
Bumps the dependencies group with 4 updates: [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome), [@modelcontextprotocol/sdk](https://github.com/modelcontextprotocol/typescript-sdk), [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) and [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). Updates `@biomejs/biome` from 2.4.8 to 2.4.9 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/biomejs/biome/releases"><code>@​biomejs/biome</code>'s releases</a>.</em></p> <blockquote> <h2>Biome CLI v2.4.9</h2> <h2>2.4.9</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9315">#9315</a> <a href="https://github.com/biomejs/biome/commit/085d324b963f12b4ceaf901c36875b196d383cc4"><code>085d324</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Added a new nursery CSS rule <a href="https://biomejs.dev/linter/rules/no-duplicate-selectors/"><code>noDuplicateSelectors</code></a>, that disallows duplicate selector lists within the same at-rule context.</p> <p>For example, the following snippet triggers the rule because the second selector and the first selector are the same:</p> <pre lang="css"><code>/* First selector */ .x .y .z { } <p>/* Second selector */ .x { .y { .z { } } } </code></pre></p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9567">#9567</a> <a href="https://github.com/biomejs/biome/commit/b7ab931be14f5e61e5716a345c7ef0da59abb016"><code>b7ab931</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/7211">#7211</a>: <a href="https://biomejs.dev/linter/rules/use-optional-chain/"><code>useOptionalChain</code></a> now detects negated logical OR chains. The following code is now considered invalid:</p> <pre lang="js"><code>!foo || !foo.bar; </code></pre> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/8670">#8670</a> <a href="https://github.com/biomejs/biome/commit/607ebf9eacec1480f57e06deea46c99174b000a2"><code>607ebf9</code></a> Thanks <a href="https://github.com/tt-a1i"><code>@​tt-a1i</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/8345">#8345</a>: <a href="https://biomejs.dev/linter/rules/use-adjacent-overload-signatures/"><code>useAdjacentOverloadSignatures</code></a> no longer reports false positives for static and instance methods with the same name. Static methods and instance methods are now treated as separate overload groups.</p> <pre lang="ts"><code>class Kek { static kek(): number { return 0; } another(): string { return &quot;&quot;; } kek(): number { return 1; } // no longer reported as non-adjacent } </code></pre> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9476">#9476</a> <a href="https://github.com/biomejs/biome/commit/97b80a8b017dc3a56542bfe01b6dadab081729bf"><code>97b80a8</code></a> Thanks <a href="https://github.com/masterkain"><code>@​masterkain</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/9475"><code>[#9475](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9475)</code></a>: Fixed a panic when Biome analyzed ambient TypeScript modules containing class constructor, getter, or setter signatures that reference local type aliases. Biome now handles these declarations without crashing during semantic analysis.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9553">#9553</a> <a href="https://github.com/biomejs/biome/commit/0cd5298fecae7961c458b026b37f80a8ab98880f"><code>0cd5298</code></a> Thanks <a href="https://github.com/dyc3"><code>@​dyc3</code></a>! - Fixed a bug where enabling the rules of a whole group, would enable rules that belonged to a domain under the same group.</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md"><code>@​biomejs/biome</code>'s changelog</a>.</em></p> <blockquote> <h2>2.4.9</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9315">#9315</a> <a href="https://github.com/biomejs/biome/commit/085d324b963f12b4ceaf901c36875b196d383cc4"><code>085d324</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Added a new nursery CSS rule <a href="https://biomejs.dev/linter/rules/no-duplicate-selectors/"><code>noDuplicateSelectors</code></a>, that disallows duplicate selector lists within the same at-rule context.</p> <p>For example, the following snippet triggers the rule because the second selector and the first selector are the same:</p> <pre lang="css"><code>/* First selector */ .x .y .z { } <p>/* Second selector */ .x { .y { .z { } } } </code></pre></p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9567">#9567</a> <a href="https://github.com/biomejs/biome/commit/b7ab931be14f5e61e5716a345c7ef0da59abb016"><code>b7ab931</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/7211">#7211</a>: <a href="https://biomejs.dev/linter/rules/use-optional-chain/"><code>useOptionalChain</code></a> now detects negated logical OR chains. The following code is now considered invalid:</p> <pre lang="js"><code>!foo || !foo.bar; </code></pre> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/8670">#8670</a> <a href="https://github.com/biomejs/biome/commit/607ebf9eacec1480f57e06deea46c99174b000a2"><code>607ebf9</code></a> Thanks <a href="https://github.com/tt-a1i"><code>@​tt-a1i</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/8345">#8345</a>: <a href="https://biomejs.dev/linter/rules/use-adjacent-overload-signatures/"><code>useAdjacentOverloadSignatures</code></a> no longer reports false positives for static and instance methods with the same name. Static methods and instance methods are now treated as separate overload groups.</p> <pre lang="ts"><code>class Kek { static kek(): number { return 0; } another(): string { return &quot;&quot;; } kek(): number { return 1; } // no longer reported as non-adjacent } </code></pre> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9476">#9476</a> <a href="https://github.com/biomejs/biome/commit/97b80a8b017dc3a56542bfe01b6dadab081729bf"><code>97b80a8</code></a> Thanks <a href="https://github.com/masterkain"><code>@​masterkain</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/9475"><code>[#9475](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9475)</code></a>: Fixed a panic when Biome analyzed ambient TypeScript modules containing class constructor, getter, or setter signatures that reference local type aliases. Biome now handles these declarations without crashing during semantic analysis.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9553">#9553</a> <a href="https://github.com/biomejs/biome/commit/0cd5298fecae7961c458b026b37f80a8ab98880f"><code>0cd5298</code></a> Thanks <a href="https://github.com/dyc3"><code>@​dyc3</code></a>! - Fixed a bug where enabling the rules of a whole group, would enable rules that belonged to a domain under the same group.</p> <p>For example, <code>linter.rules.correctness = &quot;error&quot;</code> no longer enables React- or Qwik-specific correctness rules unless <code>linter.domains.react</code>, <code>linter.domains.qwik</code>, or an explicit rule config also enables them, or their relative dependencies are installed.</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/biomejs/biome/commit/ad3752696c34f0ad30311a2a70de1f9b18b31530"><code>ad37526</code></a> ci: release (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9620">#9620</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/eb57e3a1df36bf1bbe612f84a68ded658d9b7d00"><code>eb57e3a</code></a> chore: use npmx.dev badge (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9614">#9614</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/e1684948cee6572583ab62019a300cf2a7d1d826"><code>e168494</code></a> feat(linter): add rule <code>noUntrustedLicenses</code> (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9474">#9474</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/085d324b963f12b4ceaf901c36875b196d383cc4"><code>085d324</code></a> feat(css): add <code>noDuplicateSelectors</code> (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9315">#9315</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/4d050df5e3276dd54b6962fca6eeaf8cdcd6f295"><code>4d050df</code></a> feat(analyze): implement noInlineStyles (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9534">#9534</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/723798b7cd5d6b27cf6ab653ea6046f66610b402"><code>723798b</code></a> feat: apply fix to use consistent method signatures (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9544">#9544</a>)</li> <li>See full diff in <a href="https://github.com/biomejs/biome/commits/@biomejs/biome@2.4.9/packages/@biomejs/biome">compare view</a></li> </ul> </details> <br /> Updates `@modelcontextprotocol/sdk` from 1.27.1 to 1.28.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/modelcontextprotocol/typescript-sdk/releases"><code>@​modelcontextprotocol/sdk</code>'s releases</a>.</em></p> <blockquote> <h2>v1.28.0</h2> <h2>What's Changed</h2> <ul> <li>feat: use scopes_supported from resource metadata by default (fixes <a href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/issues/580">#580</a>) by <a href="https://github.com/antogyn"><code>@​antogyn</code></a> in <a href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/757">modelcontextprotocol/typescript-sdk#757</a></li> <li>[v1.x backport] Default to client_secret_basic when server omits token_endpoint_auth_methods_supported by <a href="https://github.com/pcarleton"><code>@​pcarleton</code></a> in <a href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1611">modelcontextprotocol/typescript-sdk#1611</a></li> <li>fix: reject plain JSON Schema objects passed as inputSchema by <a href="https://github.com/tiluckdave"><code>@​tiluckdave</code></a> in <a href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1596">modelcontextprotocol/typescript-sdk#1596</a></li> <li>fix: clear _timeoutInfo in _onclose() and scope .finally() abort controller cleanup by <a href="https://github.com/pcarleton"><code>@​pcarleton</code></a> in <a href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1462">modelcontextprotocol/typescript-sdk#1462</a></li> <li>fix(server/auth): RFC 8252 loopback port relaxation by <a href="https://github.com/poteat"><code>@​poteat</code></a> in <a href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1738">modelcontextprotocol/typescript-sdk#1738</a></li> <li>chore: bump version to 1.28.0 by <a href="https://github.com/felixweinberger"><code>@​felixweinberger</code></a> in <a href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1746">modelcontextprotocol/typescript-sdk#1746</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/antogyn"><code>@​antogyn</code></a> made their first contribution in <a href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/757">modelcontextprotocol/typescript-sdk#757</a></li> <li><a href="https://github.com/tiluckdave"><code>@​tiluckdave</code></a> made their first contribution in <a href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1596">modelcontextprotocol/typescript-sdk#1596</a></li> <li><a href="https://github.com/poteat"><code>@​poteat</code></a> made their first contribution in <a href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1738">modelcontextprotocol/typescript-sdk#1738</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/modelcontextprotocol/typescript-sdk/compare/v1.27.1...v1.28.0">https://github.com/modelcontextprotocol/typescript-sdk/compare/v1.27.1...v1.28.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/modelcontextprotocol/typescript-sdk/commit/a0565695218544fc53e99bf5b544a887d373cefa"><code>a056569</code></a> chore: bump version to 1.28.0 (<a href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/issues/1746">#1746</a>)</li> <li><a href="https://github.com/modelcontextprotocol/typescript-sdk/commit/897bc25bfe7beb782dbe31e466c8d161224cfed7"><code>897bc25</code></a> fix(server/auth): RFC 8252 loopback port relaxation (<a href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/issues/1738">#1738</a>)</li> <li><a href="https://github.com/modelcontextprotocol/typescript-sdk/commit/398dc70f64a8bf42cc1da2ce2d2479bbde933fc3"><code>398dc70</code></a> fix: clear _timeoutInfo in _onclose() and scope .finally() abort controller c...</li> <li><a href="https://github.com/modelcontextprotocol/typescript-sdk/commit/93640d33ab2725c8fe2cfad240f38f27a624194e"><code>93640d3</code></a> fix: reject plain JSON Schema objects passed as inputSchema (<a href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/issues/1596">#1596</a>)</li> <li><a href="https://github.com/modelcontextprotocol/typescript-sdk/commit/4cbcec0edb96332d87ed42c1910dca92cca507de"><code>4cbcec0</code></a> [v1.x backport] Default to client_secret_basic when server omits token_endpoi...</li> <li><a href="https://github.com/modelcontextprotocol/typescript-sdk/commit/c9b58d19861b3917f23f5cda395c71f8239b8b33"><code>c9b58d1</code></a> feat: use scopes_supported from resource metadata by default (fixes <a href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/issues/580">#580</a>) (<a href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/issues/757">#757</a>)</li> <li><a href="https://github.com/modelcontextprotocol/typescript-sdk/commit/351e1246fc88c6bb97e909be9190a68c6e05bf1a"><code>351e124</code></a> docs: add links to hosted V1 and V2 API reference docs</li> <li>See full diff in <a href="https://github.com/modelcontextprotocol/typescript-sdk/compare/v1.27.1...v1.28.0">compare view</a></li> </ul> </details> <br /> Updates `@tanstack/react-query` from 5.95.0 to 5.95.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/TanStack/query/releases"><code>@​tanstack/react-query</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​tanstack/react-query-devtools</code><a href="https://github.com/5"><code>@​5</code></a>.95.2</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies []: <ul> <li><code>@​tanstack/query-devtools</code><a href="https://github.com/5"><code>@​5</code></a>.95.2</li> <li><code>@​tanstack/react-query</code><a href="https://github.com/5"><code>@​5</code></a>.95.2</li> </ul> </li> </ul> <h2><code>@​tanstack/react-query-next-experimental</code><a href="https://github.com/5"><code>@​5</code></a>.95.2</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies []: <ul> <li><code>@​tanstack/react-query</code><a href="https://github.com/5"><code>@​5</code></a>.95.2</li> </ul> </li> </ul> <h2><code>@​tanstack/react-query-persist-client</code><a href="https://github.com/5"><code>@​5</code></a>.95.2</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies []: <ul> <li><code>@​tanstack/query-persist-client-core</code><a href="https://github.com/5"><code>@​5</code></a>.95.2</li> <li><code>@​tanstack/react-query</code><a href="https://github.com/5"><code>@​5</code></a>.95.2</li> </ul> </li> </ul> <h2><code>@​tanstack/react-query</code><a href="https://github.com/5"><code>@​5</code></a>.95.2</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/TanStack/query/commit/cd5a35b328837781aa4f9305bb2bd7877ca934e9"><code>cd5a35b</code></a>]: <ul> <li><code>@​tanstack/query-core</code><a href="https://github.com/5"><code>@​5</code></a>.95.2</li> </ul> </li> </ul> <h2><code>@​tanstack/react-query-devtools</code><a href="https://github.com/5"><code>@​5</code></a>.95.1</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies []: <ul> <li><code>@​tanstack/query-devtools</code><a href="https://github.com/5"><code>@​5</code></a>.95.1</li> <li><code>@​tanstack/react-query</code><a href="https://github.com/5"><code>@​5</code></a>.95.1</li> </ul> </li> </ul> <h2><code>@​tanstack/react-query-next-experimental</code><a href="https://github.com/5"><code>@​5</code></a>.95.1</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies []: <ul> <li><code>@​tanstack/react-query</code><a href="https://github.com/5"><code>@​5</code></a>.95.1</li> </ul> </li> </ul> <h2><code>@​tanstack/react-query-persist-client</code><a href="https://github.com/5"><code>@​5</code></a>.95.1</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies []: <ul> <li><code>@​tanstack/query-persist-client-core</code><a href="https://github.com/5"><code>@​5</code></a>.95.1</li> <li><code>@​tanstack/react-query</code><a href="https://github.com/5"><code>@​5</code></a>.95.1</li> </ul> </li> </ul> <h2><code>@​tanstack/react-query</code><a href="https://github.com/5"><code>@​5</code></a>.95.1</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/TanStack/query/commit/1f1775ca92f2b6c035682947ff3b3424804ff31a"><code>1f1775c</code></a>]:</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/TanStack/query/blob/main/packages/react-query/CHANGELOG.md"><code>@​tanstack/react-query</code>'s changelog</a>.</em></p> <blockquote> <h2>5.95.2</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/TanStack/query/commit/cd5a35b328837781aa4f9305bb2bd7877ca934e9"><code>cd5a35b</code></a>]: <ul> <li><code>@​tanstack/query-core</code><a href="https://github.com/5"><code>@​5</code></a>.95.2</li> </ul> </li> </ul> <h2>5.95.1</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/TanStack/query/commit/1f1775ca92f2b6c035682947ff3b3424804ff31a"><code>1f1775c</code></a>]: <ul> <li><code>@​tanstack/query-core</code><a href="https://github.com/5"><code>@​5</code></a>.95.1</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/TanStack/query/commit/1047cdc393fac7c98822c993d70c28f58833c63d"><code>1047cdc</code></a> ci: Version Packages (<a href="https://github.com/TanStack/query/tree/HEAD/packages/react-query/issues/10326">#10326</a>)</li> <li><a href="https://github.com/TanStack/query/commit/cd5a35b328837781aa4f9305bb2bd7877ca934e9"><code>cd5a35b</code></a> fix/nodejs timeout (<a href="https://github.com/TanStack/query/tree/HEAD/packages/react-query/issues/10325">#10325</a>)</li> <li><a href="https://github.com/TanStack/query/commit/5806444b97e07b1ede194d1f353d4a013ef1036e"><code>5806444</code></a> ci: Version Packages (<a href="https://github.com/TanStack/query/tree/HEAD/packages/react-query/issues/10324">#10324</a>)</li> <li>See full diff in <a href="https://github.com/TanStack/query/commits/@tanstack/react-query@5.95.2/packages/react-query">compare view</a></li> </ul> </details> <br /> Updates `vite` from 8.0.2 to 8.0.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>create-vite@8.0.3</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/create-vite@8.0.3/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v8.0.3</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v8.0.3/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md">vite's changelog</a>.</em></p> <blockquote> <h2><!-- raw HTML omitted --><a href="https://github.com/vitejs/vite/compare/v8.0.2...v8.0.3">8.0.3</a> (2026-03-26)<!-- raw HTML omitted --></h2> <h3>Features</h3> <ul> <li>update rolldown to 1.0.0-rc.12 (<a href="https://redirect.github.com/vitejs/vite/issues/22024">#22024</a>) (<a href="https://github.com/vitejs/vite/commit/84164ef47b24b1de114f1c29446a9e650825d4ea">84164ef</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><strong>html:</strong> cache unfiltered CSS list to prevent missing styles across entries (<a href="https://redirect.github.com/vitejs/vite/issues/22017">#22017</a>) (<a href="https://github.com/vitejs/vite/commit/5464190a3ee8f23db20004e7818186fbcc32b0e5">5464190</a>)</li> <li><strong>module-runner:</strong> handle non-ascii characters in base64 sourcemaps (<a href="https://redirect.github.com/vitejs/vite/issues/21985">#21985</a>) (<a href="https://github.com/vitejs/vite/commit/77c95bff834c43f8be9fe513c10b5393805a7487">77c95bf</a>)</li> <li><strong>module-runner:</strong> skip re-import if the runner is closed (<a href="https://redirect.github.com/vitejs/vite/issues/22020">#22020</a>) (<a href="https://github.com/vitejs/vite/commit/ee2c2cd2c2ce3f53088bd2313fa23e9d52a49b4f">ee2c2cd</a>)</li> <li><strong>optimizer:</strong> scan is not resolving sub path import if used in a glob import (<a href="https://redirect.github.com/vitejs/vite/issues/22018">#22018</a>) (<a href="https://github.com/vitejs/vite/commit/ddfe20d19e95a323fa3c8d2c19a02c4e02f93824">ddfe20d</a>)</li> <li><strong>ssr:</strong> ssrTransform incorrectly rewrites <code>meta</code> identifier inside <code>import.meta</code> when a binding named <code>meta</code> exists (<a href="https://redirect.github.com/vitejs/vite/issues/22019">#22019</a>) (<a href="https://github.com/vitejs/vite/commit/cff5f0cca5f08c2ce50f233441485e10b6e115e9">cff5f0c</a>)</li> </ul> <h3>Miscellaneous Chores</h3> <ul> <li><strong>deps:</strong> bump picomatch from 4.0.3 to 4.0.4 (<a href="https://redirect.github.com/vitejs/vite/issues/22027">#22027</a>) (<a href="https://github.com/vitejs/vite/commit/7e56003fec3e1b94a20516a901580198a51da614">7e56003</a>)</li> </ul> <h3>Tests</h3> <ul> <li><strong>html:</strong> add tests for <code>getCssFilesForChunk</code> (<a href="https://redirect.github.com/vitejs/vite/issues/22016">#22016</a>) (<a href="https://github.com/vitejs/vite/commit/43fbbf9a09dfd17456ae0611d034c366fcb38998">43fbbf9</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitejs/vite/commit/6a34ac3422686e7cf7cc9a25d299cb8e5a8d92a0"><code>6a34ac3</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/21096">#21096</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/02ceaec45e17bef19159188a28d9196fed1761be"><code>02ceaec</code></a> chore(deps): update dependency <code>@​rollup/plugin-commonjs</code> to v29 (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/21099">#21099</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/572aaca4594ed2377a4f63443a449e4bf3c0468c"><code>572aaca</code></a> release: v7.2.2</li> <li><a href="https://github.com/vitejs/vite/commit/728c8eeebc0ad7ba48e680f46bbdb55020b2e152"><code>728c8ee</code></a> fix: revert &quot;refactor: use fs.cpSync (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/21019">#21019</a>)&quot; (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/21081">#21081</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/a532e68c6b7ed82ae7569d2d3380eb6417e9267d"><code>a532e68</code></a> release: v7.2.1</li> <li><a href="https://github.com/vitejs/vite/commit/82d2d6ccf5a69c3d67e44e3704a0c3eb34db2236"><code>82d2d6c</code></a> fix(worker): some worker asset was missing (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/21074">#21074</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/f83264f5d97caa8ba80276a9ee9e82cb0e69c4ca"><code>f83264f</code></a> refactor(build): rename <code>indexOfMatchInSlice</code> to <code>findPreloadMarker</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/21054">#21054</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/8293de0e17af8a876d49761ed6651bd38b709174"><code>8293de0</code></a> release: v7.2.0</li> <li><a href="https://github.com/vitejs/vite/commit/2833c5576a87be2db450c195ccf64dfc8925a15b"><code>2833c55</code></a> fix(types): add undefined to optional properties for exactOptionalProperties ...</li> <li><a href="https://github.com/vitejs/vite/commit/e3a6a83406943bc59a9916cae3f25ab33c2b5802"><code>e3a6a83</code></a> chore(deps): update rolldown-related dependencies (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/21047">#21047</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vitejs/vite/commits/create-vite@8.0.3/packages/vite">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 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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 1f643fa commit 1f88eb4

1 file changed

Lines changed: 351 additions & 1062 deletions

File tree

0 commit comments

Comments
 (0)