dependabot[bot] opened a new pull request, #65024:
URL: https://github.com/apache/airflow/pull/65024

   Bumps the 3-2-auth-ui-package-updates group with 16 updates in the 
/airflow-core/src/airflow/api_fastapi/auth/managers/simple/ui directory:
   
   | Package | From | To |
   | --- | --- | --- |
   | [@hey-api/openapi-ts](https://github.com/hey-api/openapi-ts) | `0.94.0` | 
`0.95.0` |
   | 
[@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query)
 | `5.90.21` | `5.96.2` |
   | [axios](https://github.com/axios/axios) | `1.13.6` | `1.14.0` |
   | [react-cookie](https://github.com/ItsBenCodes/cookies) | `8.0.1` | `8.1.0` 
|
   | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | 
`7.71.2` | `7.72.1` |
   | 
[react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom)
 | `7.13.1` | `7.14.0` |
   | 
[@7nohe/openapi-react-query-codegen](https://github.com/7nohe/openapi-react-query-codegen)
 | `2.0.0` | `2.1.0` |
   | 
[@eslint/compat](https://github.com/eslint/rewrite/tree/HEAD/packages/compat) | 
`2.0.3` | `2.0.4` |
   | 
[@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)
 | `8.57.0` | `8.58.0` |
   | 
[@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)
 | `8.57.0` | `8.58.0` |
   | 
[@typescript-eslint/utils](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/utils)
 | `8.57.0` | `8.58.0` |
   | 
[@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8)
 | `4.1.0` | `4.1.2` |
   | [eslint](https://github.com/eslint/eslint) | `10.0.3` | `10.2.0` |
   | 
[eslint-plugin-perfectionist](https://github.com/azat-io/eslint-plugin-perfectionist)
 | `5.6.0` | `5.8.0` |
   | 
[typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint)
 | `8.57.0` | `8.58.0` |
   | [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | 
`4.1.0` | `4.1.2` |
   
   
   Updates `@hey-api/openapi-ts` from 0.94.0 to 0.95.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/hey-api/openapi-ts/releases";><code>@​hey-api/openapi-ts</code>'s
 releases</a>.</em></p>
   <blockquote>
   <h2><code>@​hey-api/openapi-ts</code><a 
href="https://github.com/0";><code>@​0</code></a>.95.0</h2>
   <h3>Minor Changes</h3>
   <ul>
   <li><strong>plugin(valibot)</strong>: remove request data schema (<a 
href="https://redirect.github.com/hey-api/openapi-ts/pull/3671";>#3671</a>) (<a 
href="https://github.com/hey-api/openapi-ts/commit/96f60adb6af144e39133884e97e74a6693b6c059";><code>96f60ad</code></a>)
 by <a href="https://github.com/mrlubos";><code>@​mrlubos</code></a></li>
   </ul>
   <h3>Validator request schemas</h3>
   <p>Valibot plugin no longer exports composite request <code>Data</code> 
schemas. Instead, each layer is exported as a separate schema. If you're using 
validators with SDKs, you can preserve the composite schema with 
<code>shouldExtract</code>:</p>
   <pre lang="js"><code>export default {
     input: &quot;hey-api/backend&quot;, // sign up at app.heyapi.dev
     output: &quot;src/client&quot;,
     plugins: [
       // ...other plugins
       {
         name: &quot;sdk&quot;,
         validator: &quot;valibot&quot;,
       },
       {
         name: &quot;valibot&quot;,
         requests: {
           shouldExtract: true,
         },
       },
     ],
   };
   </code></pre>
   <ul>
   <li><strong>internal</strong>: remove <code>plugin.getSymbol()</code> 
function (<a 
href="https://redirect.github.com/hey-api/openapi-ts/pull/3671";>#3671</a>) (<a 
href="https://github.com/hey-api/openapi-ts/commit/96f60adb6af144e39133884e97e74a6693b6c059";><code>96f60ad</code></a>)
 by <a href="https://github.com/mrlubos";><code>@​mrlubos</code></a></li>
   </ul>
   <h3>Removed <code>plugin.getSymbol()</code> function</h3>
   <p>This function has been removed. You can use 
<code>plugin.querySymbol()</code> instead. It accepts the same arguments and 
returns the same result.</p>
   <ul>
   <li><strong>plugin(zod)</strong>: remove request data schema (<a 
href="https://redirect.github.com/hey-api/openapi-ts/pull/3671";>#3671</a>) (<a 
href="https://github.com/hey-api/openapi-ts/commit/96f60adb6af144e39133884e97e74a6693b6c059";><code>96f60ad</code></a>)
 by <a href="https://github.com/mrlubos";><code>@​mrlubos</code></a></li>
   </ul>
   <h3>Validator request schemas</h3>
   <p>Zod plugin no longer exports composite request <code>Data</code> schemas. 
Instead, each layer is exported as a separate schema. If you're using 
validators with SDKs, you can preserve the composite schema with 
<code>shouldExtract</code>:</p>
   <pre lang="js"><code>export default {
     input: &quot;hey-api/backend&quot;, // sign up at app.heyapi.dev
     output: &quot;src/client&quot;,
     plugins: [
       // ...other plugins
       {
         name: &quot;sdk&quot;,
         validator: &quot;zod&quot;,
   &lt;/tr&gt;&lt;/table&gt; 
   </code></pre>
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/hey-api/openapi-ts/commit/5e1eaea77beffc56273619988494bf826514fb28";><code>5e1eaea</code></a>
 Merge pull request <a 
href="https://redirect.github.com/hey-api/openapi-ts/issues/3664";>#3664</a> 
from hey-api/changeset-release/main</li>
   <li><a 
href="https://github.com/hey-api/openapi-ts/commit/acd0e9d4b1bdeb0c2e8b44d60c36b8dfc466d071";><code>acd0e9d</code></a>
 ci: release</li>
   <li><a 
href="https://github.com/hey-api/openapi-ts/commit/632638ffe258a452d858321ba7585c196ec42c6a";><code>632638f</code></a>
 Merge pull request <a 
href="https://redirect.github.com/hey-api/openapi-ts/issues/3675";>#3675</a> 
from hey-api/refactor/dsl-from-value</li>
   <li><a 
href="https://github.com/hey-api/openapi-ts/commit/8aa4698e5eb9e12906c715da14da518d45e72fe6";><code>8aa4698</code></a>
 refactor: rename fromValue file to from-value</li>
   <li><a 
href="https://github.com/hey-api/openapi-ts/commit/11db9af9d60a47a6da428ad3010071c7ddedd205";><code>11db9af</code></a>
 Merge pull request <a 
href="https://redirect.github.com/hey-api/openapi-ts/issues/3674";>#3674</a> 
from hey-api/docs/sponsors-mintlify-3</li>
   <li><a 
href="https://github.com/hey-api/openapi-ts/commit/a32e70b5a456ff8650ccaf2c20673adbf746b685";><code>a32e70b</code></a>
 docs: remove Mintlify from sponsors</li>
   <li><a 
href="https://github.com/hey-api/openapi-ts/commit/3efbe9ba0d6c4142aaec7adac2cdbc7b19b2ab55";><code>3efbe9b</code></a>
 Merge pull request <a 
href="https://redirect.github.com/hey-api/openapi-ts/issues/3673";>#3673</a> 
from hey-api/docs/sponsors-mintlify-2</li>
   <li><a 
href="https://github.com/hey-api/openapi-ts/commit/bd2bf6eb3d1e82086f43f08b77ce1c626b0e6d7b";><code>bd2bf6e</code></a>
 docs: remove Mintlify from sponsors</li>
   <li><a 
href="https://github.com/hey-api/openapi-ts/commit/1162b4a9f54dc15df8aad0076aaf679e938fe53b";><code>1162b4a</code></a>
 Merge pull request <a 
href="https://redirect.github.com/hey-api/openapi-ts/issues/3672";>#3672</a> 
from hey-api/docs/soon-to-vote</li>
   <li><a 
href="https://github.com/hey-api/openapi-ts/commit/5f696b7494dd32d1de24ca1830b38793c97a7332";><code>5f696b7</code></a>
 docs: update soon label to vote</li>
   <li>Additional commits viewable in <a 
href="https://github.com/hey-api/openapi-ts/compare/@hey-api/[email protected]...@hey-api/[email protected]";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `@tanstack/react-query` from 5.90.21 to 5.96.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>.96.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>.96.2</li>
   <li><code>@​tanstack/react-query</code><a 
href="https://github.com/5";><code>@​5</code></a>.96.2</li>
   </ul>
   </li>
   </ul>
   <h2><code>@​tanstack/react-query-next-experimental</code><a 
href="https://github.com/5";><code>@​5</code></a>.96.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>.96.2</li>
   </ul>
   </li>
   </ul>
   <h2><code>@​tanstack/react-query-persist-client</code><a 
href="https://github.com/5";><code>@​5</code></a>.96.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>.96.2</li>
   <li><code>@​tanstack/react-query</code><a 
href="https://github.com/5";><code>@​5</code></a>.96.2</li>
   </ul>
   </li>
   </ul>
   <h2><code>@​tanstack/react-query</code><a 
href="https://github.com/5";><code>@​5</code></a>.96.2</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>Updated dependencies []:
   <ul>
   <li><code>@​tanstack/query-core</code><a 
href="https://github.com/5";><code>@​5</code></a>.96.2</li>
   </ul>
   </li>
   </ul>
   <h2><code>@​tanstack/react-query-devtools</code><a 
href="https://github.com/5";><code>@​5</code></a>.96.1</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>
   <p>fix(build): exclude config files from production DTS rollup to prevent 
<code>@types/node</code> type pollution (<a 
href="https://redirect.github.com/TanStack/query/pull/10358";>#10358</a>)</p>
   </li>
   <li>
   <p>Updated dependencies []:</p>
   <ul>
   <li><code>@​tanstack/query-devtools</code><a 
href="https://github.com/5";><code>@​5</code></a>.96.1</li>
   <li><code>@​tanstack/react-query</code><a 
href="https://github.com/5";><code>@​5</code></a>.96.1</li>
   </ul>
   </li>
   </ul>
   <h2><code>@​tanstack/react-query-next-experimental</code><a 
href="https://github.com/5";><code>@​5</code></a>.96.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>.96.1</li>
   </ul>
   </li>
   </ul>
   <h2><code>@​tanstack/react-query-persist-client</code><a 
href="https://github.com/5";><code>@​5</code></a>.96.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>.96.1</li>
   <li><code>@​tanstack/react-query</code><a 
href="https://github.com/5";><code>@​5</code></a>.96.1</li>
   </ul>
   </li>
   </ul>
   <h2><code>@​tanstack/react-query</code><a 
href="https://github.com/5";><code>@​5</code></a>.96.1</h2>
   <h3>Patch Changes</h3>
   <!-- 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.96.2</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>Updated dependencies []:
   <ul>
   <li><code>@​tanstack/query-core</code><a 
href="https://github.com/5";><code>@​5</code></a>.96.2</li>
   </ul>
   </li>
   </ul>
   <h2>5.96.1</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>Updated dependencies []:
   <ul>
   <li><code>@​tanstack/query-core</code><a 
href="https://github.com/5";><code>@​5</code></a>.96.1</li>
   </ul>
   </li>
   </ul>
   <h2>5.96.0</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>Updated dependencies []:
   <ul>
   <li><code>@​tanstack/query-core</code><a 
href="https://github.com/5";><code>@​5</code></a>.96.0</li>
   </ul>
   </li>
   </ul>
   <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>
   <h2>5.95.0</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>Updated dependencies []:
   <ul>
   <li><code>@​tanstack/query-core</code><a 
href="https://github.com/5";><code>@​5</code></a>.95.0</li>
   </ul>
   </li>
   </ul>
   <h2>5.94.5</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>
   <p>fix(*): resolve issue about excluded build directory (<a 
href="https://redirect.github.com/TanStack/query/pull/10312";>#10312</a>)</p>
   </li>
   <li>
   <p>Updated dependencies [<a 
href="https://github.com/TanStack/query/commit/4b6536dfce99036f4e37f52943c6fed3ad0e0a18";><code>4b6536d</code></a>]:</p>
   <ul>
   <li><code>@​tanstack/query-core</code><a 
href="https://github.com/5";><code>@​5</code></a>.94.5</li>
   </ul>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/TanStack/query/commit/5ca721fb05a7329ca168dd9aca8a906011b0601e";><code>5ca721f</code></a>
 ci: Version Packages (<a 
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query/issues/10379";>#10379</a>)</li>
   <li><a 
href="https://github.com/TanStack/query/commit/75052a7fd05d5a7f430d323c513387b780a0c06f";><code>75052a7</code></a>
 ci: Version Packages (<a 
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query/issues/10370";>#10370</a>)</li>
   <li><a 
href="https://github.com/TanStack/query/commit/73e783bd8677a1011d95d34a896e1bf93cbb11a5";><code>73e783b</code></a>
 ci: Version Packages (<a 
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query/issues/10364";>#10364</a>)</li>
   <li><a 
href="https://github.com/TanStack/query/commit/14a97b7ab1060652be2c0197d204d256c196860b";><code>14a97b7</code></a>
 test(react-query): replace 'import React' with 'import * as React' in 
'usePre...</li>
   <li><a 
href="https://github.com/TanStack/query/commit/fd8c068c941cc1a8fe530798330c598a8265d64a";><code>fd8c068</code></a>
 test({react,preact}-query/useSuspenseQueries): merge redundant second 
'descri...</li>
   <li><a 
href="https://github.com/TanStack/query/commit/f168555261d73206189bff699a1e54a465b75a42";><code>f168555</code></a>
 test({react,preact,solid}-query): move 'queryClient' and 'queryCache' to 
'bef...</li>
   <li><a 
href="https://github.com/TanStack/query/commit/afb58127a47846f7b2df5a422b428ddfa8decced";><code>afb5812</code></a>
 test({react,preact}-query/useSuspenseQueries): inline test helpers, remove 
sh...</li>
   <li><a 
href="https://github.com/TanStack/query/commit/9e1bb94abcce4839800f782d9b9d7087095e78b3";><code>9e1bb94</code></a>
 test(react-query/useSuspenseQueries): remove unnecessary 'act' wrapper from 
b...</li>
   <li><a 
href="https://github.com/TanStack/query/commit/55cee0a71c4137277c0d90fdc5272884181042c3";><code>55cee0a</code></a>
 test({react,preact}-query/useSuspenseQueries): add test for not suspending 
bu...</li>
   <li><a 
href="https://github.com/TanStack/query/commit/7fc6e6a911d3c63d77f44d4624fb89f26af1d44d";><code>7fc6e6a</code></a>
 test({react,preact}-query/useSuspenseQueries): add test for not suspending 
bu...</li>
   <li>Additional commits viewable in <a 
href="https://github.com/TanStack/query/commits/@tanstack/[email protected]/packages/react-query";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `axios` from 1.13.6 to 1.14.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/axios/axios/releases";>axios's releases</a>.</em></p>
   <blockquote>
   <h2>v1.14.0</h2>
   <p>This release focuses on compatibility fixes, adapter stability 
improvements, and test/tooling modernisation.</p>
   <h2>⚠️ Important Changes</h2>
   <ul>
   <li><strong>Breaking Changes:</strong> None identified in this release.</li>
   <li><strong>Action Required:</strong> If you rely on env-based proxy 
behaviour or CJS resolution edge-cases, validate your integration after upgrade 
(notably <code>proxy-from-env</code> v2 alignment and <code>main</code> entry 
compatibility fix).</li>
   </ul>
   <h2>🚀 New Features</h2>
   <ul>
   <li><strong>Runtime Features:</strong> No new end-user features were 
introduced in this release.</li>
   <li><strong>Test Coverage Expansion:</strong> Added broader smoke/module 
test coverage for CJS and ESM package usage. (<a 
href="https://redirect.github.com/axios/axios/pull/7510";>#7510</a>)</li>
   </ul>
   <h2>🐛 Bug Fixes</h2>
   <ul>
   <li><strong>Headers:</strong> Trim trailing CRLF in normalised header 
values. (<a 
href="https://redirect.github.com/axios/axios/pull/7456";>#7456</a>)</li>
   <li><strong>HTTP/2:</strong> Close detached HTTP/2 sessions on timeout to 
avoid lingering sessions. (<a 
href="https://redirect.github.com/axios/axios/pull/7457";>#7457</a>)</li>
   <li><strong>Fetch Adapter:</strong> Cancel <code>ReadableStream</code> 
created during request-stream capability probing to prevent async resource 
leaks. (<a 
href="https://redirect.github.com/axios/axios/pull/7515";>#7515</a>)</li>
   <li><strong>Proxy Handling:</strong> Fixed env proxy behavior with 
<code>proxy-from-env</code> v2 usage. (<a 
href="https://redirect.github.com/axios/axios/pull/7499";>#7499</a>)</li>
   <li><strong>CommonJS Compatibility:</strong> Fixed package <code>main</code> 
entry regression affecting CJS consumers. (<a 
href="https://redirect.github.com/axios/axios/pull/7532";>#7532</a>)</li>
   </ul>
   <h2>🔧 Maintenance &amp; Chores</h2>
   <ul>
   <li><strong>Security/Dependencies:</strong> Updated <code>formidable</code> 
and refreshed package set to newer versions. (<a 
href="https://redirect.github.com/axios/axios/pull/7533";>#7533</a>, <a 
href="https://redirect.github.com/axios/axios/pull/10556";>#10556</a>)</li>
   <li><strong>Tooling:</strong> Continued migration to Vitest and modernised 
CI/test harnesses. (<a 
href="https://redirect.github.com/axios/axios/pull/7484";>#7484</a>, <a 
href="https://redirect.github.com/axios/axios/pull/7489";>#7489</a>, <a 
href="https://redirect.github.com/axios/axios/pull/7498";>#7498</a>)</li>
   <li><strong>Build/Lint Stack:</strong> Rollup, ESLint, TypeScript, and 
related dev-dependency updates. (<a 
href="https://redirect.github.com/axios/axios/pull/7508";>#7508</a>, <a 
href="https://redirect.github.com/axios/axios/pull/7509";>#7509</a>, <a 
href="https://redirect.github.com/axios/axios/pull/7522";>#7522</a>)</li>
   <li><strong>Documentation:</strong> Clarified JSON parsing and 
adapter-related docs/comments. (<a 
href="https://redirect.github.com/axios/axios/pull/7398";>#7398</a>, <a 
href="https://redirect.github.com/axios/axios/pull/7460";>#7460</a>, <a 
href="https://redirect.github.com/axios/axios/pull/7478";>#7478</a>)</li>
   </ul>
   <h2>🌟 New Contributors</h2>
   <p>We are thrilled to welcome our new contributors. Thank you for helping 
improve Axios:</p>
   <ul>
   <li><a href="https://github.com/aviu16";><code>@​aviu16</code></a> (<a 
href="https://redirect.github.com/axios/axios/pull/7456";>#7456</a>)</li>
   <li><a href="https://github.com/NETIZEN-11";><code>@​NETIZEN-11</code></a> 
(<a href="https://redirect.github.com/axios/axios/pull/7460";>#7460</a>)</li>
   <li><a href="https://github.com/fedotov";><code>@​fedotov</code></a> (<a 
href="https://redirect.github.com/axios/axios/pull/7457";>#7457</a>)</li>
   <li><a href="https://github.com/nthbotast";><code>@​nthbotast</code></a> (<a 
href="https://redirect.github.com/axios/axios/pull/7478";>#7478</a>)</li>
   <li><a href="https://github.com/veeceey";><code>@​veeceey</code></a> (<a 
href="https://redirect.github.com/axios/axios/pull/7398";>#7398</a>)</li>
   <li><a href="https://github.com/penkzhou";><code>@​penkzhou</code></a> (<a 
href="https://redirect.github.com/axios/axios/pull/7515";>#7515</a>)</li>
   </ul>
   <p><em>Full Changelog: <a 
href="https://github.com/axios/axios/compare/v1.13.6...v1.14.0";>v1.13.6...v1.14.0</a></em></p>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/axios/axios/commit/46bee3dea75ef53a8eae49f3b7487e6341de6074";><code>46bee3d</code></a>
 chore(release): prepare release 1.14.0 (<a 
href="https://redirect.github.com/axios/axios/issues/10563";>#10563</a>)</li>
   <li><a 
href="https://github.com/axios/axios/commit/518aff569043116c87ce78e3d83877d5251f2a16";><code>518aff5</code></a>
 chore: add AI Moderator workflow for spam detection (<a 
href="https://redirect.github.com/axios/axios/issues/10551";>#10551</a>)</li>
   <li><a 
href="https://github.com/axios/axios/commit/b7dfda3e7cf9e85f6063d90334318f82842b42d0";><code>b7dfda3</code></a>
 chore(sponsor): update sponsor block (<a 
href="https://redirect.github.com/axios/axios/issues/10557";>#10557</a>)</li>
   <li><a 
href="https://github.com/axios/axios/commit/9aa34d52918c13eaa445d884a24e9e20e71a7a93";><code>9aa34d5</code></a>
 fix: updated release flow to match the current flows (<a 
href="https://redirect.github.com/axios/axios/issues/10562";>#10562</a>)</li>
   <li><a 
href="https://github.com/axios/axios/commit/e9e5ebe483b3f0cecbb5a4c9fa95a316ea5d0645";><code>e9e5ebe</code></a>
 Update packages to latest version (<a 
href="https://redirect.github.com/axios/axios/issues/10556";>#10556</a>)</li>
   <li><a 
href="https://github.com/axios/axios/commit/4d8931ca8a92e53c5dcf02cf46d1016a10e60ec0";><code>4d8931c</code></a>
 fix: formidable dependency vulnerable to arbitrary (<a 
href="https://redirect.github.com/axios/axios/issues/7533";>#7533</a>)</li>
   <li><a 
href="https://github.com/axios/axios/commit/3a6f5c1ae1f9b58198e9f3109896a2c11d017c58";><code>3a6f5c1</code></a>
 chore(deps-dev): bump <code>@​babel/preset-env</code> (<a 
href="https://redirect.github.com/axios/axios/issues/7531";>#7531</a>)</li>
   <li><a 
href="https://github.com/axios/axios/commit/bcfd2997dc93b56669dd03b29b83d8a868797937";><code>bcfd299</code></a>
 fix: bug axios breaks commonjs compatibility main entry (<a 
href="https://redirect.github.com/axios/axios/issues/7532";>#7532</a>)</li>
   <li><a 
href="https://github.com/axios/axios/commit/d6dcbfd53e9506d9c8c0b1fd09c4d960bea9b9f0";><code>d6dcbfd</code></a>
 fix: dependabot uses the correct labels (<a 
href="https://redirect.github.com/axios/axios/issues/7530";>#7530</a>)</li>
   <li><a 
href="https://github.com/axios/axios/commit/5dd7ba78b8960fb29e39b6918ee5cb9a2130f15c";><code>5dd7ba7</code></a>
 chore: upgrade to latest ts (<a 
href="https://redirect.github.com/axios/axios/issues/7522";>#7522</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/axios/axios/compare/v1.13.6...v1.14.0";>compare 
view</a></li>
   </ul>
   </details>
   <details>
   <summary>Install script changes</summary>
   <p>This version modifies <code>prepare</code> script that runs during 
installation. Review the package contents before updating.</p>
   </details>
   <br />
   
   Updates `react-cookie` from 8.0.1 to 8.1.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/ItsBenCodes/cookies/releases";>react-cookie's 
releases</a>.</em></p>
   <blockquote>
   <h2>v8.1.0</h2>
   <h2>What's Changed</h2>
   <ul>
   <li>chore(deps): update dependency <code>@​types/react</code> to ^19.0.12 by 
<a href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/880";>ItsBenCodes/cookies#880</a></li>
   <li>chore(deps): update dependency <code>@​types/express</code> to ^5.0.1 by 
<a href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/881";>ItsBenCodes/cookies#881</a></li>
   <li>chore(deps): update dependency <code>@​types/node</code> to ^22.13.11 by 
<a href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/883";>ItsBenCodes/cookies#883</a></li>
   <li>chore(deps): update dependency rollup to ^4.37.0 by <a 
href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/884";>ItsBenCodes/cookies#884</a></li>
   <li>chore(deps): lock file maintenance by <a 
href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/885";>ItsBenCodes/cookies#885</a></li>
   <li>chore(deps): update dependency <code>@​types/node</code> to ^22.13.12 by 
<a href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/886";>ItsBenCodes/cookies#886</a></li>
   <li>chore(deps): update dependency <code>@​types/node</code> to ^22.13.13 by 
<a href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/887";>ItsBenCodes/cookies#887</a></li>
   <li>chore(deps): update babel monorepo to ^7.27.0 by <a 
href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/888";>ItsBenCodes/cookies#888</a></li>
   <li>chore(deps): update dependency <code>@​types/node</code> to ^22.13.14 by 
<a href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/889";>ItsBenCodes/cookies#889</a></li>
   <li>chore(deps): update yarn to v4.8.0 by <a 
href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/890";>ItsBenCodes/cookies#890</a></li>
   <li>fix(deps): update react monorepo to ^19.1.0 by <a 
href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/891";>ItsBenCodes/cookies#891</a></li>
   <li>chore(deps): update dependency rollup to ^4.38.0 by <a 
href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/892";>ItsBenCodes/cookies#892</a></li>
   <li>chore(deps): update yarn to v4.8.1 by <a 
href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/893";>ItsBenCodes/cookies#893</a></li>
   <li>chore(deps): lock file maintenance by <a 
href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/894";>ItsBenCodes/cookies#894</a></li>
   <li>chore(deps): update dependency <code>@​types/node</code> to ^22.13.15 by 
<a href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/896";>ItsBenCodes/cookies#896</a></li>
   <li>chore(deps): update dependency <code>@​types/node</code> to ^22.13.16 by 
<a href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/897";>ItsBenCodes/cookies#897</a></li>
   <li>chore(deps): update dependency <code>@​types/node</code> to ^22.13.17 by 
<a href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/898";>ItsBenCodes/cookies#898</a></li>
   <li>chore(deps): update dependency rollup to ^4.39.0 by <a 
href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/899";>ItsBenCodes/cookies#899</a></li>
   <li>chore(deps): update react monorepo by <a 
href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/900";>ItsBenCodes/cookies#900</a></li>
   <li>chore(deps): update dependency <code>@​testing-library/react</code> to 
^16.3.0 by <a 
href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/901";>ItsBenCodes/cookies#901</a></li>
   <li>chore(deps): update dependency <code>@​types/node</code> to ^22.14.0 by 
<a href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/902";>ItsBenCodes/cookies#902</a></li>
   <li>chore(deps): update dependency typescript to ^5.8.3 by <a 
href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/904";>ItsBenCodes/cookies#904</a></li>
   <li>chore(deps): lock file maintenance by <a 
href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/905";>ItsBenCodes/cookies#905</a></li>
   <li>chore(deps): update dependency webpack to ^5.99.0 by <a 
href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/906";>ItsBenCodes/cookies#906</a></li>
   <li>chore(deps): update dependency webpack to ^5.99.1 by <a 
href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/907";>ItsBenCodes/cookies#907</a></li>
   <li>chore(deps): update dependency webpack to ^5.99.2 by <a 
href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/908";>ItsBenCodes/cookies#908</a></li>
   <li>chore(deps): update dependency webpack to ^5.99.3 by <a 
href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/909";>ItsBenCodes/cookies#909</a></li>
   <li>chore(deps): update dependency webpack to ^5.99.4 by <a 
href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/910";>ItsBenCodes/cookies#910</a></li>
   <li>chore(deps): update dependency webpack to ^5.99.5 by <a 
href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/911";>ItsBenCodes/cookies#911</a></li>
   <li>chore(deps): update dependency <code>@​types/react-dom</code> to ^19.1.2 
by <a href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/912";>ItsBenCodes/cookies#912</a></li>
   <li>chore(deps): update yarn to v4.9.0 by <a 
href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/913";>ItsBenCodes/cookies#913</a></li>
   <li>chore(deps): update dependency <code>@​types/react</code> to ^19.1.1 by 
<a href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/914";>ItsBenCodes/cookies#914</a></li>
   <li>chore(deps): update dependency lint-staged to ^15.5.1 by <a 
href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/915";>ItsBenCodes/cookies#915</a></li>
   <li>chore(deps): update dependency <code>@​types/node</code> to ^22.14.1 by 
<a href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/916";>ItsBenCodes/cookies#916</a></li>
   <li>chore(deps): update dependency rollup to ^4.40.0 by <a 
href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/917";>ItsBenCodes/cookies#917</a></li>
   <li>chore(deps): lock file maintenance by <a 
href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/918";>ItsBenCodes/cookies#918</a></li>
   <li>chore(deps): update yarn to v4.9.1 by <a 
href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/919";>ItsBenCodes/cookies#919</a></li>
   <li>chore(deps): update dependency <code>@​types/react</code> to ^19.1.2 by 
<a href="https://github.com/renovate";><code>@​renovate</code></a>[bot] in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/921";>ItsBenCodes/cookies#921</a></li>
   <li>Upgrade libraries by <a 
href="https://github.com/ItsBenCodes";><code>@​ItsBenCodes</code></a> in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/944";>ItsBenCodes/cookies#944</a></li>
   <li>Potential fix for code scanning alert no. 1: Workflow does not contain 
permissions by <a 
href="https://github.com/ItsBenCodes";><code>@​ItsBenCodes</code></a> in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/946";>ItsBenCodes/cookies#946</a></li>
   <li>Potential fix for code scanning alert no. 2: Workflow does not contain 
permissions by <a 
href="https://github.com/ItsBenCodes";><code>@​ItsBenCodes</code></a> in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/945";>ItsBenCodes/cookies#945</a></li>
   <li>chore: fix types for react provider by <a 
href="https://github.com/tstirrat15";><code>@​tstirrat15</code></a> in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/939";>ItsBenCodes/cookies#939</a></li>
   <li>fix: refactor useLayoutEffect to follow React Hook rules and update SSR 
tests by <a href="https://github.com/deepen-404";><code>@​deepen-404</code></a> 
in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/920";>ItsBenCodes/cookies#920</a></li>
   <li>Revert from .mts to .ts files by <a 
href="https://github.com/ItsBenCodes";><code>@​ItsBenCodes</code></a> in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/947";>ItsBenCodes/cookies#947</a></li>
   <li>Bump to v8.1.0 by <a 
href="https://github.com/ItsBenCodes";><code>@​ItsBenCodes</code></a> in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/948";>ItsBenCodes/cookies#948</a></li>
   </ul>
   <h2>New Contributors</h2>
   <ul>
   <li><a href="https://github.com/tstirrat15";><code>@​tstirrat15</code></a> 
made their first contribution in <a 
href="https://redirect.github.com/ItsBenCodes/cookies/pull/939";>ItsBenCodes/cookies#939</a></li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/ItsBenCodes/cookies/commit/e597546af0672e513b6b97fe97eb2aea6d728079";><code>e597546</code></a>
 Bump to v8.1.0 (<a 
href="https://redirect.github.com/ItsBenCodes/cookies/issues/948";>#948</a>)</li>
   <li><a 
href="https://github.com/ItsBenCodes/cookies/commit/9480fc53bec14351c83fc4722ce4e81fc869af7c";><code>9480fc5</code></a>
 Revert from .mts to .ts files (<a 
href="https://redirect.github.com/ItsBenCodes/cookies/issues/947";>#947</a>)</li>
   <li><a 
href="https://github.com/ItsBenCodes/cookies/commit/ba4bf65b765306f5931bab67bbe4fa443a4a8586";><code>ba4bf65</code></a>
 fix: refactor useLayoutEffect to follow React Hook rules and update SSR 
tests...</li>
   <li><a 
href="https://github.com/ItsBenCodes/cookies/commit/99a80f741e0698be11440976cf26b8768b461e5a";><code>99a80f7</code></a>
 chore: fix types for react components (<a 
href="https://redirect.github.com/ItsBenCodes/cookies/issues/939";>#939</a>)</li>
   <li><a 
href="https://github.com/ItsBenCodes/cookies/commit/a5ae6b96c939e5c88c50b69240c1cd09633fa1e6";><code>a5ae6b9</code></a>
 Potential fix for code scanning alert no. 2: Workflow does not contain 
permis...</li>
   <li><a 
href="https://github.com/ItsBenCodes/cookies/commit/ac30565bff3f26b43cdf0aae3aa041a4610696f6";><code>ac30565</code></a>
 Potential fix for code scanning alert no. 1: Workflow does not contain 
permis...</li>
   <li><a 
href="https://github.com/ItsBenCodes/cookies/commit/78cd8824fe04cb1a0e4a52df655c0ad580765dd0";><code>78cd882</code></a>
 Upgrade libraries (<a 
href="https://redirect.github.com/ItsBenCodes/cookies/issues/944";>#944</a>)</li>
   <li><a 
href="https://github.com/ItsBenCodes/cookies/commit/3442112473210add2aaf0b7afee9bd5aced95567";><code>3442112</code></a>
 chore(deps): update dependency <code>@​types/react</code> to ^19.1.2 (<a 
href="https://redirect.github.com/ItsBenCodes/cookies/issues/921";>#921</a>)</li>
   <li><a 
href="https://github.com/ItsBenCodes/cookies/commit/b98876702d7e8205f5e9f84080dc1520b5bf15d9";><code>b988767</code></a>
 chore(deps): update yarn to v4.9.1 (<a 
href="https://redirect.github.com/ItsBenCodes/cookies/issues/919";>#919</a>)</li>
   <li><a 
href="https://github.com/ItsBenCodes/cookies/commit/060bf39f4631a4b3d112aeaa67cb8c9534f6e6d2";><code>060bf39</code></a>
 chore(deps): lock file maintenance (<a 
href="https://redirect.github.com/ItsBenCodes/cookies/issues/918";>#918</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/ItsBenCodes/cookies/compare/v8.0.1...v8.1.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `react-hook-form` from 7.71.2 to 7.72.1
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/react-hook-form/react-hook-form/releases";>react-hook-form's
 releases</a>.</em></p>
   <blockquote>
   <h2>Version 7.72.1</h2>
   <p>🐞 fix: add isDirty check for numeric string keys in defaultValues (issue 
<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13346";>#13346</a>)
 (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13347";>#13347</a>)
   🐞 fix: prevent setValue with shouldDirty from polluting unrelated dirty 
fields (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13326";>#13326</a>)
   🐞 fix: memoize control in HookFormControlContext to prevent render conflicts 
(<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13272";>#13272</a>)
 (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13312";>#13312</a>)
   🐞 fix: isNameInFieldArray should check all ancestor paths for nested field 
arrays (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13318";>#13318</a>)
   🐞 fix: <a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13320";>#13320</a>
 formState.isValid incorrect on Controller re-mount (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13324";>#13324</a>)</p>
   <p>thanks to <a 
href="https://github.com/6810779s";><code>@​6810779s</code></a>, <a 
href="https://github.com/candymask0712";><code>@​candymask0712</code></a>, <a 
href="https://github.com/olagokemills";><code>@​olagokemills</code></a>, <a 
href="https://github.com/shahmir-oscilar";><code>@​shahmir-oscilar</code></a> 
&amp; <a href="https://github.com/bae080311";><code>@​bae080311</code></a></p>
   <h2>Version 7.72.0</h2>
   <p>⚓️ feat: built-in form level validate (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13195";>#13195</a>)</p>
   <pre lang="tsx"><code>useForm({
     validate: async ({ formValues }: FormValidateResult) =&gt; {
       if (formValues.test1.length &gt; formValues.test.length) {
         return {
           type: 'formError',
           message: 'something is wrong here',
         };
       }
   <pre><code>if (formValues.test === 'test') {
     return 'direct error message';
   }
   
   return true;
   </code></pre>
   <p>},<br />
   });<br />
   </code></pre></p>
   <p>🐞 fix: prevent useFieldArray from marking unrelated fields as dirty (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13299";>#13299</a>)
   🐞 fix <a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13300";>#13300</a>
 checkbox form validation ignored with native validation (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13310";>#13310</a>)
   🌉 allow subscribe formState to track submit state (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13319";>#13319</a>)</p>
   <p>thanks to <a href="https://github.com/WiXSL";><code>@​WiXSL</code></a>, <a 
href="https://github.com/BrendanC23";><code>@​BrendanC23</code></a> &amp; <a 
href="https://github.com/6810779s";><code>@​6810779s</code></a></p>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/react-hook-form/react-hook-form/commit/724e563fe8d3be37599b237ddf5de3856a9d727f";><code>724e563</code></a>
 7.72.1</li>
   <li><a 
href="https://github.com/react-hook-form/react-hook-form/commit/ba649e97b3be3d204ca47dcfa9d13765adb37348";><code>ba649e9</code></a>
 🐞 test: add isDirty check for numeric string keys in defaultValues (issue <a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13";>#13</a>...</li>
   <li><a 
href="https://github.com/react-hook-form/react-hook-form/commit/2f56eb09180ac89b9cba563bfa3d0f856de9fae3";><code>2f56eb0</code></a>
 🛖 build(deps): bump yaml from 1.10.2 to 1.10.3 in /app (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13335";>#13335</a>)</li>
   <li><a 
href="https://github.com/react-hook-form/react-hook-form/commit/f29f546e90a647d44a9f923e287b6bbf5069ad9b";><code>f29f546</code></a>
 👯 combine duplicated code (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13328";>#13328</a>)</li>
   <li><a 
href="https://github.com/react-hook-form/react-hook-form/commit/2cfc8a5fc804631b35b22c654eac83c15afdf4a9";><code>2cfc8a5</code></a>
 🐞 fix: prevent setValue with shouldDirty from polluting unrelated dirty 
field...</li>
   <li><a 
href="https://github.com/react-hook-form/react-hook-form/commit/44e88156bbf7ae6795b6a1e37446b88866a06fe9";><code>44e8815</code></a>
 🐞 fix: memoize control in HookFormControlContext to prevent render conflicts 
...</li>
   <li><a 
href="https://github.com/react-hook-form/react-hook-form/commit/302d1608b4ef9ce2addb0b8bba09c6a09a4be35c";><code>302d160</code></a>
 🐞 fix: isNameInFieldArray should check all ancestor paths for nested field 
ar...</li>
   <li><a 
href="https://github.com/react-hook-form/react-hook-form/commit/d7ccd70033ea4b2e27638d44bbcf53b6b41e95c8";><code>d7ccd70</code></a>
 🦾 dev deps upgrade (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13325";>#13325</a>)</li>
   <li><a 
href="https://github.com/react-hook-form/react-hook-form/commit/fddf779c8650cef3ea51f9892906b72ed9cca2fa";><code>fddf779</code></a>
 🐞 fix: <a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13320";>#13320</a>
 formState.isValid incorrect on Controller re-mount  (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13324";>#13324</a>)</li>
   <li><a 
href="https://github.com/react-hook-form/react-hook-form/commit/26ae54ed4e51e5b64bbbd543eb910f76cfe2bbf4";><code>26ae54e</code></a>
 🛖 build(deps-dev): bump rollup from 4.53.3 to 4.59.0 (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13323";>#13323</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/react-hook-form/react-hook-form/compare/v7.71.2...v7.72.1";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `react-router-dom` from 7.13.1 to 7.14.0
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md";>react-router-dom's
 changelog</a>.</em></p>
   <blockquote>
   <h2>7.14.0</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>Updated dependencies:
   <ul>
   <li><code>[email protected]</code></li>
   </ul>
   </li>
   </ul>
   <h2>7.13.2</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>Updated dependencies:
   <ul>
   <li><code>[email protected]</code></li>
   </ul>
   </li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/remix-run/react-router/commit/e31077b0c380d9764dbced4c753e9ff99387045d";><code>e31077b</code></a>
 chore: Update version for release (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/14945";>#14945</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/6683e85a9d7d607a45a3f6374afcc598a474f602";><code>6683e85</code></a>
 chore: Update version for release (pre) (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/14943";>#14943</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/aadb56fa532e0eaf7e7b91c1d88e1f325851eb04";><code>aadb56f</code></a>
 chore: Update version for release (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/14908";>#14908</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/c68a9b35933fe5a3750ea8e52399d06f9aaecf77";><code>c68a9b3</code></a>
 chore: Update version for release (pre) (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/14893";>#14893</a>)</li>
   <li>See full diff in <a 
href="https://github.com/remix-run/react-router/commits/[email protected]/packages/react-router-dom";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `@7nohe/openapi-react-query-codegen` from 2.0.0 to 2.1.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/7nohe/openapi-react-query-codegen/releases";><code>@​7nohe/openapi-react-query-codegen</code>'s
 releases</a>.</em></p>
   <blockquote>
   <h2>v2.1.0</h2>
   <h2>What's Changed</h2>
   <ul>
   <li>Support TypeScript5.9.x and hey-api/openapi-ts 0.92.x by <a 
href="https://github.com/TakehiroTada";><code>@​TakehiroTada</code></a> in <a 
href="https://redirect.github.com/7nohe/openapi-react-query-codegen/pull/192";>7nohe/openapi-react-query-codegen#192</a></li>
   <li>Migrate npm release workflow to trusted publishing by <a 
href="https://github.com/7nohe";><code>@​7nohe</code></a> in <a 
href="https://redirect.github.com/7nohe/openapi-react-query-codegen/pull/193";>7nohe/openapi-react-query-codegen#193</a></li>
   </ul>
   <h2>New Contributors</h2>
   <ul>
   <li><a 
href="https://github.com/TakehiroTada";><code>@​TakehiroTada</code></a> made 
their first contribution in <a 
href="https://redirect.github.com/7nohe/openapi-react-query-codegen/pull/192";>7nohe/openapi-react-query-codegen#192</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/7nohe/openapi-react-query-codegen/compare/v2.0.0...v2.1.0";>https://github.com/7nohe/openapi-react-query-codegen/compare/v2.0.0...v2.1.0</a></p>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/7nohe/openapi-react-query-codegen/commit/b0c732bd70c1f33d3702f872a77642c151fee5d2";><code>b0c732b</code></a>
 chore: release v2.1.0</li>
   <li><a 
href="https://github.com/7nohe/openapi-react-query-codegen/commit/1d5006f3c82433080f95434227c2641369a1d247";><code>1d5006f</code></a>
 chore: add missing path for react-router-7-app in biome.json</li>
   <li><a 
href="https://github.com/7nohe/openapi-react-query-codegen/commit/dc3c83398e9da9b113bc194c4675d9ae10d62559";><code>dc3c833</code></a>
 ci: migrate npm release workflow to trusted publishing (<a 
href="https://redirect.github.com/7nohe/openapi-react-query-codegen/issues/193";>#193</a>)</li>
   <li><a 
href="https://github.com/7nohe/openapi-react-query-codegen/commit/bee536d5a3b2bd37a5a5e676cb99f42e07921ace";><code>bee536d</code></a>
 Support TypeScript5.9.x and hey-api/openapi-ts 0.92.x (<a 
href="https://redirect.github.com/7nohe/openapi-react-query-codegen/issues/192";>#192</a>)</li>
   <li>See full diff in <a 
href="https://github.com/7nohe/openapi-react-query-codegen/compare/v2.0.0...v2.1.0";>compare
 view</a></li>
   </ul>
   </details>
   <details>
   <summary>Maintainer changes</summary>
   <p>This version was pushed to npm by [GitHub Actions](<a 
href="https://www.npmjs.com/~GitHub";>https://www.npmjs.com/~GitHub</a> 
Actions), a new releaser for <code>@​7nohe/openapi-react-query-codegen</code> 
since your current version.</p>
   </details>
   <br />
   
   Updates `@eslint/compat` from 2.0.3 to 2.0.4
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/eslint/rewrite/releases";><code>@​eslint/compat</code>'s
 releases</a>.</em></p>
   <blockquote>
   <h2>migrate-config: v2.0.4</h2>
   <h2><a 
href="https://github.com/eslint/rewrite/compare/migrate-config-v2.0.3...migrate-config-v2.0.4";>2.0.4</a>
 (2026-03-20)</h2>
   <h3>Bug Fixes</h3>
   <ul>
   <li>update dependency <code>@​eslint/eslintrc</code> to ^3.3.5 (<a 
href="https://redirect.github.com/eslint/rewrite/issues/397";>#397</a>) (<a 
href="https://github.com/eslint/rewrite/commit/8567c1969f82f5582f86d9202058ac7e41c0d53d";>8567c19</a>)</li>
   </ul>
   <h2>compat: v2.0.4</h2>
   <h2><a 
href="https://github.com/eslint/rewrite/compare/compat-v2.0.3...compat-v2.0.4";>2.0.4</a>
 (2026-04-03)</h2>
   <h3>Dependencies</h3>
   <ul>
   <li>The following workspace dependencies were updated
   <ul>
   <li>dependencies
   <ul>
   <li><code>@​eslint/core</code> bumped from ^1.1.1 to ^1.2.0</li>
   </ul>
   </li>
   </ul>
   </li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/eslint/rewrite/blob/main/packages/compat/CHANGELOG.md";><code>@​eslint/compat</code>'s
 changelog</a>.</em></p>
   <blockquote>
   <h2><a 
href="https://github.com/eslint/rewrite/compare/compat-v2.0.3...compat-v2.0.4";>2.0.4</a>
 (2026-04-03)</h2>
   <h3>Dependencies</h3>
   <ul>
   <li>The following workspace dependencies were updated
   <ul>
   <li>dependencies
   <ul>
   <li><code>@​eslint/core</code> bumped from ^1.1.1 to ^1.2.0</li>
   </ul>
   </li>
   </ul>
   </li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/eslint/rewrite/commit/fe114eed69c5d59d0dd05cda8071a5b98c4daec2";><code>fe114ee</code></a>
 chore: release main (<a 
href="https://github.com/eslint/rewrite/tree/HEAD/packages/compat/issues/413";>#413</a>)</li>
   <li><a 
href="https://github.com/eslint/rewrite/commit/8863791972f3074b43f3490989e10e293f6295f5";><code>8863791</code></a>
 docs: Update README sponsors</li>
   <li><a 
href="https://github.com/eslint/rewrite/commit/835ddf95b0c421a138b0038f3e38591df9a3fd69";><code>835ddf9</code></a>
 docs: Update README sponsors</li>
   <li><a 
href="https://github.com/eslint/rewrite/commit/8cd3676402f85db8327946a909a7b9c9e3be978f";><code>8cd3676</code></a>
 docs: Update README sponsors</li>
   <li><a 
href="https://github.com/eslint/rewrite/commit/4d734592f3436cf564802a36d4af571e2933fba6";><code>4d73459</code></a>
 docs: Update README sponsors</li>
   <li><a 
href="https://github.com/eslint/rewrite/commit/a6c7a26a852f1606ce10c4642d43ee264f725781";><code>a6c7a26</code></a>
 chore: update <code>eslint</code> and <code>eslint-config-eslint</code> (<a 
href="https://github.com/eslint/rewrite/tree/HEAD/packages/compat/issues/401";>#401</a>)</li>
   <li>See full diff in <a 
href="https://github.com/eslint/rewrite/commits/compat-v2.0.4/packages/compat";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `@typescript-eslint/eslint-plugin` from 8.57.0 to 8.58.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/typescript-eslint/typescript-eslint/releases";><code>@​typescript-eslint/eslint-plugin</code>'s
 releases</a>.</em></p>
   <blockquote>
   <h2>v8.58.0</h2>
   <h2>8.58.0 (2026-03-30)</h2>
   <h3>🚀 Features</h3>
   <ul>
   <li>support TypeScript 6 (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12124";>#12124</a>)</li>
   </ul>
   <h3>🩹 Fixes</h3>
   <ul>
   <li><strong>eslint-plugin:</strong> crash in 
<code>no-unnecessary-type-arguments</code> (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12163";>#12163</a>)</li>
   <li><strong>eslint-plugin:</strong> [no-extraneous-class] handle index 
signatures (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12142";>#12142</a>)</li>
   <li><strong>eslint-plugin:</strong> [prefer-regexp-exec] avoid fixing 
unknown RegExp flags (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12161";>#12161</a>)</li>
   </ul>
   <h3>❤️ Thank You</h3>
   <ul>
   <li>ej shafran <a 
href="https://github.com/ej-shafran";><code>@​ej-shafran</code></a></li>
   <li>Evyatar Daud <a 
href="https://github.com/StyleShit";><code>@​StyleShit</code></a></li>
   <li>GG ZIBLAKING</li>
   <li>milkboy2564 <a 
href="https://github.com/SeolJaeHyeok";><code>@​SeolJaeHyeok</code></a></li>
   <li>teee32 <a href="https://github.com/teee32";><code>@​teee32</code></a></li>
   </ul>
   <p>See <a 
href="https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.58.0";>GitHub
 Releases</a> for more information.</p>
   <p>You can read about our <a 
href="https://typescript-eslint.io/users/versioning";>versioning strategy</a> 
and <a href="https://typescript-eslint.io/users/releases";>releases</a> on our 
website.</p>
   <h2>v8.57.2</h2>
   <h2>8.57.2 (2026-03-23)</h2>
   <h3>🩹 Fixes</h3>
   <ul>
   <li><strong>eslint-plugin:</strong> [prefer-optional-chain] remove dangling 
closing parenthesis (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11865";>#11865</a>)</li>
   <li><strong>eslint-plugin:</strong> [array-type] ignore Array and 
ReadonlyArray without type arguments (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11971";>#11971</a>)</li>
   <li><strong>eslint-plugin:</strong> [no-restricted-types] flag banned 
generics in extends or implements (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12120";>#12120</a>)</li>
   <li><strong>eslint-plugin:</strong> [no-unsafe-return] false positive on 
unwrapping generic (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12125";>#12125</a>)</li>
   <li><strong>eslint-plugin:</strong> [no-unsafe-return] false positive on 
unwrapping generic (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12125";>#12125</a>)</li>
   <li><strong>eslint-plugin:</strong> [no-useless-default-assignment] skip 
reporting false positives for unresolved type parameters (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12127";>#12127</a>)</li>
   <li><strong>eslint-plugin:</strong> [prefer-readonly-parameter-types] 
preserve type alias infomation (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11954";>#11954</a>)</li>
   <li><strong>typescript-estree:</strong> skip createIsolatedProgram fallback 
for projectService (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12066";>#12066</a>,
 <a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/issues/12065";>#12065</a>)</li>
   </ul>
   <h3>❤️ Thank You</h3>
   <ul>
   <li>Kirk Waiblinger <a 
href="https://github.com/kirkwaiblinger";><code>@​kirkwaiblinger</code></a></li>
   <li>Konv Suu</li>
   <li>mdm317</li>
   <li>Newton Yuan <a 
href="https://github.com/NewtonYuan";><code>@​NewtonYuan</code></a></li>
   <li>RyoheiYamamoto</li>
   <li>SungHyun627 <a 
href="https://github.com/SungHyun627";><code>@​SungHyun627</code></a></li>
   <li>Tamashoo <a 
href="https://github.com/Tamashoo";><code>@​Tamashoo</code></a></li>
   </ul>
   <p>See <a 
href="https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.57.2";>GitHub
 Releases</a> for more information.</p>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md";><code>@​typescript-eslint/eslint-plugin</code>'s
 changelog</a>.</em></p>
   <blockquote>
   <h2>8.58.0 (2026-03-30)</h2>
   <h3>🚀 Features</h3>
   <ul>
   <li>support TypeScript 6 (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12124";>#12124</a>)</li>
   </ul>
   <h3>🩹 Fixes</h3>
   <ul>
   <li><strong>eslint-plugin:</strong> [prefer-regexp-exec] avoid fixing 
unknown RegExp flags (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12161";>#12161</a>)</li>
   <li><strong>eslint-plugin:</strong> [no-extraneous-class] handle index 
signatures (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12142";>#12142</a>)</li>
   <li><strong>eslint-plugin:</strong> crash in 
<code>no-unnecessary-type-arguments</code> (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12163";>#12163</a>)</li>
   </ul>
   <h3>❤️ Thank You</h3>
   <ul>
   <li>ej shafran <a 
href="https://github.com/ej-shafran";><code>@​ej-shafran</code></a></li>
   <li>Evyatar Daud <a 
href="https://github.com/StyleShit";><code>@​StyleShit</code></a></li>
   <li>GG ZIBLAKING</li>
   <li>milkboy2564 <a 
href="https://github.com/SeolJaeHyeok";><code>@​SeolJaeHyeok</code></a></li>
   <li>teee32 <a href="https://github.com/teee32";><code>@​teee32</code></a></li>
   </ul>
   <p>See <a 
href="https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.58.0";>GitHub
 Releases</a> for more information.</p>
   <p>You can read about our <a 
href="https://typescript-eslint.io/users/versioning";>versioning strategy</a> 
and <a href="https://typescript-eslint.io/users/releases";>releases</a> on our 
website.</p>
   <h2>8.57.2 (2026-03-23)</h2>
   <h3>🩹 Fixes</h3>
   <ul>
   <li><strong>eslint-plugin:</strong> [prefer-readonly-parameter-types] 
preserve type alias infomation (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11954";>#11954</a>)</li>
   <li><strong>eslint-plugin:</strong> [no-useless-default-assignment] skip 
reporting false positives for unresolved type parameters (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12127";>#12127</a>)</li>
   <li><strong>eslint-plugin:</strong> [no-unsafe-return] false positive on 
unwrapping generic (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12125";>#12125</a>)</li>
   <li><strong>eslint-plugin:</strong> [no-restricted-types] flag banned 
generics in extends or implements (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12120";>#12120</a>)</li>
   <li><strong>eslint-plugin:</strong> [array-type] ignore Array and 
ReadonlyArray without type arguments (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11971";>#11971</a>)</li>
   <li><strong>eslint-plugin:</strong> [prefer-optional-chain] remove dangling 
closing parenthesis (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11865";>#11865</a>)</li>
   </ul>
   <h3>❤️ Thank You</h3>
   <ul>
   <li>Kirk Waiblinger <a 
href="https://github.com/kirkwaiblinger";><code>@​kirkwaiblinger</code></a></li>
   <li>Konv Suu</li>
   <li>mdm317</li>
   <li>Newton Yuan <a 
href="https://github.com/NewtonYuan";><code>@​NewtonYuan</code></a></li>
   <li>SungHyun627 <a 
href="https://github.com/SungHyun627";><code>@​SungHyun627</code></a></li>
   <li>Tamashoo <a 
href="https://github.com/Tamashoo";><code>@​Tamashoo</code></a></li>
   </ul>
   <p>See <a 
href="https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.57.2";>GitHub
 Releases</a> for more information.</p>
   <p>You can read about our <a 
href="https://typescript-eslint.io/users/versioning";>versioning strategy</a> 
and <a href="https://typescript-eslint.io/users/releases";>releases</a> on our 
website.</p>
   <h2>8.57.1 (2026-03-16)</h2>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/typescript-eslint/typescript-eslint/commit/493341709fe7d1d6433332b7bd2724e3332c7cdf";><code>4933417</code></a>
 chore(release): publish 8.58.0</li>
   <li><a 
href="https://github.com/typescript-eslint/typescript-eslint/commit/5a9bd366139c8e306dd78ae906d4389972de42b6";><code>5a9bd36</code></a>
 fix(eslint-plugin): [prefer-regexp-exec] avoid fixing unknown RegExp flags 
(#...</li>
   <li><a 
href="https://github.com/typescript-eslint/typescript-eslint/commit/edb90ebf7c75a71065bed719f3e72d18b830c6a0";><code>edb90eb</code></a>
 fix(eslint-plugin): [no-extraneous-class] handle index signatures (<a 
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/12142";>#12142</a>)</li>
   <li><a 
href="https://github.com/typescript-eslint/typescript-eslint/commit/8cde2d06fb9bc591a4c93452509ddbd600c76a35";><code>8cde2d0</code></a>
 feat: support TypeScript 6 (<a 
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/12124";>#12124</a>)</li>
   <li><a 
href="https://github.com/typescript-eslint/typescript-eslint/commit/1bf86c9f5c799916d12079c037c79e10b29cdc9c";><code>1bf86c9</code></a>
 fix(eslint-plugin): crash in <code>no-unnecessary-type-arguments</code> (<a 
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/12163";>#12163</a>)</li>
   <li><a 
href="https://github.com/typescript-eslint/typescript-eslint/commit/e9cc25a794dbf82a241807f394489a2aad39ffae";><code>e9cc25a</code></a>
 docs(eslint-plugin): fix typo (<a 
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/12155";>#12155</a>)</li>
   <li><a 
href="https://github.com/typescript-eslint/typescript-eslint/commit/be4d54d26e695cc93605ffcca67dd75848e95c6f";><code>be4d54d</code></a>
 chore(release): publish 8.57.2</li>
   <li><a 
href="https://github.com/typescript-eslint/typescript-eslint/commit/f68c8e4baca096281b458ccb6ff16ca6c5a1d199";><code>f68c8e4</code></a>
 fix(eslint-plugin): [prefer-readonly-parameter-types] preserve type alias 
inf...</li>
   <li><a 
href="https://github.com/typescript-eslint/typescript-eslint/commit/73acd2e6833c4757d2743a8dbb979154d31a1e98";><code>73acd2e</code></a>
 fix(eslint-plugin): [no-useless-default-assignment] skip reporting false 
posi...</li>
   <li><a 
href="https://github.com/typescript-eslint/typescript-eslint/commit/3d21482030e4fd220f466cea7036e07695277364";><code>3d21482</code></a>
 fix(eslint-plugin): [no-unsafe-return] false positive on unwrapping generic 
(...</li>
   <li>Additional commits viewable in <a 
href="https://github.com/typescript-eslint/typescript-eslint/commits/v8.58.0/packages/eslint-plugin";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `@typescript-eslint/parser` from 8.57.0 to 8.58.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/typescript-eslint/typescript-eslint/releases";><code>@​typescript-eslint/parser</code>'s
 releases</a>.</em></p>
   <blockquote>
   <h2>v8.58.0</h2>
   <h2>8.58.0 (2026-03-30)</h2>
   <h3>🚀 Features</h3>
   <ul>
   <li>support TypeScript 6 (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12124";>#12124</a>)</li>
   </ul>
   <h3>🩹 Fixes</h3>
   <ul>
   <li><strong>eslint-plugin:</strong> crash in 
<code>no-unnecessary-type-arguments</code> (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12163";>#12163</a>)</li>
   <li><strong>eslint-plugin:</strong> [no-extraneous-class] handle index 
signatures (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12142";>#12142</a>)</li>
   <li><strong>eslint-plugin:</strong> [prefer-regexp-exec] avoid fixing 
unknown RegExp flags (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12161";>#12161</a>)</li>
   </ul>
   <h3>❤️ Thank You</h3>
   <ul>
   <li>ej shafran <a 
href="https://github.com/ej-shafran";><code>@​ej-shafran</code></a></li>
   <li>Evyatar Daud <a 
href="https://github.com/StyleShit";><code>@​StyleShit</code></a></li>
   <li>GG ZIBLAKING</li>
   <li>milkboy2564 <a 
href="https://github.com/SeolJaeHyeok";><code>@​SeolJaeHyeok</code></a></li>
   <li>teee32 <a href="https://github.com/teee32";><code>@​teee32</code></a></li>
   </ul>
   <p>See <a 
href="https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.58.0";>GitHub
 Releases</a> for more information.</p>
   <p>You can read about our <a 
href="https://typescript-eslint.io/users/versioning";>versioning strategy</a> 
and <a href="https://typescript-eslint.io/users/releases";>releases</a> on our 
website.</p>
   <h2>v8.57.2</h2>
   <h2>8.57.2 (2026-03-23)</h2>
   <h3>🩹 Fixes</h3>
   <ul>
   <li><strong>eslint-plugin:</strong> [prefer-optional-chain] remove dangling 
closing parenthesis (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11865";>#11865</a>)</li>
   <li><strong>eslint-plugin:</strong> [array-type] ignore Array and 
ReadonlyArray without type arguments (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11971";>#11971</a>)</li>
   <li><strong>eslint-plugin:</strong> [no-restricted-types] flag banned 
generics in extends or implements (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12120";>#12120</a>)</li>
   <li><strong>eslint-plugin:</strong> [no-unsafe-return] false positive on 
unwrapping generic (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12125";>#12125</a>)</li>
   <li><strong>eslint-plugin:</strong> [no-unsafe-return] false positive on 
unwrapping generic (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12125";>#12125</a>)</li>
   <li><strong>eslint-plugin:</strong> [no-useless-default-assignment] skip 
reporting false positives for unresolved type parameters (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12127";>#12127</a>)</li>
   <li><strong>eslint-plugin:</strong> [prefer-readonly-parameter-types] 
preserve type alias infomation (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11954";>#11954</a>)</li>
   <li><strong>typescript-estree:</strong> skip createIsolatedProgram fallback 
for projectService (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12066";>#12066</a>,
 <a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/issues/12065";>#12065</a>)</li>
   </ul>
   <h3>❤️ Thank You</h3>
   <ul>
   <li>Kirk Waiblinger <a 
href="https://github.com/kirkwaiblinger";><code>@​kirkwaiblinger</code></a></li>
   <li>Konv Suu</li>
   <li>mdm317</li>
   <li>Newton Yuan <a 
href="https://github.com/NewtonYuan";><code>@​NewtonYuan</code></a></li>
   <li>RyoheiYamamoto</li>
   <li>SungHyun627 <a 
href="https://github.com/SungHyun627";><code>@​SungHyun627</code></a></li>
   <li>Tamashoo <a 
href="https://github.com/Tamashoo";><code>@​Tamashoo</code></a></li>
   </ul>
   <p>See <a 
href="https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.57.2";>GitHub
 Releases</a> for more information.</p>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md";><code>@​typescript-eslint/parser</code>'s
 changelog</a>.</em></p>
   <blockquote>
   <h2>8.58.0 (2026-03-30)</h2>
   <h3>🚀 Features</h3>
   <ul>
   <li>support TypeScript 6 (<a 
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/12124";>#12124</a>)</li>
   </ul>
   <h3>❤️ Thank You</h3>
   <ul>
   <li>Evyatar Daud <a 
href="https://github.com/StyleShit";><code>@​StyleShit</code></a></li>
   </ul>
   <p>See <a href=...
   
   _Description has been truncated_


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to