Skip to content

Commit d642cd6

Browse files
Bump react-router from 7.10.1 to 7.11.0 (#394)
Bumps [react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router) from 7.10.1 to 7.11.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>v7.11.0</h2> <p>See the changelog for release notes: <a href="https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7110">https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v7110</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>7.11.0</h2> <h3>Minor Changes</h3> <ul> <li>Stabilize <code>&lt;HydratedRouter onError&gt;</code>/<code>&lt;RouterProvider onError&gt;</code> (<a href="https://redirect.github.com/remix-run/react-router/pull/14546">#14546</a>)</li> </ul> <h3>Patch Changes</h3> <ul> <li> <p>add support for throwing redirect Response's at RSC render time (<a href="https://redirect.github.com/remix-run/react-router/pull/14596">#14596</a>)</p> </li> <li> <p>Support for throwing <code>data()</code> and Response from server component render phase. Response body is not serialized as async work is not allowed as error encoding phase. If you wish to transmit data to the boundary, throw <code>data()</code> instead. (<a href="https://redirect.github.com/remix-run/react-router/pull/14632">#14632</a>)</p> </li> <li> <p>Fix <code>unstable_useTransitions</code> prop on <code>&lt;Router&gt;</code> component to permit omission for backewards compatibility (<a href="https://redirect.github.com/remix-run/react-router/pull/14646">#14646</a>)</p> </li> <li> <p><code>routeRSCServerRequest</code> replace <code>fetchServer</code> with <code>serverResponse</code> (<a href="https://redirect.github.com/remix-run/react-router/pull/14597">#14597</a>)</p> </li> <li> <p>[UNSTABLE] Add a new <code>unstable_defaultShouldRevalidate</code> flag to various APIs to allow opt-ing out of standard revalidation behaviors. (<a href="https://redirect.github.com/remix-run/react-router/pull/14542">#14542</a>)</p> <p>If active routes include a <code>shouldRevalidate</code> function, then your value will be passed as <code>defaultShouldRevalidate</code> in those function so that the route always has the final revalidation determination.</p> <ul> <li><code>&lt;Form method=&quot;post&quot; unstable_defaultShouldRevalidate={false}&gt;</code></li> <li><code>submit(data, { method: &quot;post&quot;, unstable_defaultShouldRevalidate: false })</code></li> <li><code>&lt;fetcher.Form method=&quot;post&quot; unstable_defaultShouldRevalidate={false}&gt;</code></li> <li><code>fetcher.submit(data, { method: &quot;post&quot;, unstable_defaultShouldRevalidate: false })</code></li> </ul> <p>This is also available on non-submission APIs that may trigger revalidations due to changing search params:</p> <ul> <li><code>&lt;Link to=&quot;/&quot; unstable_defaultShouldRevalidate={false}&gt;</code></li> <li><code>navigate(&quot;/?foo=bar&quot;, { unstable_defaultShouldRevalidate: false })</code></li> <li><code>setSearchParams(params, { unstable_defaultShouldRevalidate: false })</code></li> </ul> </li> <li> <p>Allow redirects to be returned from client side middleware (<a href="https://redirect.github.com/remix-run/react-router/pull/14598">#14598</a>)</p> </li> <li> <p>Handle <code>dataStrategy</code> implementations that return insufficient result sets by adding errors for routes without any available result (<a href="https://redirect.github.com/remix-run/react-router/pull/14627">#14627</a>)</p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/remix-run/react-router/commit/b34a9cd1f74231ded97c1e6ca9dff8f09a1b87ca"><code>b34a9cd</code></a> chore: Update version for release (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router/issues/14668">#14668</a>)</li> <li><a href="https://github.com/remix-run/react-router/commit/48b1be47a4a827cef1d012f2f6e64003c93054b0"><code>48b1be4</code></a> chore: Update version for release (pre) (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router/issues/14662">#14662</a>)</li> <li><a href="https://github.com/remix-run/react-router/commit/4c34f87f44d035cac21ab024d3848594959073f4"><code>4c34f87</code></a> Merge branch 'main' into release-next</li> <li><a href="https://github.com/remix-run/react-router/commit/0206276a4fdf38fe7894c29d9c0ae762629b5d70"><code>0206276</code></a> Detect and handle partial dataStrategy results (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router/issues/14627">#14627</a>)</li> <li><a href="https://github.com/remix-run/react-router/commit/ff50507a7db5e0e5b6fc36b7f5e73c10b722b21c"><code>ff50507</code></a> Update monorepo internal React deps (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router/issues/14639">#14639</a>)</li> <li><a href="https://github.com/remix-run/react-router/commit/c257ee169ce02e9b8bf8bd2fe6c531c50693cbdf"><code>c257ee1</code></a> feat(rsc): add support for custom entry files in RSC Framework Mode (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router/issues/14643">#14643</a>)</li> <li><a href="https://github.com/remix-run/react-router/commit/8efde7affcc9f221695a6bbb92f475db465032b4"><code>8efde7a</code></a> Add callsite revalidation optout (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router/issues/14542">#14542</a>)</li> <li><a href="https://github.com/remix-run/react-router/commit/6300a9fc60691a1ffc76d23555929aa7b54fcd23"><code>6300a9f</code></a> Stabilize client-side onError (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router/issues/14546">#14546</a>)</li> <li><a href="https://github.com/remix-run/react-router/commit/3bc35f50ae9ec2d85b5e14b811885f1c7c2e2c35"><code>3bc35f5</code></a> Make unstable_useTransitions prop optional on Router component (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router/issues/14646">#14646</a>)</li> <li><a href="https://github.com/remix-run/react-router/commit/8f6bfa0b9662a4b21f588bc4ff4db510a24b0a15"><code>8f6bfa0</code></a> Setup pnpm catalog for shared workspace deps (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router/issues/14642">#14642</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 /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=react-router&package-manager=bun&previous-version=7.10.1&new-version=7.11.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent aa53b72 commit d642cd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bun.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@
188188

189189
"react-i18next": ["[email protected]", "", { "dependencies": { "@babel/runtime": "^7.27.6", "html-parse-stringify": "^3.0.1" }, "peerDependencies": { "i18next": ">= 25.5.2", "react": ">= 16.8.0", "typescript": "^5" }, "optionalPeers": ["typescript"] }, "sha512-JQ+dFfLnFSKJQt7W01lJHWRC0SX7eDPobI+MSTJ3/gP39xH2g33AuTE7iddAfXYHamJdAeMGM0VFboPaD3G68Q=="],
190190

191-
"react-router": ["react-router@7.10.1", "", { "dependencies": { "cookie": "^1.0.1", "set-cookie-parser": "^2.6.0" }, "peerDependencies": { "react": ">=18", "react-dom": ">=18" }, "optionalPeers": ["react-dom"] }, "sha512-gHL89dRa3kwlUYtRQ+m8NmxGI6CgqN+k4XyGjwcFoQwwCWF6xXpOCUlDovkXClS0d0XJN/5q7kc5W3kiFEd0Yw=="],
191+
"react-router": ["react-router@7.11.0", "", { "dependencies": { "cookie": "^1.0.1", "set-cookie-parser": "^2.6.0" }, "peerDependencies": { "react": ">=18", "react-dom": ">=18" }, "optionalPeers": ["react-dom"] }, "sha512-uI4JkMmjbWCZc01WVP2cH7ZfSzH91JAZUDd7/nIprDgWxBV1TkkmLToFh7EbMTcMak8URFRa2YoBL/W8GWnCTQ=="],
192192

193193
"require-directory": ["[email protected]", "", {}, "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q=="],
194194

0 commit comments

Comments
 (0)