Skip to content

Commit 7b5e483

Browse files
deps(npm): bump the npm-minor group in /app with 3 updates (#5210)
Bumps the npm-minor group in /app with 3 updates: [fuse.js](https://github.com/krisk/Fuse), [eslint](https://github.com/eslint/eslint) and [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). Updates `fuse.js` from 7.1.0 to 7.3.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/krisk/Fuse/releases">fuse.js's releases</a>.</em></p> <blockquote> <h2>v7.3.0</h2> <h2>Features</h2> <ul> <li><strong>Token search</strong> — per-term fuzzy matching with IDF scoring (<a href="https://github.com/krisk/Fuse/commit/68c1dcf">68c1dcf</a>)</li> <li><strong><code>Fuse.match()</code></strong> — static method for single string matching (<a href="https://github.com/krisk/Fuse/commit/460eb5b">460eb5b</a>)</li> <li><strong>BigInt support</strong> for indexing and search (<a href="https://github.com/krisk/Fuse/commit/0ae662c">0ae662c</a>)</li> <li><strong><code>removeAt()</code></strong> now returns the removed item (<a href="https://github.com/krisk/Fuse/commit/8cec7e2">8cec7e2</a>)</li> <li>Support keyless string entries in logical queries (<a href="https://github.com/krisk/Fuse/commit/8695556">8695556</a>)</li> <li><code>getFn</code> null return, escaped pipe in extended search, empty query returns all (<a href="https://github.com/krisk/Fuse/commit/d33b735">d33b735</a>)</li> </ul> <h2>Bug Fixes</h2> <ul> <li>Merge overlapping match indices in extended search (<a href="https://github.com/krisk/Fuse/commit/06c5e97">06c5e97</a>)</li> <li>Inverse patterns now work correctly across multiple keys (<a href="https://github.com/krisk/Fuse/commit/9351882">9351882</a>)</li> <li>Handle quoted tokens with inner spaces and quotes in extended search (<a href="https://github.com/krisk/Fuse/commit/c226523">c226523</a>)</li> <li>Handle non-decomposable diacritics in <code>stripDiacritics</code> (<a href="https://github.com/krisk/Fuse/commit/5a01f29">5a01f29</a>)</li> <li>Coerce non-string array values to strings during indexing (<a href="https://github.com/krisk/Fuse/commit/db0e181">db0e181</a>)</li> <li>Strip <code>getFn</code> from keys in <code>toJSON()</code> for safe serialization (<a href="https://github.com/krisk/Fuse/commit/0f2a69b">0f2a69b</a>)</li> </ul> <h2>Internal</h2> <ul> <li>Full TypeScript rewrite of source code</li> <li>Dropped UMD builds and babel preset-env</li> <li>Upgraded to Rollup 4, Vitest 2, TypeScript 6, ESLint 9</li> <li>Frozen default config to prevent mutation across instances</li> <li>Rewrote documentation as standalone markdown files</li> </ul> <h2>v7.2.0</h2> <h2>Features</h2> <ul> <li>Add <code>Fuse.use()</code> for runtime plugin registration</li> </ul> <h2>Performance</h2> <ul> <li>Inline Bitap score computation to reduce object allocation in hot loops</li> <li>Batch <code>removeAll</code> for O(n) bulk removes instead of O(n*k)</li> <li>Heap-based top-k selection when <code>limit</code> is set</li> <li>Cache compiled searcher for repeated queries</li> </ul> <p>Benchmarked on 10k records: <strong>9-14% faster core search, 49x faster bulk remove</strong>.</p> <h2>Bug Fixes</h2> <ul> <li><strong>search:</strong> Deduplicate and merge overlapping match indices (<a href="https://redirect.github.com/krisk/Fuse/issues/735">#735</a>)</li> <li><strong>search:</strong> Preserve original array indices in nested path traversal (<a href="https://redirect.github.com/krisk/Fuse/issues/786">#786</a>)</li> <li><strong>types:</strong> Correct <code>key</code> type in <code>FuseSortFunctionMatch</code> (<a href="https://redirect.github.com/krisk/Fuse/issues/811">#811</a>)</li> <li><strong>types:</strong> Correct <code>keys</code> type in <code>parseIndex</code> parameter (<a href="https://redirect.github.com/krisk/Fuse/issues/794">#794</a>)</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/krisk/Fuse/compare/v7.1.0...v7.2.0">https://github.com/krisk/Fuse/compare/v7.1.0...v7.2.0</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/krisk/Fuse/blob/main/CHANGELOG.md">fuse.js's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/krisk/Fuse/compare/v7.2.0...v7.3.0">7.3.0</a> (2026-04-04)</h2> <h3>Features</h3> <ul> <li>add BigInt support for indexing and search (<a href="https://github.com/krisk/Fuse/commit/0ae662cb825e1c9db7cdaf8331aab992f293b508">0ae662c</a>), closes <a href="https://redirect.github.com/krisk/Fuse/issues/814">#814</a></li> <li>add static Fuse.match() for single string matching (<a href="https://github.com/krisk/Fuse/commit/460eb5be84b56525710602ec44e2af402ca09686">460eb5b</a>)</li> <li>add token search — per-term fuzzy matching with IDF scoring (<a href="https://github.com/krisk/Fuse/commit/68c1dcf981a60ef46387440dc550fc546254bae9">68c1dcf</a>)</li> <li>getFn null return, escaped pipe in extended search, empty query returns all (<a href="https://github.com/krisk/Fuse/commit/d33b735f62ae2f149808a49ff0c185a04bee28d7">d33b735</a>), closes <a href="https://redirect.github.com/krisk/Fuse/issues/800">#800</a> <a href="https://redirect.github.com/krisk/Fuse/issues/765">#765</a> <a href="https://redirect.github.com/krisk/Fuse/issues/728">#728</a></li> <li>removeAt() now returns the removed item (<a href="https://github.com/krisk/Fuse/commit/8cec7e2f99a7063e0aa9a04b8cedf0813e169531">8cec7e2</a>), closes <a href="https://redirect.github.com/krisk/Fuse/issues/675">#675</a></li> <li><strong>search:</strong> support keyless string entries in logical queries (<a href="https://github.com/krisk/Fuse/commit/86955565a106514212639ecfd3ff45d492f4a0a3">8695556</a>), closes <a href="https://redirect.github.com/krisk/Fuse/issues/736">#736</a></li> </ul> <h3>Bug Fixes</h3> <ul> <li><strong>index:</strong> coerce non-string array values to strings during indexing (<a href="https://github.com/krisk/Fuse/commit/db0e181e5db988d5fad8bee1e281fa20f8a69376">db0e181</a>), closes <a href="https://redirect.github.com/krisk/Fuse/issues/738">#738</a></li> <li><strong>index:</strong> strip getFn from keys in toJSON() for safe serialization (<a href="https://github.com/krisk/Fuse/commit/0f2a69babf8c76faeb366c471e17430f5f6d8595">0f2a69b</a>), closes <a href="https://redirect.github.com/krisk/Fuse/issues/798">#798</a></li> <li><strong>lint:</strong> suppress unused var in toJSON destructure (<a href="https://github.com/krisk/Fuse/commit/d63c0e8bd82e4c4d4cec5844a800e64d3b056b29">d63c0e8</a>)</li> <li>merge overlapping match indices in extended search (<a href="https://github.com/krisk/Fuse/commit/06c5e97c1b79f6e29d482a300eea99a9b6fad82f">06c5e97</a>)</li> <li><strong>search:</strong> handle non-decomposable diacritics in stripDiacritics (<a href="https://github.com/krisk/Fuse/commit/5a01f2994ffe48f7e0e4191f4cdeeabe6a3967a5">5a01f29</a>), closes <a href="https://redirect.github.com/home-assistant/frontend/issues/30399">home-assistant/frontend#30399</a> <a href="https://redirect.github.com/krisk/Fuse/issues/816">#816</a></li> <li><strong>search:</strong> handle quoted tokens with inner spaces and quotes in extended search (<a href="https://github.com/krisk/Fuse/commit/c22652342b2d15c12f5dc5870e6b4b0eef1d2247">c226523</a>), closes <a href="https://redirect.github.com/krisk/Fuse/issues/810">#810</a></li> <li><strong>search:</strong> inverse patterns now work correctly across multiple keys (<a href="https://github.com/krisk/Fuse/commit/935188228ed50dc0a555b41eda47447ada59dd6b">9351882</a>), closes <a href="https://redirect.github.com/krisk/Fuse/issues/712">#712</a></li> </ul> <h2><a href="https://github.com/krisk/Fuse/compare/v7.1.0...v7.2.0">7.2.0</a> (2026-04-02)</h2> <h3>Features</h3> <ul> <li>add <code>Fuse.use()</code> for runtime plugin registration (<a href="https://github.com/krisk/Fuse/commit/8546a9b0">8546a9b</a>)</li> </ul> <h3>Performance</h3> <ul> <li>inline Bitap score computation to reduce object allocation in hot loops (<a href="https://github.com/krisk/Fuse/commit/8546a9b0">8546a9b</a>)</li> <li>batch <code>removeAll</code> for O(n) bulk removes instead of O(n*k) (<a href="https://github.com/krisk/Fuse/commit/8546a9b0">8546a9b</a>)</li> <li>heap-based top-k selection when <code>limit</code> is set (<a href="https://github.com/krisk/Fuse/commit/8546a9b0">8546a9b</a>)</li> <li>cache compiled searcher for repeated queries (<a href="https://github.com/krisk/Fuse/commit/8546a9b0">8546a9b</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><strong>search:</strong> deduplicate and merge overlapping match indices (<a href="https://github.com/krisk/Fuse/commit/60c393a45f75e63ebbecd5e4913d539c8d4a3752">60c393a</a>), closes <a href="https://redirect.github.com/krisk/Fuse/issues/735">#735</a></li> <li><strong>search:</strong> preserve original array indices in nested path traversal (<a href="https://github.com/krisk/Fuse/commit/a1451be8ad46d453799b330f6ad00c58996eb9df">a1451be</a>), closes <a href="https://redirect.github.com/krisk/Fuse/issues/786">#786</a></li> <li><strong>types:</strong> correct key type in FuseSortFunctionMatch (<a href="https://github.com/krisk/Fuse/commit/fecee16f19dd5d8280260854717a9821256f6702">fecee16</a>), closes <a href="https://redirect.github.com/krisk/Fuse/issues/811">#811</a></li> <li><strong>types:</strong> correct keys type in parseIndex parameter (<a href="https://github.com/krisk/Fuse/commit/58c7c73bb8c015c46f583c7cdac377839f5c61ce">58c7c73</a>), closes <a href="https://redirect.github.com/krisk/Fuse/issues/794">#794</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/krisk/Fuse/commit/aae48f51475284f97d47c0d16b1aaa7ef7f910b1"><code>aae48f5</code></a> chore(release): 7.3.0</li> <li><a href="https://github.com/krisk/Fuse/commit/d63c0e8bd82e4c4d4cec5844a800e64d3b056b29"><code>d63c0e8</code></a> fix(lint): suppress unused var in toJSON destructure</li> <li><a href="https://github.com/krisk/Fuse/commit/44dfdb48afa4174a37cc483d524b1d183ef27dea"><code>44dfdb4</code></a> chore: add funding field to package.json</li> <li><a href="https://github.com/krisk/Fuse/commit/65dadf5cc2ea45791c2bfeca9cdc8e243667948f"><code>65dadf5</code></a> docs: add performance guide with benchmark script</li> <li><a href="https://github.com/krisk/Fuse/commit/0ae662cb825e1c9db7cdaf8331aab992f293b508"><code>0ae662c</code></a> feat: add BigInt support for indexing and search</li> <li><a href="https://github.com/krisk/Fuse/commit/8153c9dd361254b026f10bf4a0e92f40e8bfacfc"><code>8153c9d</code></a> docs: fix tsconfig to resolve &quot;no inputs found&quot; error</li> <li><a href="https://github.com/krisk/Fuse/commit/6afb2ed11759b1b6585f37c6e5615508c92aa3c6"><code>6afb2ed</code></a> docs: add &quot;When to Use It&quot; section to token search page</li> <li><a href="https://github.com/krisk/Fuse/commit/0e74a9c59922eb965a0d5766868d8b4d59c746e3"><code>0e74a9c</code></a> docs: simplify Getting Started page title</li> <li><a href="https://github.com/krisk/Fuse/commit/80330ed6d2fc8fab2c2a6f4e53c9469eedbd704e"><code>80330ed</code></a> docs: fix sidebar titles and restore subheading expansion</li> <li><a href="https://github.com/krisk/Fuse/commit/6cd0ceea74b1fea340e080787bb0eecec3cbf0d0"><code>6cd0cee</code></a> docs: remove unused TwitterFollow and Version components</li> <li>Additional commits viewable in <a href="https://github.com/krisk/Fuse/compare/v7.1.0...v7.3.0">compare view</a></li> </ul> </details> <br /> Updates `eslint` from 10.1.0 to 10.2.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/eslint/eslint/releases">eslint's releases</a>.</em></p> <blockquote> <h2>v10.2.0</h2> <h2>Features</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/586ec2f43092779acc957866db4abe999112d1e1"><code>586ec2f</code></a> feat: Add <code>meta.languages</code> support to rules (<a href="https://redirect.github.com/eslint/eslint/issues/20571">#20571</a>) (Copilot)</li> <li><a href="https://github.com/eslint/eslint/commit/14207dee3939dc87cfa8b2fcfc271fff2cfd6471"><code>14207de</code></a> feat: add <code>Temporal</code> to <code>no-obj-calls</code> (<a href="https://redirect.github.com/eslint/eslint/issues/20675">#20675</a>) (Pixel998)</li> <li><a href="https://github.com/eslint/eslint/commit/bbb2c93a2b31bd30924f32fe69a9acf41f9dfe35"><code>bbb2c93</code></a> feat: add Temporal to ES2026 globals (<a href="https://redirect.github.com/eslint/eslint/issues/20672">#20672</a>) (Pixel998)</li> </ul> <h2>Bug Fixes</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/542cb3e6442a4e6ee3457c799e2a0ee23bef0c6a"><code>542cb3e</code></a> fix: update first-party dependencies (<a href="https://redirect.github.com/eslint/eslint/issues/20714">#20714</a>) (Francesco Trotta)</li> </ul> <h2>Documentation</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/a2af743ea60f683d0e0de9d98267c1e7e4f5e412"><code>a2af743</code></a> docs: add <code>language</code> to configuration objects (<a href="https://redirect.github.com/eslint/eslint/issues/20712">#20712</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/845f23f1370892bf07d819497ac518c9e65090d6"><code>845f23f</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/5fbcf5958b897cc4df5d652924d18428db37f7ee"><code>5fbcf59</code></a> docs: remove <code>sourceType</code> from ts playground link (<a href="https://redirect.github.com/eslint/eslint/issues/20477">#20477</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/8702a474659be786b6b1392e5e7c0c56355ae4a4"><code>8702a47</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/ddeaded2ab36951383ff67c60fb64ec68d29a46a"><code>ddeaded</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/2b4496691266547784a7f7ad1989ce53381bab91"><code>2b44966</code></a> docs: add Major Releases section to Manage Releases (<a href="https://redirect.github.com/eslint/eslint/issues/20269">#20269</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/eab65c700ebb16a6e790910c720450c9908961fd"><code>eab65c7</code></a> docs: update <code>eslint</code> versions in examples (<a href="https://redirect.github.com/eslint/eslint/issues/20664">#20664</a>) (루밀LuMir)</li> <li><a href="https://github.com/eslint/eslint/commit/3e4a29903bf31f0998e45ad9128a265bce1edc56"><code>3e4a299</code></a> docs: update ESM Dependencies policies with note for own-usage packages (<a href="https://redirect.github.com/eslint/eslint/issues/20660">#20660</a>) (Milos Djermanovic)</li> </ul> <h2>Chores</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/8120e30f833474f47acc061d24d164e9f022264f"><code>8120e30</code></a> refactor: extract no unmodified loop condition (<a href="https://redirect.github.com/eslint/eslint/issues/20679">#20679</a>) (kuldeep kumar)</li> <li><a href="https://github.com/eslint/eslint/commit/46e8469786be1b2bbb522100e1d44624d98d3745"><code>46e8469</code></a> chore: update dependency markdownlint-cli2 to ^0.22.0 (<a href="https://redirect.github.com/eslint/eslint/issues/20697">#20697</a>) (renovate[bot])</li> <li><a href="https://github.com/eslint/eslint/commit/01ed3aa68477f81a7188e1498cf4906e02015b7c"><code>01ed3aa</code></a> test: add unit tests for unicode utilities (<a href="https://redirect.github.com/eslint/eslint/issues/20622">#20622</a>) (Manish chaudhary)</li> <li><a href="https://github.com/eslint/eslint/commit/811f4930f82ee2b6ac8eae75cade9bed63de0781"><code>811f493</code></a> ci: remove <code>--legacy-peer-deps</code> from types integration tests (<a href="https://redirect.github.com/eslint/eslint/issues/20667">#20667</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/6b86fcfc5c75d6a3b8a2cf7bcdb3ef60635a9a03"><code>6b86fcf</code></a> chore: update dependency npm-run-all2 to v8 (<a href="https://redirect.github.com/eslint/eslint/issues/20663">#20663</a>) (renovate[bot])</li> <li><a href="https://github.com/eslint/eslint/commit/632c4f83bf32b77981c7d395cacddd1bb172ee25"><code>632c4f8</code></a> chore: add <code>prettier</code> update commit to <code>.git-blame-ignore-revs</code> (<a href="https://redirect.github.com/eslint/eslint/issues/20662">#20662</a>) (루밀LuMir)</li> <li><a href="https://github.com/eslint/eslint/commit/b0b0f21927e03ba092400e3c70d7058f537765c8"><code>b0b0f21</code></a> chore: update dependency eslint-plugin-regexp to ^3.1.0 (<a href="https://redirect.github.com/eslint/eslint/issues/20659">#20659</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/228a2dd4b272c17f516ee3541f1dd69eca0a8ab0"><code>228a2dd</code></a> chore: update dependency eslint-plugin-eslint-plugin to ^7.3.2 (<a href="https://redirect.github.com/eslint/eslint/issues/20661">#20661</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/3ab4d7e244df244102de9d0d250b2ff12456a785"><code>3ab4d7e</code></a> test: Add tests for eslintrc-style keys (<a href="https://redirect.github.com/eslint/eslint/issues/20645">#20645</a>) (kuldeep kumar)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eslint/eslint/commit/000128c29235c5a8c35c7ef817dbccc4e42130ca"><code>000128c</code></a> 10.2.0</li> <li><a href="https://github.com/eslint/eslint/commit/1988fad70e361fe1c8df7804930a66e6a9bfc698"><code>1988fad</code></a> Build: changelog update for 10.2.0</li> <li><a href="https://github.com/eslint/eslint/commit/542cb3e6442a4e6ee3457c799e2a0ee23bef0c6a"><code>542cb3e</code></a> fix: update first-party dependencies (<a href="https://redirect.github.com/eslint/eslint/issues/20714">#20714</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/a2af743ea60f683d0e0de9d98267c1e7e4f5e412"><code>a2af743</code></a> docs: add <code>language</code> to configuration objects (<a href="https://redirect.github.com/eslint/eslint/issues/20712">#20712</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/845f23f1370892bf07d819497ac518c9e65090d6"><code>845f23f</code></a> docs: Update README</li> <li><a href="https://github.com/eslint/eslint/commit/5fbcf5958b897cc4df5d652924d18428db37f7ee"><code>5fbcf59</code></a> docs: remove <code>sourceType</code> from ts playground link (<a href="https://redirect.github.com/eslint/eslint/issues/20477">#20477</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/8702a474659be786b6b1392e5e7c0c56355ae4a4"><code>8702a47</code></a> docs: Update README</li> <li><a href="https://github.com/eslint/eslint/commit/ddeaded2ab36951383ff67c60fb64ec68d29a46a"><code>ddeaded</code></a> docs: Update README</li> <li><a href="https://github.com/eslint/eslint/commit/8120e30f833474f47acc061d24d164e9f022264f"><code>8120e30</code></a> refactor: extract no unmodified loop condition (<a href="https://redirect.github.com/eslint/eslint/issues/20679">#20679</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/46e8469786be1b2bbb522100e1d44624d98d3745"><code>46e8469</code></a> chore: update dependency markdownlint-cli2 to ^0.22.0 (<a href="https://redirect.github.com/eslint/eslint/issues/20697">#20697</a>)</li> <li>Additional commits viewable in <a href="https://github.com/eslint/eslint/compare/v10.1.0...v10.2.0">compare view</a></li> </ul> </details> <br /> Updates `vite` from 8.0.3 to 8.0.5 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite/releases">vite's releases</a>.</em></p> <blockquote> <h2>v8.0.5</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v8.0.5/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v8.0.4</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v8.0.4/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.4...v8.0.5">8.0.5</a> (2026-04-06)<!-- raw HTML omitted --></h2> <h3>Bug Fixes</h3> <ul> <li>apply server.fs check to env transport (<a href="https://redirect.github.com/vitejs/vite/issues/22159">#22159</a>) (<a href="https://github.com/vitejs/vite/commit/f02d9fde0b195afe3ea2944414186962fbbe41e0">f02d9fd</a>)</li> <li>avoid path traversal with optimize deps sourcemap handler (<a href="https://redirect.github.com/vitejs/vite/issues/22161">#22161</a>) (<a href="https://github.com/vitejs/vite/commit/79f002f2286c03c88c7b74c511c7f9fc6dc46694">79f002f</a>)</li> <li>check <code>server.fs</code> after stripping query as well (<a href="https://redirect.github.com/vitejs/vite/issues/22160">#22160</a>) (<a href="https://github.com/vitejs/vite/commit/a9a3df299378d9cbc5f069e3536a369f8188c8ff">a9a3df2</a>)</li> <li>disallow referencing files outside the package from sourcemap (<a href="https://redirect.github.com/vitejs/vite/issues/22158">#22158</a>) (<a href="https://github.com/vitejs/vite/commit/f05f50173461789e0f1323fe06b51f18ca41c132">f05f501</a>)</li> </ul> <h2><!-- raw HTML omitted --><a href="https://github.com/vitejs/vite/compare/v8.0.3...v8.0.4">8.0.4</a> (2026-04-06)<!-- raw HTML omitted --></h2> <h3>Features</h3> <ul> <li>allow esbuild 0.28 as peer deps (<a href="https://redirect.github.com/vitejs/vite/issues/22155">#22155</a>) (<a href="https://github.com/vitejs/vite/commit/b0da97372f5dba73e78035d1cc7680466ff6cf7f">b0da973</a>)</li> <li><strong>hmr:</strong> truncate list of files on hmr update (<a href="https://redirect.github.com/vitejs/vite/issues/21535">#21535</a>) (<a href="https://github.com/vitejs/vite/commit/d00e806d7be15ebbfe7875e9244963d80ee8b142">d00e806</a>)</li> <li><strong>optimizer:</strong> log when dependency scanning or bundling takes over 1s (<a href="https://redirect.github.com/vitejs/vite/issues/21797">#21797</a>) (<a href="https://github.com/vitejs/vite/commit/f61a1ab33b05dc6f6a7eda6e8bc9c4c5b9aab133">f61a1ab</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><code>hasBothRollupOptionsAndRolldownOptions</code> should return <code>false</code> for proxy case (<a href="https://redirect.github.com/vitejs/vite/issues/22043">#22043</a>) (<a href="https://github.com/vitejs/vite/commit/99897d27b44dd73307fa03e2f11f0baa1a1dc939">99897d2</a>)</li> <li>add types for <code>vite/modulepreload-polyfill</code> (<a href="https://redirect.github.com/vitejs/vite/issues/22126">#22126</a>) (<a href="https://github.com/vitejs/vite/commit/17330d2b9e132460f194d6d4b547cfee7e25c788">17330d2</a>)</li> <li><strong>deps:</strong> update all non-major dependencies (<a href="https://redirect.github.com/vitejs/vite/issues/22073">#22073</a>) (<a href="https://github.com/vitejs/vite/commit/6daa10ff1e8d15a90f49d8dd909ff208da85d6d8">6daa10f</a>)</li> <li><strong>deps:</strong> update all non-major dependencies (<a href="https://redirect.github.com/vitejs/vite/issues/22143">#22143</a>) (<a href="https://github.com/vitejs/vite/commit/22b016612703320db45c64a2fe44472051ef5ec5">22b0166</a>)</li> <li><strong>resolve:</strong> resolve tsconfig paths starting with <code>#</code> (<a href="https://redirect.github.com/vitejs/vite/issues/22038">#22038</a>) (<a href="https://github.com/vitejs/vite/commit/3460fc55aa89aef4103d2c05ac2e446032511a6d">3460fc5</a>)</li> <li><strong>ssr:</strong> use browser platform for webworker SSR builds (fix <a href="https://redirect.github.com/vitejs/vite/issues/21969">#21969</a>) (<a href="https://redirect.github.com/vitejs/vite/issues/21963">#21963</a>) (<a href="https://github.com/vitejs/vite/commit/364c2273a121dad4d93ec3b9ec87ffbe0d6e860b">364c227</a>)</li> </ul> <h3>Documentation</h3> <ul> <li>add <code>environment.fetchModule</code> documentation (<a href="https://redirect.github.com/vitejs/vite/issues/22035">#22035</a>) (<a href="https://github.com/vitejs/vite/commit/54229e78631ebf10d1db767b51ea85f3cf06718a">54229e7</a>)</li> </ul> <h3>Miscellaneous Chores</h3> <ul> <li><strong>deps:</strong> update rolldown-related dependencies (<a href="https://redirect.github.com/vitejs/vite/issues/21989">#21989</a>) (<a href="https://github.com/vitejs/vite/commit/0ded6274579e8bda6b22a7ba93b15d15b4c28b78">0ded627</a>)</li> </ul> <h3>Code Refactoring</h3> <ul> <li>upgrade to typescript 6 (<a href="https://redirect.github.com/vitejs/vite/issues/22110">#22110</a>) (<a href="https://github.com/vitejs/vite/commit/cc41398c2cf0bb5061cf0ca5dc3b408ae7e41191">cc41398</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitejs/vite/commit/1a12d4ca4c62eedaeaf734d722b27ab17b5b1dd0"><code>1a12d4c</code></a> release: v8.0.5</li> <li><a href="https://github.com/vitejs/vite/commit/79f002f2286c03c88c7b74c511c7f9fc6dc46694"><code>79f002f</code></a> fix: avoid path traversal with optimize deps sourcemap handler (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/22161">#22161</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/a9a3df299378d9cbc5f069e3536a369f8188c8ff"><code>a9a3df2</code></a> fix: check <code>server.fs</code> after stripping query as well (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/22160">#22160</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/f02d9fde0b195afe3ea2944414186962fbbe41e0"><code>f02d9fd</code></a> fix: apply server.fs check to env transport (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/22159">#22159</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/f05f50173461789e0f1323fe06b51f18ca41c132"><code>f05f501</code></a> fix: disallow referencing files outside the package from sourcemap (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/22158">#22158</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/7339bdc915c297e16e6530f6ebcbb2509cb57f24"><code>7339bdc</code></a> release: v8.0.4</li> <li><a href="https://github.com/vitejs/vite/commit/54229e78631ebf10d1db767b51ea85f3cf06718a"><code>54229e7</code></a> docs: add <code>environment.fetchModule</code> documentation (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/22035">#22035</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/b0da97372f5dba73e78035d1cc7680466ff6cf7f"><code>b0da973</code></a> feat: allow esbuild 0.28 as peer deps (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/22155">#22155</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/22b016612703320db45c64a2fe44472051ef5ec5"><code>22b0166</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/22143">#22143</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/17330d2b9e132460f194d6d4b547cfee7e25c788"><code>17330d2</code></a> fix: add types for <code>vite/modulepreload-polyfill</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/22126">#22126</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vitejs/vite/commits/v8.0.5/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 34fdd33 commit 7b5e483

File tree

2 files changed

+42
-42
lines changed

2 files changed

+42
-42
lines changed

app/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"@emotion/styled": "^11.14.1",
2323
"@mui/icons-material": "^7.3.9",
2424
"@mui/material": "^7.3.9",
25-
"fuse.js": "^7.1.0",
25+
"fuse.js": "^7.3.0",
2626
"react": "^19.2.4",
2727
"react-dom": "^19.2.4",
2828
"react-helmet-async": "^3.0.0",
@@ -43,12 +43,12 @@
4343
"@typescript-eslint/parser": "^8.58.0",
4444
"@vitejs/plugin-react-swc": "^4.3.0",
4545
"@vitest/coverage-v8": "^4.1.2",
46-
"eslint": "^10.1.0",
46+
"eslint": "^10.2.0",
4747
"eslint-plugin-react-hooks": "^7.0.1",
4848
"eslint-plugin-react-refresh": "^0.5.2",
4949
"jsdom": "^29.0.1",
5050
"typescript": "^6.0.2",
51-
"vite": "^8.0.3",
51+
"vite": "^8.0.5",
5252
"vite-plugin-compression2": "^2.5.3",
5353
"vitest": "^4.1.2"
5454
}

app/yarn.lock

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -342,26 +342,26 @@
342342
resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.2.tgz#bccdf615bcf7b6e8db830ec0b8d21c9a25de597b"
343343
integrity sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==
344344

345-
"@eslint/config-array@^0.23.3":
346-
version "0.23.3"
347-
resolved "https://registry.yarnpkg.com/@eslint/config-array/-/config-array-0.23.3.tgz#3f4a93dd546169c09130cbd10f2415b13a20a219"
348-
integrity sha512-j+eEWmB6YYLwcNOdlwQ6L2OsptI/LO6lNBuLIqe5R7RetD658HLoF+Mn7LzYmAWWNNzdC6cqP+L6r8ujeYXWLw==
345+
"@eslint/config-array@^0.23.4":
346+
version "0.23.4"
347+
resolved "https://registry.yarnpkg.com/@eslint/config-array/-/config-array-0.23.4.tgz#b4e160e668694011b355bfe9a89eb61a0eb641c4"
348+
integrity sha512-lf19F24LSMfF8weXvW5QEtnLqW70u7kgit5e9PSx0MsHAFclGd1T9ynvWEMDT1w5J4Qt54tomGeAhdoAku1Xow==
349349
dependencies:
350-
"@eslint/object-schema" "^3.0.3"
350+
"@eslint/object-schema" "^3.0.4"
351351
debug "^4.3.1"
352352
minimatch "^10.2.4"
353353

354-
"@eslint/config-helpers@^0.5.3":
355-
version "0.5.3"
356-
resolved "https://registry.yarnpkg.com/@eslint/config-helpers/-/config-helpers-0.5.3.tgz#721fe6bbb90d74b0c80d6ff2428e5bbcb002becb"
357-
integrity sha512-lzGN0onllOZCGroKJmRwY6QcEHxbjBw1gwB8SgRSqK8YbbtEXMvKynsXc3553ckIEBxsbMBU7oOZXKIPGZNeZw==
354+
"@eslint/config-helpers@^0.5.4":
355+
version "0.5.4"
356+
resolved "https://registry.yarnpkg.com/@eslint/config-helpers/-/config-helpers-0.5.4.tgz#0b16c091dd16766f27e41f09bd264e3585a45652"
357+
integrity sha512-jJhqiY3wPMlWWO3370M86CPJ7pt8GmEwSLglMfQhjXal07RCvhmU0as4IuUEW5SJeunfItiEetHmSxCCe9lDBg==
358358
dependencies:
359-
"@eslint/core" "^1.1.1"
359+
"@eslint/core" "^1.2.0"
360360

361-
"@eslint/core@^1.1.1":
362-
version "1.1.1"
363-
resolved "https://registry.yarnpkg.com/@eslint/core/-/core-1.1.1.tgz#450f3d2be2d463ccd51119544092256b4e88df32"
364-
integrity sha512-QUPblTtE51/7/Zhfv8BDwO0qkkzQL7P/aWWbqcf4xWLEYn1oKjdO0gglQBB4GAsu7u6wjijbCmzsUTy6mnk6oQ==
361+
"@eslint/core@^1.2.0":
362+
version "1.2.0"
363+
resolved "https://registry.yarnpkg.com/@eslint/core/-/core-1.2.0.tgz#3f741da0119058ad2a567a6f215677b5557a19e9"
364+
integrity sha512-8FTGbNzTvmSlc4cZBaShkC6YvFMG0riksYWRFKXztqVdXaQbcZLXlFbSpC05s70sGEsXAw0qwhx69JiW7hQS7A==
365365
dependencies:
366366
"@types/json-schema" "^7.0.15"
367367

@@ -370,17 +370,17 @@
370370
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-10.0.1.tgz#1e8a876f50117af8ab67e47d5ad94d38d6622583"
371371
integrity sha512-zeR9k5pd4gxjZ0abRoIaxdc7I3nDktoXZk2qOv9gCNWx3mVwEn32VRhyLaRsDiJjTs0xq/T8mfPtyuXu7GWBcA==
372372

373-
"@eslint/object-schema@^3.0.3":
374-
version "3.0.3"
375-
resolved "https://registry.yarnpkg.com/@eslint/object-schema/-/object-schema-3.0.3.tgz#5bf671e52e382e4adc47a9906f2699374637db6b"
376-
integrity sha512-iM869Pugn9Nsxbh/YHRqYiqd23AmIbxJOcpUMOuWCVNdoQJ5ZtwL6h3t0bcZzJUlC3Dq9jCFCESBZnX0GTv7iQ==
373+
"@eslint/object-schema@^3.0.4":
374+
version "3.0.4"
375+
resolved "https://registry.yarnpkg.com/@eslint/object-schema/-/object-schema-3.0.4.tgz#8ce3aff08f6ca7c3bd9e1cec34530fc7fb44546a"
376+
integrity sha512-55lO/7+Yp0ISKRP0PsPtNTeNGapXaO085aELZmWCVc5SH3jfrqpuU6YgOdIxMS99ZHkQN1cXKE+cdIqwww9ptw==
377377

378-
"@eslint/plugin-kit@^0.6.1":
379-
version "0.6.1"
380-
resolved "https://registry.yarnpkg.com/@eslint/plugin-kit/-/plugin-kit-0.6.1.tgz#eb9e6689b56ce8bc1855bb33090e63f3fc115e8e"
381-
integrity sha512-iH1B076HoAshH1mLpHMgwdGeTs0CYwL0SPMkGuSebZrwBp16v415e9NZXg2jtrqPVQjf6IANe2Vtlr5KswtcZQ==
378+
"@eslint/plugin-kit@^0.7.0":
379+
version "0.7.0"
380+
resolved "https://registry.yarnpkg.com/@eslint/plugin-kit/-/plugin-kit-0.7.0.tgz#7442f663da4d61091d2af0b30c8a6b50949fb26d"
381+
integrity sha512-ejvBr8MQCbVsWNZnCwDXjUKq40MDmHalq7cJ6e9s/qzTUFIIo/afzt1Vui9T97FM/V/pN4YsFVoed5NIa96RDg==
382382
dependencies:
383-
"@eslint/core" "^1.1.1"
383+
"@eslint/core" "^1.2.0"
384384
levn "^0.4.1"
385385

386386
"@exodus/bytes@^1.11.0", "@exodus/bytes@^1.15.0", "@exodus/bytes@^1.6.0":
@@ -1375,17 +1375,17 @@ eslint-visitor-keys@^5.0.0, eslint-visitor-keys@^5.0.1:
13751375
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz#9e3c9489697824d2d4ce3a8ad12628f91e9f59be"
13761376
integrity sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==
13771377

1378-
eslint@^10.1.0:
1379-
version "10.1.0"
1380-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-10.1.0.tgz#9ca98e654e642ab2e1af6d1e9d8613857ac341b4"
1381-
integrity sha512-S9jlY/ELKEUwwQnqWDO+f+m6sercqOPSqXM5Go94l7DOmxHVDgmSFGWEzeE/gwgTAr0W103BWt0QLe/7mabIvA==
1378+
eslint@^10.2.0:
1379+
version "10.2.0"
1380+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-10.2.0.tgz#711c80d32fc3fdd3a575bb93977df43887c3ec8e"
1381+
integrity sha512-+L0vBFYGIpSNIt/KWTpFonPrqYvgKw1eUI5Vn7mEogrQcWtWYtNQ7dNqC+px/J0idT3BAkiWrhfS7k+Tum8TUA==
13821382
dependencies:
13831383
"@eslint-community/eslint-utils" "^4.8.0"
13841384
"@eslint-community/regexpp" "^4.12.2"
1385-
"@eslint/config-array" "^0.23.3"
1386-
"@eslint/config-helpers" "^0.5.3"
1387-
"@eslint/core" "^1.1.1"
1388-
"@eslint/plugin-kit" "^0.6.1"
1385+
"@eslint/config-array" "^0.23.4"
1386+
"@eslint/config-helpers" "^0.5.4"
1387+
"@eslint/core" "^1.2.0"
1388+
"@eslint/plugin-kit" "^0.7.0"
13891389
"@humanfs/node" "^0.16.6"
13901390
"@humanwhocodes/module-importer" "^1.0.1"
13911391
"@humanwhocodes/retry" "^0.4.2"
@@ -1536,10 +1536,10 @@ function-bind@^1.1.2:
15361536
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c"
15371537
integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==
15381538

1539-
fuse.js@^7.1.0:
1540-
version "7.1.0"
1541-
resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-7.1.0.tgz#306228b4befeee11e05b027087c2744158527d09"
1542-
integrity sha512-trLf4SzuuUxfusZADLINj+dE8clK1frKdmqiJNb1Es75fmI5oY6X2mxLVUciLLjxqw/xr72Dhy+lER6dGd02FQ==
1539+
fuse.js@^7.3.0:
1540+
version "7.3.0"
1541+
resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-7.3.0.tgz#68e1ea1c6c0ff262f1801a949a78edbe05b0bc13"
1542+
integrity sha512-plz8RVjfcDedTGfVngWH1jmJvBvAwi1v2jecfDerbEnMcmOYUEEwKFTHbNoCiYyzaK2Ws8lABkTCcRSqCY1q4w==
15431543

15441544
gensync@^1.0.0-beta.2:
15451545
version "1.0.0-beta.2"
@@ -2499,10 +2499,10 @@ vite-plugin-compression2@^2.5.3:
24992499
"@rollup/pluginutils" "^5.1.0"
25002500
tar-mini "^0.2.0"
25012501

2502-
"vite@^6.0.0 || ^7.0.0 || ^8.0.0", vite@^8.0.3:
2503-
version "8.0.3"
2504-
resolved "https://registry.yarnpkg.com/vite/-/vite-8.0.3.tgz#036d9e3b077ff57b128660b3e3a5d2d12bac9b42"
2505-
integrity sha512-B9ifbFudT1TFhfltfaIPgjo9Z3mDynBTJSUYxTjOQruf/zHH+ezCQKcoqO+h7a9Pw9Nm/OtlXAiGT1axBgwqrQ==
2502+
"vite@^6.0.0 || ^7.0.0 || ^8.0.0", vite@^8.0.5:
2503+
version "8.0.5"
2504+
resolved "https://registry.yarnpkg.com/vite/-/vite-8.0.5.tgz#5f8648997359e18dbc1a9e151ce55434ce5d8a2f"
2505+
integrity sha512-nmu43Qvq9UopTRfMx2jOYW5l16pb3iDC1JH6yMuPkpVbzK0k+L7dfsEDH4jRgYFmsg0sTAqkojoZgzLMlwHsCQ==
25062506
dependencies:
25072507
lightningcss "^1.32.0"
25082508
picomatch "^4.0.4"

0 commit comments

Comments
 (0)