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

   Bumps 
[react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router),
 
[@react-router/node](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-node),
 
[@react-router/serve](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-serve),
 [fumadocs-core](https://github.com/fuma-nama/fumadocs), 
[fumadocs-ui](https://github.com/fuma-nama/fumadocs) and 
[@react-router/dev](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dev).
 These dependencies needed to be updated together.
   Updates `react-router` from 7.16.0 to 8.3.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/remix-run/react-router/releases";>react-router's 
releases</a>.</em></p>
   <blockquote>
   <h2>v8.3.0</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v830";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v830</a></p>
   <h2>v8.2.0</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v820";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v820</a></p>
   <h2>v8.1.0</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v810";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v810</a></p>
   <h2>v8.0.1</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v801";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v801</a></p>
   <h2>v8.0.0</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v800";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v800</a></p>
   <h2>v7.18.1</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/v7/CHANGELOG.md#v7181";>https://github.com/remix-run/react-router/blob/v7/CHANGELOG.md#v7181</a></p>
   <h2>v7.18.0</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7180";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7180</a></p>
   <h2>v7.17.0</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7170";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7170</a></p>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/remix-run/react-router/blob/main/packages/react-router/CHANGELOG.md";>react-router's
 changelog</a>.</em></p>
   <blockquote>
   <h2>v8.3.0</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>Encode path params in <code>href</code>/<code>generatePath</code> per 
RFC 3986 path-segment rules instead of <code>encodeURIComponent</code> (<a 
href="https://redirect.github.com/remix-run/react-router/pull/15310";>#15310</a>)
   <ul>
   <li>Characters that are valid literally in a path segment (<code>$ &amp; + , 
; = : @</code> — RFC 3986 <code>pchar</code>) are no longer percent-encoded, so 
values like a semver build <code>1.0.0+1</code> interpolate unchanged instead 
of becoming <code>1.0.0%2B1</code></li>
   <li>Structural/unsafe characters (<code>/ ? # %</code>, whitespace, 
non-ASCII) are still escaped exactly as before</li>
   </ul>
   </li>
   <li>Use <code>crypto.randomUUID()</code> for 
<code>createMemorySessionStorage</code> session ids (<a 
href="https://redirect.github.com/remix-run/react-router/pull/15302";>#15302</a>)
   <ul>
   <li><code>createMemorySessionStorage</code> is only intended for local 
development and testing - sessions are lost when the server restarts</li>
   </ul>
   </li>
   <li>Fix <code>NavLink</code> not applying its <code>pending</code> state 
when <code>to</code> has a trailing slash (<a 
href="https://redirect.github.com/remix-run/react-router/pull/15300";>#15300</a>)</li>
   <li>Preserve RSC route component metadata so routes with a 
<code>clientLoader</code> can skip unnecessary server requests once their 
components have rendered while still fetching missing server-rendered elements 
(<a 
href="https://redirect.github.com/remix-run/react-router/pull/15323";>#15323</a>)</li>
   <li>Harden RSC CSRF code paths (<a 
href="https://redirect.github.com/remix-run/react-router/pull/15311";>#15311</a>)</li>
   <li>Fix server crash (<code>TypeError: Invalid state: Unable to 
enqueue</code>) when a request is aborted while the RSC HTML stream has a 
pending flush (<a 
href="https://redirect.github.com/remix-run/react-router/pull/15286";>#15286</a>)
   <ul>
   <li>Handle cancellation of the <code>injectRSCPayload</code> readable side, 
clear the pending flush, and cancel the underlying RSC payload stream</li>
   </ul>
   </li>
   </ul>
   <h3>Unstable Changes</h3>
   <p>⚠️ <em><a 
href="https://reactrouter.com/community/api-development-strategy#unstable-flags";>Unstable
 features</a> are not recommended for production use</em></p>
   <ul>
   <li>
   <p>Detect stale RSC clients during lazy route discovery and reload the 
destination document (<a 
href="https://redirect.github.com/remix-run/react-router/pull/15318";>#15318</a>)</p>
   <h4>Migration</h4>
   <p>Apps using the default RSC Framework entry do not need to make any 
changes. Apps with a custom <code>entry.rsc.tsx</code> should import the 
generated client version and pass it to 
<code>unstable_matchRSCServerRequest</code>:</p>
   <pre lang="tsx"><code>import clientVersion from 
&quot;virtual:react-router/unstable_rsc/client-version&quot;;
   <p>return unstable_matchRSCServerRequest({<br />
   // ...<br />
   clientVersion,<br />
   });<br />
   </code></pre></p>
   </li>
   <li>
   <p>Add CSP nonce support to RSC document rendering (<a 
href="https://redirect.github.com/remix-run/react-router/pull/15320";>#15320</a>)</p>
   <ul>
   <li>Add <code>nonce</code> options to 
<code>unstable_routeRSCServerRequest</code> and 
<code>unstable_RSCStaticRouter</code></li>
   <li>Forward the nonce to the HTML renderer and apply it to injected RSC 
payload scripts and nonce-aware framework components</li>
   </ul>
   <p>To adopt nonce-based CSP, update your <code>entry.ssr.tsx</code> (run 
<code>react-router reveal entry.ssr</code> first in RSC Framework Mode) to 
generate a fresh nonce for each request. Pass it to 
<code>routeRSCServerRequest</code>, spread the <code>renderHTML</code> options 
into React's HTML renderer, pass <code>options.nonce</code> to 
<code>RSCStaticRouter</code>, and use the same nonce in the 
<code>Content-Security-Policy</code> response header:</p>
   <pre lang="tsx"><code>const nonce = crypto.randomUUID();
   const response = await routeRSCServerRequest({
     request,
     serverResponse,
     createFromReadableStream,
     nonce,
     async renderHTML(getPayload, options) {
       const payload = getPayload();
       return renderHTMLToReadableStream(
   </code></pre>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/remix-run/react-router/commit/2edaca7a4f12a50cad002d55d84f73b0cdd462b6";><code>2edaca7</code></a>
 Release v8.3.0 (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router/issues/15294";>#15294</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/687ab72dddcc19d2fc749f992fe29789ba13daad";><code>687ab72</code></a>
 Prep release notes</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/d2f1f1baa5f7f75def8e07bac3c37fb185c04e1f";><code>d2f1f1b</code></a>
 update changes files to use h4 instead of h3 (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router/issues/15334";>#15334</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/8186207e4773958a3e124a76de5565256b248134";><code>8186207</code></a>
 fix(rsc): preserve component metadata for client loader revalidation (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router/issues/15323";>#15323</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/c26e431c608c68580841e7c156ed986919c60630";><code>c26e431</code></a>
 feat(rsc): support CSP nonces in document rendering (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router/issues/15320";>#15320</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/6286f904855afc245513a47ba5e4e4ffa3d63a15";><code>6286f90</code></a>
 feat(rsc): reload stale clients after new deployments (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router/issues/15318";>#15318</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/3d83ad4ac2d19768bf7b9f80962b76c52c1f777a";><code>3d83ad4</code></a>
 docs: fix useLinkClickHandler defaultShouldRevalidate default description (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router/issues/1";>#1</a>...</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/f75c89fd9cf76177c22d008265d78ee9184c483e";><code>f75c89f</code></a>
 Update docs links to v8 API reference (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router/issues/15316";>#15316</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/baa9ba617b9df1114359439013462cc3486d5b72";><code>baa9ba6</code></a>
 fix: encode path params per RFC 3986 path-segment rules in href/generatePath 
...</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/69debd1a33aa87924740ec199c4a598d4d1ebcae";><code>69debd1</code></a>
 fix: apply NavLink pending state when the to prop has a trailing slash (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router/issues/15300";>#15300</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/remix-run/react-router/commits/[email protected]/packages/react-router";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `@react-router/node` from 7.16.0 to 8.3.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/remix-run/react-router/releases";>@​react-router/node's 
releases</a>.</em></p>
   <blockquote>
   <h2>v8.3.0</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v830";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v830</a></p>
   <h2>v8.2.0</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v820";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v820</a></p>
   <h2>v8.1.0</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v810";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v810</a></p>
   <h2>v8.0.1</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v801";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v801</a></p>
   <h2>v8.0.0</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v800";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v800</a></p>
   <h2>v7.18.1</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/v7/CHANGELOG.md#v7181";>https://github.com/remix-run/react-router/blob/v7/CHANGELOG.md#v7181</a></p>
   <h2>v7.18.0</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7180";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7180</a></p>
   <h2>v7.17.0</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7170";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7170</a></p>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/remix-run/react-router/blob/main/packages/react-router-node/CHANGELOG.md";>@​react-router/node's
 changelog</a>.</em></p>
   <blockquote>
   <h2>v8.3.0</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>Allow <code>typescript@7</code> to be used (<a 
href="https://redirect.github.com/remix-run/react-router/pull/15317";>#15317</a>)</li>
   <li>Updated dependencies:
   <ul>
   <li><a 
href="https://github.com/remix-run/react-router/releases/tag/[email protected]";><code>[email protected]</code></a></li>
   </ul>
   </li>
   </ul>
   <h2>v8.2.0</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>Updated dependencies:
   <ul>
   <li><a 
href="https://github.com/remix-run/react-router/releases/tag/[email protected]";><code>[email protected]</code></a></li>
   </ul>
   </li>
   </ul>
   <h2>v8.1.0</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>Updated dependencies:
   <ul>
   <li><a 
href="https://github.com/remix-run/react-router/releases/tag/[email protected]";><code>[email protected]</code></a></li>
   </ul>
   </li>
   </ul>
   <h2>v8.0.1</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>Updated dependencies:
   <ul>
   <li><a 
href="https://github.com/remix-run/react-router/releases/tag/[email protected]";><code>[email protected]</code></a></li>
   </ul>
   </li>
   </ul>
   <h2>v8.0.0</h2>
   <h3>Major Changes</h3>
   <ul>
   <li>Switch from <code>@mjackson/node-fetch-server</code> to 
<code>@remix-run/node-fetch-server</code> now that we can directly use ESM-only 
packages (<a 
href="https://redirect.github.com/remix-run/react-router/pull/14930";>#14930</a>)</li>
   <li>Update minimum Node version to 22.22.0 (<a 
href="https://redirect.github.com/remix-run/react-router/pull/14928";>#14928</a>)</li>
   </ul>
   <h3>Patch Changes</h3>
   <ul>
   <li>Bump dependencies (<a 
href="https://redirect.github.com/remix-run/react-router/pull/15106";>#15106</a>)
   <ul>
   <li>Bumped <code>@remix-run/node-fetch-server</code> from 
<code>^0.13.0</code> to <code>^0.13.3</code></li>
   </ul>
   </li>
   <li>Updated dependencies:
   <ul>
   <li><a 
href="https://github.com/remix-run/react-router/releases/tag/[email protected]";><code>[email protected]</code></a></li>
   </ul>
   </li>
   </ul>
   <h2>v7.18.0</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>Updated dependencies:
   <ul>
   <li><a 
href="https://github.com/remix-run/react-router/releases/tag/[email protected]";><code>[email protected]</code></a></li>
   </ul>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/remix-run/react-router/commit/2edaca7a4f12a50cad002d55d84f73b0cdd462b6";><code>2edaca7</code></a>
 Release v8.3.0 (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-node/issues/15294";>#15294</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/687ab72dddcc19d2fc749f992fe29789ba13daad";><code>687ab72</code></a>
 Prep release notes</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/4680094a4baba4bc704c5bf34eb08f182f468f7b";><code>4680094</code></a>
 feat: allow typescript@7 to be used with react-router (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-node/issues/15317";>#15317</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/05180441b118d26da4df94bacc2211923d87e4c1";><code>0518044</code></a>
 Release v8.2.0 (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-node/issues/15264";>#15264</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/fdd896aadb1c470db358b4d9fe76fb53c9325f21";><code>fdd896a</code></a>
 Add tsconfigs for test files (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-node/issues/15279";>#15279</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/32876147fd414d9115ecdc344f6fef24ccf8a087";><code>3287614</code></a>
 Release v8.1.0 (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-node/issues/15227";>#15227</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/d10df2d4ae58c98660414db15c4b506013cb8c3c";><code>d10df2d</code></a>
 Release v8.0.1 (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-node/issues/15210";>#15210</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/36122b36a8c183dfbe4bcd278c585a80617c921e";><code>36122b3</code></a>
 Release v8.0.0 (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-node/issues/15198";>#15198</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/8fc707d399c521830e391fc02f421e04f23b9cf3";><code>8fc707d</code></a>
 chore: format</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/7e9be69e0843cf381a112fe04ef8bff76215e67e";><code>7e9be69</code></a>
 Version 8.0.0-pre.1</li>
   <li>Additional commits viewable in <a 
href="https://github.com/remix-run/react-router/commits/@react-router/[email protected]/packages/react-router-node";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `@react-router/serve` from 7.16.0 to 8.3.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/remix-run/react-router/releases";>@​react-router/serve's
 releases</a>.</em></p>
   <blockquote>
   <h2>v8.3.0</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v830";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v830</a></p>
   <h2>v8.2.0</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v820";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v820</a></p>
   <h2>v8.1.0</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v810";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v810</a></p>
   <h2>v8.0.1</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v801";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v801</a></p>
   <h2>v8.0.0</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v800";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v800</a></p>
   <h2>v7.18.1</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/v7/CHANGELOG.md#v7181";>https://github.com/remix-run/react-router/blob/v7/CHANGELOG.md#v7181</a></p>
   <h2>v7.18.0</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7180";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7180</a></p>
   <h2>v7.17.0</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7170";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7170</a></p>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/remix-run/react-router/blob/main/packages/react-router-serve/CHANGELOG.md";>@​react-router/serve's
 changelog</a>.</em></p>
   <blockquote>
   <h2>v8.3.0</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>Updated dependencies:
   <ul>
   <li><a 
href="https://github.com/remix-run/react-router/releases/tag/[email protected]";><code>[email protected]</code></a></li>
   <li><a 
href="https://github.com/remix-run/react-router/releases/tag/@react-router/[email protected]";><code>@react-router/[email protected]</code></a></li>
   <li><a 
href="https://github.com/remix-run/react-router/releases/tag/@react-router/[email protected]";><code>@react-router/[email protected]</code></a></li>
   </ul>
   </li>
   </ul>
   <h2>v8.2.0</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>Updated dependencies:
   <ul>
   <li><a 
href="https://github.com/remix-run/react-router/releases/tag/[email protected]";><code>[email protected]</code></a></li>
   <li><a 
href="https://github.com/remix-run/react-router/releases/tag/@react-router/[email protected]";><code>@react-router/[email protected]</code></a></li>
   <li><a 
href="https://github.com/remix-run/react-router/releases/tag/@react-router/[email protected]";><code>@react-router/[email protected]</code></a></li>
   </ul>
   </li>
   </ul>
   <h2>v8.1.0</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>Use Node's built-in networking APIs to find an available port and remove 
the <code>get-port</code> dependency (<a 
href="https://redirect.github.com/remix-run/react-router/pull/15239";>#15239</a>)</li>
   <li>Updated dependencies:
   <ul>
   <li><a 
href="https://github.com/remix-run/react-router/releases/tag/[email protected]";><code>[email protected]</code></a></li>
   <li><a 
href="https://github.com/remix-run/react-router/releases/tag/@react-router/[email protected]";><code>@react-router/[email protected]</code></a></li>
   <li><a 
href="https://github.com/remix-run/react-router/releases/tag/@react-router/[email protected]";><code>@react-router/[email protected]</code></a></li>
   </ul>
   </li>
   </ul>
   <h2>v8.0.1</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>Updated dependencies:
   <ul>
   <li><a 
href="https://github.com/remix-run/react-router/releases/tag/[email protected]";><code>[email protected]</code></a></li>
   <li><a 
href="https://github.com/remix-run/react-router/releases/tag/@react-router/[email protected]";><code>@react-router/[email protected]</code></a></li>
   <li><a 
href="https://github.com/remix-run/react-router/releases/tag/@react-router/[email protected]";><code>@react-router/[email protected]</code></a></li>
   </ul>
   </li>
   </ul>
   <h2>v8.0.0</h2>
   <h3>Major Changes</h3>
   <ul>
   <li>Switch from <code>@mjackson/node-fetch-server</code> to 
<code>@remix-run/node-fetch-server</code> now that we can directly use ESM-only 
packages (<a 
href="https://redirect.github.com/remix-run/react-router/pull/14930";>#14930</a>)</li>
   <li>Update minimum Node version to 22.22.0 (<a 
href="https://redirect.github.com/remix-run/react-router/pull/14928";>#14928</a>)</li>
   </ul>
   <h3>Minor Changes</h3>
   <ul>
   <li>Bump <code>express</code> from <code>4.21.2</code> to 
<code>5.2.1</code></li>
   </ul>
   <h3>Patch Changes</h3>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/remix-run/react-router/commit/2edaca7a4f12a50cad002d55d84f73b0cdd462b6";><code>2edaca7</code></a>
 Release v8.3.0 (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-serve/issues/15294";>#15294</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/05180441b118d26da4df94bacc2211923d87e4c1";><code>0518044</code></a>
 Release v8.2.0 (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-serve/issues/15264";>#15264</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/32876147fd414d9115ecdc344f6fef24ccf8a087";><code>3287614</code></a>
 Release v8.1.0 (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-serve/issues/15227";>#15227</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/aa35115b85345df2bc640475a57e1b1125a8dae6";><code>aa35115</code></a>
 Prep 8.1.0 release notes</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/6db7409d287763b625a15ba31418416c4dc25035";><code>6db7409</code></a>
 Remove small runtime CLI dependencies (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-serve/issues/15239";>#15239</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/d10df2d4ae58c98660414db15c4b506013cb8c3c";><code>d10df2d</code></a>
 Release v8.0.1 (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-serve/issues/15210";>#15210</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/c89079321dc0740d7ac690f8b024824a150f90c5";><code>c890793</code></a>
 Update changelog</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/36122b36a8c183dfbe4bcd278c585a80617c921e";><code>36122b3</code></a>
 Release v8.0.0 (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-serve/issues/15198";>#15198</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/8fc707d399c521830e391fc02f421e04f23b9cf3";><code>8fc707d</code></a>
 chore: format</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/7e9be69e0843cf381a112fe04ef8bff76215e67e";><code>7e9be69</code></a>
 Version 8.0.0-pre.1</li>
   <li>Additional commits viewable in <a 
href="https://github.com/remix-run/react-router/commits/@react-router/[email protected]/packages/react-router-serve";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `fumadocs-core` from 16.0.10 to 16.13.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/fuma-nama/fumadocs/releases";>fumadocs-core's 
releases</a>.</em></p>
   <blockquote>
   <h2>[email protected]</h2>
   <p>No release notes provided.</p>
   <h2>[email protected]</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>7e9548b: Fix infinite re-render where (1) a React transition is 
triggered, (2) the search dialog is inside <code>&lt;Suspense /&gt;</code>. 
This causes the <code>loading</code> state to be <code>false</code> even after 
<code>setLoading(true)</code>, as transition will freeze state updates, and 
break the render-time state checks of <code>useDocsSearch()</code>.</li>
   <li>0997dd6: Deprecate <code>type: &quot;xxx&quot;</code> usage of 
<code>useDocsSearch()</code>, pass the <code>client</code> object instead. The 
allows a smaller bundle size with improved performance.</li>
   <li>71d58b8: Add <code>$infer</code> to content loader instance for easier 
type inference.</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/fuma-nama/fumadocs/commit/b939cc7c3a57694984bf8288b88586170a55f114";><code>b939cc7</code></a>
 Version Packages (<a 
href="https://redirect.github.com/fuma-nama/fumadocs/issues/3439";>#3439</a>)</li>
   <li><a 
href="https://github.com/fuma-nama/fumadocs/commit/5929a5c3d78d5aa22e97c546d80685b50aeaf464";><code>5929a5c</code></a>
 fix(core): better negotation for Markdown</li>
   <li><a 
href="https://github.com/fuma-nama/fumadocs/commit/3085a024549ca47881d02a1d809fd700d168c6fc";><code>3085a02</code></a>
 fix(ui): registry build error</li>
   <li><a 
href="https://github.com/fuma-nama/fumadocs/commit/ef278055825490afa68f9f0915e71e0a03780f2c";><code>ef27805</code></a>
 feat(notion): support notion content source</li>
   <li><a 
href="https://github.com/fuma-nama/fumadocs/commit/6cbfe21b155a90fd102446ee889a917620c93d53";><code>6cbfe21</code></a>
 feat(ui): shortcut for theme toggle</li>
   <li><a 
href="https://github.com/fuma-nama/fumadocs/commit/417caa544b31e2cd2fd198677124e68e45f66a3c";><code>417caa5</code></a>
 feat(obsidian): css preset</li>
   <li><a 
href="https://github.com/fuma-nama/fumadocs/commit/ff3272452fc9c54e14916a90e394c0a9746414a6";><code>ff32724</code></a>
 Merge pull request <a 
href="https://redirect.github.com/fuma-nama/fumadocs/issues/3435";>#3435</a> 
from fuma-nama/tegami/version-packages</li>
   <li><a 
href="https://github.com/fuma-nama/fumadocs/commit/6d7ba929487d30f88bb6d86c06579393556679b2";><code>6d7ba92</code></a>
 fix react router</li>
   <li><a 
href="https://github.com/fuma-nama/fumadocs/commit/31435c9dac3286eb59275a2dd1fd6aa15d43353c";><code>31435c9</code></a>
 Merge pull request <a 
href="https://redirect.github.com/fuma-nama/fumadocs/issues/3432";>#3432</a> 
from fuma-nama/tegami/version-packages</li>
   <li><a 
href="https://github.com/fuma-nama/fumadocs/commit/e7de9a491aaaa736646f172f3c32169d35b228bb";><code>e7de9a4</code></a>
 fix(obsidian): fix bugs for v1</li>
   <li>Additional commits viewable in <a 
href="https://github.com/fuma-nama/fumadocs/compare/[email protected]@16.13.0";>compare
 view</a></li>
   </ul>
   </details>
   <details>
   <summary>Maintainer changes</summary>
   <p>This version was pushed to npm by <a 
href="https://www.npmjs.com/~GitHub%20Actions";>GitHub Actions</a>, a new 
releaser for fumadocs-core since your current version.</p>
   </details>
   <br />
   
   Updates `fumadocs-ui` from 16.0.10 to 16.13.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/fuma-nama/fumadocs/releases";>fumadocs-ui's 
releases</a>.</em></p>
   <blockquote>
   <h2>[email protected]</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>5499f59: type-safe provider props
   <ul>
   <li>[email protected]</li>
   </ul>
   </li>
   </ul>
   <h2>[email protected]</h2>
   <h3>Patch Changes</h3>
   <ul>
   <li>
   <p>e977acf: <strong>Change the TOC variants</strong></p>
   <p>The &quot;clerk&quot; TOC variant will revert to the original Clerk-like 
style, the redesigned TOC (the one you see on official docs) will be the new 
default.</p>
   </li>
   <li>
   <p>0997dd6: Deprecate <code>type: &quot;xxx&quot;</code> usage of 
<code>useDocsSearch()</code>, pass the <code>client</code> object instead. The 
allows a smaller bundle size with improved performance.</p>
   </li>
   <li>
   <p>Updated dependencies [7e9548b]</p>
   </li>
   <li>
   <p>Updated dependencies [0997dd6]</p>
   </li>
   <li>
   <p>Updated dependencies [71d58b8]</p>
   <ul>
   <li>[email protected]</li>
   </ul>
   </li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/fuma-nama/fumadocs/commit/b939cc7c3a57694984bf8288b88586170a55f114";><code>b939cc7</code></a>
 Version Packages (<a 
href="https://redirect.github.com/fuma-nama/fumadocs/issues/3439";>#3439</a>)</li>
   <li><a 
href="https://github.com/fuma-nama/fumadocs/commit/5929a5c3d78d5aa22e97c546d80685b50aeaf464";><code>5929a5c</code></a>
 fix(core): better negotation for Markdown</li>
   <li><a 
href="https://github.com/fuma-nama/fumadocs/commit/3085a024549ca47881d02a1d809fd700d168c6fc";><code>3085a02</code></a>
 fix(ui): registry build error</li>
   <li><a 
href="https://github.com/fuma-nama/fumadocs/commit/ef278055825490afa68f9f0915e71e0a03780f2c";><code>ef27805</code></a>
 feat(notion): support notion content source</li>
   <li><a 
href="https://github.com/fuma-nama/fumadocs/commit/6cbfe21b155a90fd102446ee889a917620c93d53";><code>6cbfe21</code></a>
 feat(ui): shortcut for theme toggle</li>
   <li><a 
href="https://github.com/fuma-nama/fumadocs/commit/417caa544b31e2cd2fd198677124e68e45f66a3c";><code>417caa5</code></a>
 feat(obsidian): css preset</li>
   <li><a 
href="https://github.com/fuma-nama/fumadocs/commit/ff3272452fc9c54e14916a90e394c0a9746414a6";><code>ff32724</code></a>
 Merge pull request <a 
href="https://redirect.github.com/fuma-nama/fumadocs/issues/3435";>#3435</a> 
from fuma-nama/tegami/version-packages</li>
   <li><a 
href="https://github.com/fuma-nama/fumadocs/commit/6d7ba929487d30f88bb6d86c06579393556679b2";><code>6d7ba92</code></a>
 fix react router</li>
   <li><a 
href="https://github.com/fuma-nama/fumadocs/commit/31435c9dac3286eb59275a2dd1fd6aa15d43353c";><code>31435c9</code></a>
 Merge pull request <a 
href="https://redirect.github.com/fuma-nama/fumadocs/issues/3432";>#3432</a> 
from fuma-nama/tegami/version-packages</li>
   <li><a 
href="https://github.com/fuma-nama/fumadocs/commit/e7de9a491aaaa736646f172f3c32169d35b228bb";><code>e7de9a4</code></a>
 fix(obsidian): fix bugs for v1</li>
   <li>Additional commits viewable in <a 
href="https://github.com/fuma-nama/fumadocs/compare/[email protected]@16.13.0";>compare
 view</a></li>
   </ul>
   </details>
   <details>
   <summary>Maintainer changes</summary>
   <p>This version was pushed to npm by <a 
href="https://www.npmjs.com/~GitHub%20Actions";>GitHub Actions</a>, a new 
releaser for fumadocs-ui since your current version.</p>
   </details>
   <br />
   
   Updates `@react-router/dev` from 7.16.0 to 8.3.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/remix-run/react-router/releases";>@​react-router/dev's 
releases</a>.</em></p>
   <blockquote>
   <h2>v8.3.0</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v830";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v830</a></p>
   <h2>v8.2.0</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v820";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v820</a></p>
   <h2>v8.1.0</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v810";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v810</a></p>
   <h2>v8.0.1</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v801";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v801</a></p>
   <h2>v8.0.0</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v800";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v800</a></p>
   <h2>v7.18.1</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/v7/CHANGELOG.md#v7181";>https://github.com/remix-run/react-router/blob/v7/CHANGELOG.md#v7181</a></p>
   <h2>v7.18.0</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7180";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7180</a></p>
   <h2>v7.17.0</h2>
   <p>See the changelog for release notes: <a 
href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7170";>https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7170</a></p>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/remix-run/react-router/blob/main/packages/react-router-dev/CHANGELOG.md";>@​react-router/dev's
 changelog</a>.</em></p>
   <blockquote>
   <h2>v8.3.0</h2>
   <h3>Minor Changes</h3>
   <ul>
   <li>Restart <code>react-router dev</code> with 
<code>--conditions=development</code> when not already configured (<a 
href="https://redirect.github.com/remix-run/react-router/pull/15291";>#15291</a>)</li>
   </ul>
   <h3>Patch Changes</h3>
   <ul>
   <li>Allow <code>typescript@7</code> to be used (<a 
href="https://redirect.github.com/remix-run/react-router/pull/15317";>#15317</a>)</li>
   </ul>
   <h3>Unstable Changes</h3>
   <p>⚠️ <em><a 
href="https://reactrouter.com/community/api-development-strategy#unstable-flags";>Unstable
 features</a> are not recommended for production use</em></p>
   <ul>
   <li>
   <p>Add <code>unstable_rsc/client-version</code> client build version virtual 
module (<a 
href="https://redirect.github.com/remix-run/react-router/pull/15318";>#15318</a>)</p>
   </li>
   <li>
   <p>Support the <code>subResourceIntegrity</code> config option in RSC 
Framework Mode (<a 
href="https://redirect.github.com/remix-run/react-router/pull/15321";>#15321</a>)</p>
   <h4>Migration guide</h4>
   <p>No changes are required when using the default RSC SSR entry. If you 
maintain a custom <code>app/entry.ssr.tsx</code>, import the new virtual module 
and pass its hashes to React's <code>importMap</code> render option:</p>
   <pre lang="diff"><code>+import subResourceIntegrity from 
&quot;virtual:react-router/unstable_rsc/subresource-integrity&quot;;
   <p>return renderToReadableStream(&lt;RSCStaticRouter getPayload={getPayload} 
/&gt;, {<br />
   ...options,<br />
   bootstrapScriptContent,<br />
   formState,</p>
   <ul>
   <li>importMap: subResourceIntegrity</li>
   <li>? { integrity: subResourceIntegrity }</li>
   <li>: undefined,<br />
   signal: request.signal,<br />
   });<br />
   </code></pre></li>
   </ul>
   </li>
   <li>
   <p>Updated dependencies:</p>
   <ul>
   <li><a 
href="https://github.com/remix-run/react-router/releases/tag/[email protected]";><code>[email protected]</code></a></li>
   <li><a 
href="https://github.com/remix-run/react-router/releases/tag/@react-router/[email protected]";><code>@react-router/[email protected]</code></a></li>
   <li><a 
href="https://github.com/remix-run/react-router/releases/tag/@react-router/[email protected]";><code>@react-router/[email protected]</code></a></li>
   </ul>
   </li>
   </ul>
   <h2>v8.2.0</h2>
   <h3>Minor Changes</h3>
   <ul>
   <li>Add a Web Streams default server entry for non-Node Framework mode apps 
(<a 
href="https://redirect.github.com/remix-run/react-router/pull/15290";>#15290</a>)
   <ul>
   <li>Apps using <code>@react-router/node</code>, 
<code>@react-router/express</code>, or <code>@react-router/serve</code> 
continue to use the <code>renderToPipeableStream</code> default server 
entry</li>
   <li>Apps without those Node server adapter dependencies use a 
<code>renderToReadableStream</code> default server entry</li>
   <li>Non-Node apps with their own <code>entry.server.tsx</code> may be able 
to remove it in favor of the default if it is not doing anything custom</li>
   </ul>
   </li>
   <li>Detect <code>nub</code> as a supported package manager when installing 
framework dependencies (<a 
href="https://redirect.github.com/remix-run/react-router/pull/15276";>#15276</a>)</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/remix-run/react-router/commit/2edaca7a4f12a50cad002d55d84f73b0cdd462b6";><code>2edaca7</code></a>
 Release v8.3.0 (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dev/issues/15294";>#15294</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/687ab72dddcc19d2fc749f992fe29789ba13daad";><code>687ab72</code></a>
 Prep release notes</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/4680094a4baba4bc704c5bf34eb08f182f468f7b";><code>4680094</code></a>
 feat: allow typescript@7 to be used with react-router (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dev/issues/15317";>#15317</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/d2f1f1baa5f7f75def8e07bac3c37fb185c04e1f";><code>d2f1f1b</code></a>
 update changes files to use h4 instead of h3 (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dev/issues/15334";>#15334</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/ce449895a37a571e9126a04fbce7284dfca48c07";><code>ce44989</code></a>
 feat(rsc): support subResourceIntegrity (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dev/issues/15321";>#15321</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/6286f904855afc245513a47ba5e4e4ffa3d63a15";><code>6286f90</code></a>
 feat(rsc): reload stale clients after new deployments (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dev/issues/15318";>#15318</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/88ded3859287e619c1dad202c6e794fff26b58f8";><code>88ded38</code></a>
 Fix change file</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/f1d0a41d9ea454d405011d7129446d9d2ba192c8";><code>f1d0a41</code></a>
 chore: format</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/497a957b6be65f2443f91819ada813e28a713dfc";><code>497a957</code></a>
 feat: restart with development condition (<a 
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dev/issues/15291";>#15291</a>)</li>
   <li><a 
href="https://github.com/remix-run/react-router/commit/ac5d9d5ac3ba0c38ee14e1c75ba79621b3b0ba07";><code>ac5d9d5</code></a>
 chore: format</li>
   <li>Additional commits viewable in <a 
href="https://github.com/remix-run/react-router/commits/@react-router/[email protected]/packages/react-router-dev";>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 this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   You can disable automated security fix PRs for this repo from the [Security 
Alerts page](https://github.com/apache/hbase/network/alerts).
   
   </details>


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