matrix-art.meta

Issues/PRs archive for MTRNord/matrix-art
git clone git://archive.git.mtrnord.blog/MTRNord/matrix-art.meta.git
Log | Files | Refs

335.md (9741B)


      1 # PR #335 Bump react-router-dom from 6.7.0 to 6.8.1
      2 
      3 - **Status:** closed
      4 - **Author:** @dependabot[bot]
      5 - **Created:** 2023-02-07T08:16:03Z
      6 - **Branch:** dependabot/npm_and_yarn/react-router-dom-6.8.1 → main
      7 - **Closed:** 2023-02-28T09:12:17Z
      8 - **Labels:** dependencies, javascript
      9 - **Assignees:** @MTRNord
     10 - **Reviewers:** @MTRNord
     11 - **Diff:** [335.diff](./335.diff)
     12 
     13 ---
     14 
     15 Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.7.0 to 6.8.1.
     16 <details>
     17 <summary>Release notes</summary>
     18 <p><em>Sourced from <a href="https://github.com/remix-run/react-router/releases">react-router-dom's releases</a>.</em></p>
     19 <blockquote>
     20 <h2>react-router-dom-v5-compat@6.4.0-pre.15</h2>
     21 <h3>Patch Changes</h3>
     22 <ul>
     23 <li>Updated dependencies
     24 <ul>
     25 <li>react-router@6.4.0-pre.15</li>
     26 <li>react-router-dom@6.4.0-pre.15</li>
     27 </ul>
     28 </li>
     29 </ul>
     30 <h2>react-router-dom-v5-compat@6.4.0-pre.11</h2>
     31 <h3>Patch Changes</h3>
     32 <ul>
     33 <li>Updated dependencies
     34 <ul>
     35 <li>react-router@6.4.0-pre.11</li>
     36 <li>react-router-dom@6.4.0-pre.11</li>
     37 </ul>
     38 </li>
     39 </ul>
     40 <h2>react-router-dom-v5-compat@6.4.0-pre.10</h2>
     41 <h3>Patch Changes</h3>
     42 <ul>
     43 <li>Updated dependencies
     44 <ul>
     45 <li>react-router@6.4.0-pre.10</li>
     46 <li>react-router-dom@6.4.0-pre.10</li>
     47 </ul>
     48 </li>
     49 </ul>
     50 <h2>react-router-dom-v5-compat@6.4.0-pre.9</h2>
     51 <h3>Patch Changes</h3>
     52 <ul>
     53 <li>Updated dependencies
     54 <ul>
     55 <li>react-router@6.4.0-pre.9</li>
     56 <li>react-router-dom@6.4.0-pre.9</li>
     57 </ul>
     58 </li>
     59 </ul>
     60 <h2>react-router-dom-v5-compat@6.4.0-pre.8</h2>
     61 <h3>Patch Changes</h3>
     62 <ul>
     63 <li>Updated dependencies
     64 <ul>
     65 <li>react-router@6.4.0-pre.8</li>
     66 <li>react-router-dom@6.4.0-pre.8</li>
     67 </ul>
     68 </li>
     69 </ul>
     70 <h2>react-router-dom-v5-compat@6.4.0-pre.7</h2>
     71 <h3>Patch Changes</h3>
     72 <ul>
     73 <li>Updated dependencies
     74 <ul>
     75 <li><code>react-router@6.4.0-pre.7</code></li>
     76 <li><code>react-router-dom@6.4.0-pre.7</code></li>
     77 </ul>
     78 </li>
     79 </ul>
     80 <h2>react-router-dom-v5-compat@6.4.0-pre.6</h2>
     81 <h3>Patch Changes</h3>
     82 <ul>
     83 <li>44bce3c6: Fix <code>react-router-dom</code> peer dependency version
     84 <ul>
     85 <li>react-router@6.4.0-pre.6</li>
     86 <li>react-router-dom@6.4.0-pre.6</li>
     87 </ul>
     88 </li>
     89 </ul>
     90 <h2>react-router-dom-v5-compat@6.4.0-pre.5</h2>
     91 <!-- raw HTML omitted -->
     92 </blockquote>
     93 <p>... (truncated)</p>
     94 </details>
     95 <details>
     96 <summary>Changelog</summary>
     97 <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>
     98 <blockquote>
     99 <h2>6.8.1</h2>
    100 <h3>Patch Changes</h3>
    101 <ul>
    102 <li>Improved absolute url detection in <code>Link</code> component (now also supports <code>mailto:</code> urls) (<a href="https://github-redirect.dependabot.com/remix-run/react-router/pull/9994">#9994</a>)</li>
    103 <li>Fix partial object (search or hash only) pathnames losing current path value (<a href="https://github-redirect.dependabot.com/remix-run/react-router/pull/10029">#10029</a>)</li>
    104 <li>Updated dependencies:
    105 <ul>
    106 <li><code>react-router@6.8.1</code></li>
    107 <li><code>@remix-run/router@1.3.2</code></li>
    108 </ul>
    109 </li>
    110 </ul>
    111 <h2>6.8.0</h2>
    112 <h3>Minor Changes</h3>
    113 <ul>
    114 <li>
    115 <p>Support absolute URLs in <code>&lt;Link to&gt;</code>. If the URL is for the current origin, it will still do a client-side navigation. If the URL is for a different origin then it will do a fresh document request for the new origin. (<a href="https://github-redirect.dependabot.com/remix-run/react-router/pull/9900">#9900</a>)</p>
    116 <pre lang="tsx"><code>&lt;Link to=&quot;https://neworigin.com/some/path&quot;&gt;    {/* Document request */}
    117 &lt;Link to=&quot;//neworigin.com/some/path&quot;&gt;          {/* Document request */}
    118 &lt;Link to=&quot;https://www.currentorigin.com/path&quot;&gt; {/* Client-side navigation */}
    119 </code></pre>
    120 </li>
    121 </ul>
    122 <h3>Patch Changes</h3>
    123 <ul>
    124 <li>Fix bug with search params removal via <code>useSearchParams</code> (<a href="https://github-redirect.dependabot.com/remix-run/react-router/pull/9969">#9969</a>)</li>
    125 <li>Respect <code>preventScrollReset</code> on <code>&lt;fetcher.Form&gt;</code> (<a href="https://github-redirect.dependabot.com/remix-run/react-router/pull/9963">#9963</a>)</li>
    126 <li>Fix navigation for hash routers on manual URL changes (<a href="https://github-redirect.dependabot.com/remix-run/react-router/pull/9980">#9980</a>)</li>
    127 <li>Use <code>pagehide</code> instead of <code>beforeunload</code> for <code>&lt;ScrollRestoration&gt;</code>. This has better cross-browser support, specifically on Mobile Safari. (<a href="https://github-redirect.dependabot.com/remix-run/react-router/pull/9945">#9945</a>)</li>
    128 <li>Updated dependencies:
    129 <ul>
    130 <li><code>@remix-run/router@1.3.1</code></li>
    131 <li><code>react-router@6.8.0</code></li>
    132 </ul>
    133 </li>
    134 </ul>
    135 </blockquote>
    136 </details>
    137 <details>
    138 <summary>Commits</summary>
    139 <ul>
    140 <li><a href="https://github.com/remix-run/react-router/commit/6bbd48c093d2ab2fd9e94405db1cdfba045ae295"><code>6bbd48c</code></a> chore: Update version for release (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/10056">#10056</a>)</li>
    141 <li><a href="https://github.com/remix-run/react-router/commit/d6fbfabb3b95d702355cc1e0ba874bb36b186efa"><code>d6fbfab</code></a> chore: Update version for release (pre) (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/10035">#10035</a>)</li>
    142 <li><a href="https://github.com/remix-run/react-router/commit/b620be264819cfc075b3996ce2a3c6b2691b5de0"><code>b620be2</code></a> Fix partial object (search or hash only) pathnames losing current path (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/10029">#10029</a>)</li>
    143 <li><a href="https://github.com/remix-run/react-router/commit/80832fbf142a7038bd83cc0f18b97414974006d5"><code>80832fb</code></a> Added better detection for absolute urls in link component (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/9994">#9994</a>)</li>
    144 <li><a href="https://github.com/remix-run/react-router/commit/e158bc157d6ebb6cc0cdd3577ef30e2ee94c4a16"><code>e158bc1</code></a> chore: Update version for release (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/9988">#9988</a>)</li>
    145 <li><a href="https://github.com/remix-run/react-router/commit/adc63c65bc98a65cad37f1ef65881549aa66fd73"><code>adc63c6</code></a> chore: Update version for release (pre) (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/9976">#9976</a>)</li>
    146 <li><a href="https://github.com/remix-run/react-router/commit/72e3ca65b6f7708f66862dc5259d41d4b1cacd21"><code>72e3ca6</code></a> chore: Update version for release (pre) (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/9974">#9974</a>)</li>
    147 <li><a href="https://github.com/remix-run/react-router/commit/075a2e0bd3937241c33dd4ef65d79b719e24c1a9"><code>075a2e0</code></a> Merge branch 'main' into release-next</li>
    148 <li><a href="https://github.com/remix-run/react-router/commit/e29876cf57df9b4519ca2e618de34820e055424e"><code>e29876c</code></a> Fix bug with search params removal (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/9969">#9969</a>)</li>
    149 <li><a href="https://github.com/remix-run/react-router/commit/db73e9482318271d9e10cb6d81b7fb6f1d67eb5c"><code>db73e94</code></a> Change useScrollRestoration to use pagehide event (<a href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/9945">#9945</a>)</li>
    150 <li>Additional commits viewable in <a href="https://github.com/remix-run/react-router/commits/react-router-dom@6.8.1/packages/react-router-dom">compare view</a></li>
    151 </ul>
    152 </details>
    153 <br />
    154 
    155 
    156 [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=react-router-dom&package-manager=npm_and_yarn&previous-version=6.7.0&new-version=6.8.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
    157 
    158 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`.
    159 
    160 [//]: # (dependabot-automerge-start)
    161 [//]: # (dependabot-automerge-end)
    162 
    163 ---
    164 
    165 <details>
    166 <summary>Dependabot commands and options</summary>
    167 <br />
    168 
    169 You can trigger Dependabot actions by commenting on this PR:
    170 - `@dependabot rebase` will rebase this PR
    171 - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
    172 - `@dependabot merge` will merge this PR after your CI passes on it
    173 - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
    174 - `@dependabot cancel merge` will cancel a previously requested merge and block automerging
    175 - `@dependabot reopen` will reopen this PR if it is closed
    176 - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    177 - `@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)
    178 - `@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)
    179 - `@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)
    180 
    181 
    182 </details>
    183 
    184 <!-- Replace -->
    185 ----
    186 ⌛ Deploy Preview - Build in Progress
    187 <!-- Replace -->
    188 
    189 
    190 
    191 ## Comments
    192 
    193 ### @dependabot[bot] — 2023-02-28T09:12:16Z
    194 
    195 Superseded by #361.
    196