Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

Commit

Permalink
build(deps): Bump react-router-dom from 6.14.1 to 6.20.0 in /api-edit…
Browse files Browse the repository at this point in the history
…or/gui (#1485)

Bumps
[react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom)
from 6.14.1 to 6.20.0.
<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>[email protected]</h2>
<h3>Patch Changes</h3>
<ul>
<li>Updated dependencies
<ul>
<li>[email protected]</li>
<li>[email protected]</li>
</ul>
</li>
</ul>
<h2>[email protected]</h2>
<h3>Patch Changes</h3>
<ul>
<li>Updated dependencies
<ul>
<li>[email protected]</li>
<li>[email protected]</li>
</ul>
</li>
</ul>
<h2>[email protected]</h2>
<h3>Patch Changes</h3>
<ul>
<li>Updated dependencies
<ul>
<li>[email protected]</li>
<li>[email protected]</li>
</ul>
</li>
</ul>
<h2>[email protected]</h2>
<h3>Patch Changes</h3>
<ul>
<li>Updated dependencies
<ul>
<li>[email protected]</li>
<li>[email protected]</li>
</ul>
</li>
</ul>
<h2>[email protected]</h2>
<h3>Patch Changes</h3>
<ul>
<li>Updated dependencies
<ul>
<li>[email protected]</li>
<li>[email protected]</li>
</ul>
</li>
</ul>
<h2>[email protected]</h2>
<h3>Patch Changes</h3>
<ul>
<li>Updated dependencies
<ul>
<li><code>[email protected]</code></li>
<li><code>[email protected]</code></li>
</ul>
</li>
</ul>
<h2>[email protected]</h2>
<h3>Patch Changes</h3>
<ul>
<li>44bce3c6: Fix <code>react-router-dom</code> peer dependency version
<ul>
<li>[email protected]</li>
<li>[email protected]</li>
</ul>
</li>
</ul>
<h2>[email protected]</h2>
<!-- 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.20.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>Export the <code>PathParam</code> type from the public API (<a
href="https://redirect.github.com/remix-run/react-router/pull/10719">#10719</a>)</li>
</ul>
<h3>Patch Changes</h3>
<ul>
<li>Updated dependencies:
<ul>
<li><code>[email protected]</code></li>
<li><code>@remix-run/[email protected]</code></li>
</ul>
</li>
</ul>
<h2>6.19.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>Add <code>unstable_flushSync</code> option to
<code>useNavigate</code>/<code>useSumbit</code>/<code>fetcher.load</code>/<code>fetcher.submit</code>
to opt-out of <code>React.startTransition</code> and into
<code>ReactDOM.flushSync</code> for state updates (<a
href="https://redirect.github.com/remix-run/react-router/pull/11005">#11005</a>)</li>
<li>Allow <code>unstable_usePrompt</code> to accept a
<code>BlockerFunction</code> in addition to a <code>boolean</code> (<a
href="https://redirect.github.com/remix-run/react-router/pull/10991">#10991</a>)</li>
</ul>
<h3>Patch Changes</h3>
<ul>
<li>Fix issue where a changing fetcher <code>key</code> in a
<code>useFetcher</code> that remains mounted wasn't getting picked up
(<a
href="https://redirect.github.com/remix-run/react-router/pull/11009">#11009</a>)</li>
<li>Fix <code>useFormAction</code> which was incorrectly inheriting the
<code>?index</code> query param from child route <code>action</code>
submissions (<a
href="https://redirect.github.com/remix-run/react-router/pull/11025">#11025</a>)</li>
<li>Fix <code>NavLink</code> <code>active</code> logic when
<code>to</code> location has a trailing slash (<a
href="https://redirect.github.com/remix-run/react-router/pull/10734">#10734</a>)</li>
<li>Updated dependencies:
<ul>
<li><code>[email protected]</code></li>
<li><code>@remix-run/[email protected]</code></li>
</ul>
</li>
</ul>
<h2>6.18.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p>Add support for manual fetcher key specification via
<code>useFetcher({ key: string })</code> so you can access the same
fetcher instance from different components in your application without
prop-drilling (<a
href="https://github.com/remix-run/remix/discussions/7698">RFC</a>) (<a
href="https://redirect.github.com/remix-run/react-router/pull/10960">#10960</a>)</p>
<ul>
<li>Fetcher keys are now also exposed on the fetchers returned from
<code>useFetchers</code> so that they can be looked up by
<code>key</code></li>
</ul>
</li>
<li>
<p>Add <code>navigate</code>/<code>fetcherKey</code> params/props to
<code>useSumbit</code>/<code>Form</code> to support kicking off a
fetcher submission under the hood with an optionally user-specified
<code>key</code> (<a
href="https://redirect.github.com/remix-run/react-router/pull/10960">#10960</a>)</p>
<ul>
<li>Invoking a fetcher in this way is ephemeral and stateless</li>
<li>If you need to access the state of one of these fetchers, you will
need to leverage <code>useFetcher({ key })</code> to look it up
elsewhere</li>
</ul>
</li>
</ul>
<h3>Patch Changes</h3>
<ul>
<li>Adds a fetcher context to <code>RouterProvider</code> that holds
completed fetcher data, in preparation for the upcoming future flag that
will change the fetcher persistence/cleanup behavior (<a
href="https://redirect.github.com/remix-run/react-router/pull/10961">#10961</a>)</li>
<li>Fix the <code>future</code> prop on <code>BrowserRouter</code>,
<code>HashRouter</code> and <code>MemoryRouter</code> so that it accepts
a <code>Partial&lt;FutureConfig&gt;</code> instead of requiring all
flags to be included. (<a
href="https://redirect.github.com/remix-run/react-router/pull/10962">#10962</a>)</li>
<li>Updated dependencies:
<ul>
<li><code>@remix-run/[email protected]</code></li>
<li><code>[email protected]</code></li>
</ul>
</li>
</ul>
<h2>6.17.0</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/remix-run/react-router/commit/3cc38eac4753702a9a8a1fe239e2138d63ac6cc5"><code>3cc38ea</code></a>
chore: Update version for release (<a
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/11050">#11050</a>)</li>
<li><a
href="https://github.com/remix-run/react-router/commit/1e026b6f1ac34a774b4f77e5e3696251e8f79940"><code>1e026b6</code></a>
chore: Update version for release (pre) (<a
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/11047">#11047</a>)</li>
<li><a
href="https://github.com/remix-run/react-router/commit/5f530a775cd266940f725894277b6ea7bc55b5d0"><code>5f530a7</code></a>
Do not revalidate unmounted fetchers when v7_persistFetcher is enabled
(<a
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/11044">#11044</a>)</li>
<li><a
href="https://github.com/remix-run/react-router/commit/a48c43c8118bbf75b23b3ee748648bb3ee4d688e"><code>a48c43c</code></a>
feat: export <code>PathParam</code> type (<a
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/10719">#10719</a>)</li>
<li><a
href="https://github.com/remix-run/react-router/commit/3b1a7364c730209b4baed9454c7f6c17c55e3ba8"><code>3b1a736</code></a>
Fix flaky test</li>
<li><a
href="https://github.com/remix-run/react-router/commit/dcf0c2a85aac3a78059a287ea478ff12adcb6a2d"><code>dcf0c2a</code></a>
chore: Update version for release (<a
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/11035">#11035</a>)</li>
<li><a
href="https://github.com/remix-run/react-router/commit/7b1bd10a1f0d21dd303ae7346bd555616ca2a2fa"><code>7b1bd10</code></a>
chore: Update version for release (pre) (<a
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/11026">#11026</a>)</li>
<li><a
href="https://github.com/remix-run/react-router/commit/d5b9128914e2b85727af62a8a96bfea070e290f2"><code>d5b9128</code></a>
fix lint issues</li>
<li><a
href="https://github.com/remix-run/react-router/commit/5563672ec7f79892a576a83a495b4d64bd7ab98e"><code>5563672</code></a>
Fix useFormAction inheriting ?index param from child route action
submission ...</li>
<li><a
href="https://github.com/remix-run/react-router/commit/39854ce7a82d24b60ff2ccbd84d46fa14dbf5b62"><code>39854ce</code></a>
Fix useAcrtionData so it only returns the contextual route action data
(<a
href="https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/11023">#11023</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/remix-run/react-router/commits/[email protected]/packages/react-router-dom">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=react-router-dom&package-manager=npm_and_yarn&previous-version=6.14.1&new-version=6.20.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>
  • Loading branch information
dependabot[bot] authored Nov 29, 2023
1 parent ebd83af commit 7701b31
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 59 deletions.
77 changes: 19 additions & 58 deletions api-editor/gui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api-editor/gui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"react-markdown": "^8.0.7",
"react-redux": "^8.1.1",
"react-router": "^6.20.0",
"react-router-dom": "^6.14.1",
"react-router-dom": "^6.20.0",
"react-syntax-highlighter": "^15.5.0",
"react-window": "^1.8.10",
"rehype-katex": "^6.0.3",
Expand Down

0 comments on commit 7701b31

Please sign in to comment.