Bump path-to-regexp and react-router-dom #43

Closed
dependabot[bot] wants to merge 1 commit from dependabot/npm_and_yarn/multi-be58494012 into master
dependabot[bot] commented 2024-09-10 11:30:52 +02:00 (Migrated from github.com)

Removes path-to-regexp. It's no longer used after updating ancestor dependency react-router-dom. These dependencies need to be updated together.

Removes path-to-regexp

Updates react-router-dom from 5.3.4 to 6.26.2

Release notes

Sourced from react-router-dom's releases.

v6.4.4

What's Changed

  • Throw an error if an action/loader function returns undefined as revalidations need to know whether the loader has previously been executed. undefined also causes issues during SSR stringification for hydration. You should always ensure your loader/action returns a value, and you may return null if you don't wish to return anything. (#9511)
  • Properly handle redirects to external domains (#9590, #9654)
  • Preserve the HTTP method on 307/308 redirects (#9597)
  • Support basename in static data routers (#9591)
  • Enhanced ErrorResponse bodies to contain more descriptive text in internal 403/404/405 scenarios
  • Fix issues with encoded characters in NavLink and descendant <Routes> (#9589, #9647)
  • Properly serialize/deserialize ErrorResponse instances when using built-in hydration (#9593)
  • Support basename in static data routers (#9591)
  • Updated dependencies:
    • @remix-run/router@1.0.4
    • react-router@6.4.4

Full Changelog: https://github.com/remix-run/react-router/compare/react-router-dom@6.4.3...react-router-dom@6.4.4

react-router-dom@6.4.0-pre.15

Patch Changes

  • fix: remove internal router singleton (#9227)

    This change removes the internal module-level routerSingleton we create and maintain inside our data routers since it was causing a number of headaches for non-simple use cases:

    • Unit tests are a pain because you need to find a way to reset the singleton in-between tests
      • Use use a _resetModuleScope singleton for our tests
      • ...but this isn't exposed to users who may want to do their own tests around our router
    • The JSX children <Route> objects cause non-intuitive behavior based on idiomatic react expectations
      • Conditional runtime <Route>'s won't get picked up
      • Adding new <Route>'s during local dev won't get picked up during HMR
      • Using external state in your elements doesn't work as one might expect (see #9225)

    Instead, we are going to lift the singleton out into user-land, so that they create the router singleton and manage it outside the react tree - which is what react 18 is encouraging with useSyncExternalStore anyways! This also means that since users create the router - there's no longer any difference in the rendering aspect for memory/browser/hash routers (which only impacts router/history creation) - so we can get rid of those and trim to a simple RouterProvider

    // Before
    function App() {
      <DataBrowserRouter>
        <Route path="/" element={<Layout />}>
          <Route index element={<Home />}>
        </Route>
      <DataBrowserRouter>
    }
    

    // After
    let router = createBrowserRouter([{
    path: "/",
    element: <Layout />,
    children: [{
    index: true,

... (truncated)

Changelog

Sourced from react-router-dom's changelog.

6.26.2

Patch Changes

  • Updated dependencies:
    • @remix-run/router@1.19.2
    • react-router@6.26.2

6.26.1

Patch Changes

  • Rename unstable_patchRoutesOnMiss to unstable_patchRoutesOnNavigation to match new behavior (#11888)
  • Updated dependencies:
    • @remix-run/router@1.19.1
    • react-router@6.26.1

6.26.0

Minor Changes

  • Add a new replace(url, init?) alternative to redirect(url, init?) that performs a history.replaceState instead of a history.pushState on client-side navigation redirects (#11811)

Patch Changes

  • Fix initial hydration behavior when using future.v7_partialHydration along with unstable_patchRoutesOnMiss (#11838)
    • During initial hydration, router.state.matches will now include any partial matches so that we can render ancestor HydrateFallback components
  • Updated dependencies:
    • @remix-run/router@1.19.0
    • react-router@6.26.0

6.25.1

Patch Changes

  • Memoize some RouterProvider internals to reduce unnecessary re-renders (#11803)
  • Updated dependencies:
    • react-router@6.25.1

6.25.0

Minor Changes

  • Stabilize future.unstable_skipActionErrorRevalidation as future.v7_skipActionErrorRevalidation (#11769)
    • When this flag is enabled, actions will not automatically trigger a revalidation if they return/throw a Response with a 4xx/5xx status code
    • You may still opt-into revalidation via shouldRevalidate
    • This also changes shouldRevalidate's unstable_actionStatus parameter to actionStatus

Patch Changes

... (truncated)

Commits

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 commands and options

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)
    You can disable automated security fix PRs for this repo from the Security Alerts page.
Removes [path-to-regexp](https://github.com/pillarjs/path-to-regexp). It's no longer used after updating ancestor dependency [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom). These dependencies need to be updated together. Removes `path-to-regexp` Updates `react-router-dom` from 5.3.4 to 6.26.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/remix-run/react-router/releases">react-router-dom's releases</a>.</em></p> <blockquote> <h2>v6.4.4</h2> <h2>What's Changed</h2> <ul> <li>Throw an error if an <code>action</code>/<code>loader</code> function returns <code>undefined</code> as revalidations need to know whether the loader has previously been executed. <code>undefined</code> also causes issues during SSR stringification for hydration. You should always ensure your <code>loader</code>/<code>action</code> returns a value, and you may return <code>null</code> if you don't wish to return anything. (<a href="https://redirect.github.com/remix-run/react-router/pull/9511">#9511</a>)</li> <li>Properly handle redirects to external domains (<a href="https://redirect.github.com/remix-run/react-router/pull/9590">#9590</a>, <a href="https://redirect.github.com/remix-run/react-router/pull/9654">#9654</a>)</li> <li>Preserve the HTTP method on 307/308 redirects (<a href="https://redirect.github.com/remix-run/react-router/pull/9597">#9597</a>)</li> <li>Support <code>basename</code> in static data routers (<a href="https://redirect.github.com/remix-run/react-router/pull/9591">#9591</a>)</li> <li>Enhanced <code>ErrorResponse</code> bodies to contain more descriptive text in internal 403/404/405 scenarios</li> <li>Fix issues with encoded characters in <code>NavLink</code> and descendant <code>&lt;Routes&gt;</code> (<a href="https://redirect.github.com/remix-run/react-router/pull/9589">#9589</a>, <a href="https://redirect.github.com/remix-run/react-router/pull/9647">#9647</a>)</li> <li>Properly serialize/deserialize <code>ErrorResponse</code> instances when using built-in hydration (<a href="https://redirect.github.com/remix-run/react-router/pull/9593">#9593</a>)</li> <li>Support <code>basename</code> in static data routers (<a href="https://redirect.github.com/remix-run/react-router/pull/9591">#9591</a>)</li> <li>Updated dependencies: <ul> <li><code>@remix-run/router@1.0.4</code></li> <li><code>react-router@6.4.4</code></li> </ul> </li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/remix-run/react-router/compare/react-router-dom@6.4.3...react-router-dom@6.4.4">https://github.com/remix-run/react-router/compare/react-router-dom@6.4.3...react-router-dom@6.4.4</a></p> <h2>react-router-dom@6.4.0-pre.15</h2> <h3>Patch Changes</h3> <ul> <li> <p>fix: remove internal router singleton (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/9227">#9227</a>)</p> <p>This change removes the internal module-level <code>routerSingleton</code> we create and maintain inside our data routers since it was causing a number of headaches for non-simple use cases:</p> <ul> <li>Unit tests are a pain because you need to find a way to reset the singleton in-between tests <ul> <li>Use use a <code>_resetModuleScope</code> singleton for our tests</li> <li>...but this isn't exposed to users who may want to do their own tests around our router</li> </ul> </li> <li>The JSX children <code>&lt;Route&gt;</code> objects cause non-intuitive behavior based on idiomatic react expectations <ul> <li>Conditional runtime <code>&lt;Route&gt;</code>'s won't get picked up</li> <li>Adding new <code>&lt;Route&gt;</code>'s during local dev won't get picked up during HMR</li> <li>Using external state in your elements doesn't work as one might expect (see <a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/9225">#9225</a>)</li> </ul> </li> </ul> <p>Instead, we are going to lift the singleton out into user-land, so that they create the router singleton and manage it outside the react tree - which is what react 18 is encouraging with <code>useSyncExternalStore</code> anyways! This also means that since users create the router - there's no longer any difference in the rendering aspect for memory/browser/hash routers (which only impacts router/history creation) - so we can get rid of those and trim to a simple <code>RouterProvider</code></p> <pre lang="jsx"><code>// Before function App() { &lt;DataBrowserRouter&gt; &lt;Route path=&quot;/&quot; element={&lt;Layout /&gt;}&gt; &lt;Route index element={&lt;Home /&gt;}&gt; &lt;/Route&gt; &lt;DataBrowserRouter&gt; } <p>// After<br /> let router = createBrowserRouter([{<br /> path: &quot;/&quot;,<br /> element: &lt;Layout /&gt;,<br /> children: [{<br /> index: true,<br /> </code></pre></p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <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>6.26.2</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies: <ul> <li><code>@remix-run/router@1.19.2</code></li> <li><code>react-router@6.26.2</code></li> </ul> </li> </ul> <h2>6.26.1</h2> <h3>Patch Changes</h3> <ul> <li>Rename <code>unstable_patchRoutesOnMiss</code> to <code>unstable_patchRoutesOnNavigation</code> to match new behavior (<a href="https://redirect.github.com/remix-run/react-router/pull/11888">#11888</a>)</li> <li>Updated dependencies: <ul> <li><code>@remix-run/router@1.19.1</code></li> <li><code>react-router@6.26.1</code></li> </ul> </li> </ul> <h2>6.26.0</h2> <h3>Minor Changes</h3> <ul> <li>Add a new <code>replace(url, init?)</code> alternative to <code>redirect(url, init?)</code> that performs a <code>history.replaceState</code> instead of a <code>history.pushState</code> on client-side navigation redirects (<a href="https://redirect.github.com/remix-run/react-router/pull/11811">#11811</a>)</li> </ul> <h3>Patch Changes</h3> <ul> <li>Fix initial hydration behavior when using <code>future.v7_partialHydration</code> along with <code>unstable_patchRoutesOnMiss</code> (<a href="https://redirect.github.com/remix-run/react-router/pull/11838">#11838</a>) <ul> <li>During initial hydration, <code>router.state.matches</code> will now include any partial matches so that we can render ancestor <code>HydrateFallback</code> components</li> </ul> </li> <li>Updated dependencies: <ul> <li><code>@remix-run/router@1.19.0</code></li> <li><code>react-router@6.26.0</code></li> </ul> </li> </ul> <h2>6.25.1</h2> <h3>Patch Changes</h3> <ul> <li>Memoize some <code>RouterProvider</code> internals to reduce unnecessary re-renders (<a href="https://redirect.github.com/remix-run/react-router/pull/11803">#11803</a>)</li> <li>Updated dependencies: <ul> <li><code>react-router@6.25.1</code></li> </ul> </li> </ul> <h2>6.25.0</h2> <h3>Minor Changes</h3> <ul> <li>Stabilize <code>future.unstable_skipActionErrorRevalidation</code> as <code>future.v7_skipActionErrorRevalidation</code> (<a href="https://redirect.github.com/remix-run/react-router/pull/11769">#11769</a>) <ul> <li>When this flag is enabled, actions will not automatically trigger a revalidation if they return/throw a <code>Response</code> with a <code>4xx</code>/<code>5xx</code> status code</li> <li>You may still opt-into revalidation via <code>shouldRevalidate</code></li> <li>This also changes <code>shouldRevalidate</code>'s <code>unstable_actionStatus</code> parameter to <code>actionStatus</code></li> </ul> </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/eeb86ab07f11d8cbd28e886ee31103a4bfc25cb7"><code>eeb86ab</code></a> chore: Update version for release (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/11968">#11968</a>)</li> <li><a href="https://github.com/remix-run/react-router/commit/7cbe349fac324fdf908ef39c5528c633610fbc78"><code>7cbe349</code></a> chore: Update version for release (pre) (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/11955">#11955</a>)</li> <li><a href="https://github.com/remix-run/react-router/commit/64835156f7dd779abe7ac42e6b688012ba603bbf"><code>6483515</code></a> Merge branch 'release-next' into v6</li> <li><a href="https://github.com/remix-run/react-router/commit/05612a3011290dd6134009298628c98a5da96bbd"><code>05612a3</code></a> unstable_dataStrategy refactor for better single fetch support (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/11943">#11943</a>)</li> <li><a href="https://github.com/remix-run/react-router/commit/5651176d86f3bf71b80301810e6bfaa2cf187ee6"><code>5651176</code></a> fix: Wait for restore url navigation to complete before proceeding (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/11930">#11930</a>)</li> <li><a href="https://github.com/remix-run/react-router/commit/04d09c3d57193c14275631ee5c24abe8a4409cfb"><code>04d09c3</code></a> chore: Update version for release (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/11895">#11895</a>)</li> <li><a href="https://github.com/remix-run/react-router/commit/f806fa4693d2f55f56f3e8decb715b91d0d25aae"><code>f806fa4</code></a> chore: Update version for release (pre) (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/11889">#11889</a>)</li> <li><a href="https://github.com/remix-run/react-router/commit/5a6545bf72e37354aece3718eacb82bf5b0ac1ec"><code>5a6545b</code></a> Rename patchRoutesOnMiss to patchRoutesOnNavigation (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/11888">#11888</a>)</li> <li><a href="https://github.com/remix-run/react-router/commit/91ef14675004e5726b3bf08c53ab83cc0bddf987"><code>91ef146</code></a> chore: Update version for release (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/11863">#11863</a>)</li> <li><a href="https://github.com/remix-run/react-router/commit/7acbfbef7b4649744890d38ea2537c299a753064"><code>7acbfbe</code></a> chore: Update version for release (pre) (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/11860">#11860</a>)</li> <li>Additional commits viewable in <a href="https://github.com/remix-run/react-router/commits/react-router-dom@6.26.2/packages/react-router-dom">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 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) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/prescientmoon/erratic-gate/network/alerts). </details>
dependabot[bot] commented 2024-10-12 04:28:19 +02:00 (Migrated from github.com)

OK, I won't notify you again about this release, but will get in touch when a new version is available.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

Pull request closed

Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: prescientmoon/erratic-gate#43
No description provided.