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

505.json (9789B)


      1 {
      2   "number": 505,
      3   "title": "Bump react-router-dom from 6.7.0 to 6.14.1",
      4   "state": "closed",
      5   "diff_file": "505.diff",
      6   "author": "dependabot[bot]",
      7   "created_at": "2023-07-03T08:38:28Z",
      8   "closed_at": "2023-07-18T08:30:02Z",
      9   "merged_at": null,
     10   "base_ref": "main",
     11   "head_ref": "dependabot/npm_and_yarn/react-router-dom-6.14.1",
     12   "labels": [
     13     "dependencies",
     14     "javascript"
     15   ],
     16   "assignees": [
     17     "MTRNord"
     18   ],
     19   "requested_reviewers": [
     20     "MTRNord"
     21   ],
     22   "body": "Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.7.0 to 6.14.1.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a href=\"https://github.com/remix-run/react-router/releases\">react-router-dom's releases</a>.</em></p>\n<blockquote>\n<h2>react-router-dom-v5-compat@6.4.0-pre.15</h2>\n<h3>Patch Changes</h3>\n<ul>\n<li>Updated dependencies\n<ul>\n<li>react-router@6.4.0-pre.15</li>\n<li>react-router-dom@6.4.0-pre.15</li>\n</ul>\n</li>\n</ul>\n<h2>react-router-dom-v5-compat@6.4.0-pre.11</h2>\n<h3>Patch Changes</h3>\n<ul>\n<li>Updated dependencies\n<ul>\n<li>react-router@6.4.0-pre.11</li>\n<li>react-router-dom@6.4.0-pre.11</li>\n</ul>\n</li>\n</ul>\n<h2>react-router-dom-v5-compat@6.4.0-pre.10</h2>\n<h3>Patch Changes</h3>\n<ul>\n<li>Updated dependencies\n<ul>\n<li>react-router@6.4.0-pre.10</li>\n<li>react-router-dom@6.4.0-pre.10</li>\n</ul>\n</li>\n</ul>\n<h2>react-router-dom-v5-compat@6.4.0-pre.9</h2>\n<h3>Patch Changes</h3>\n<ul>\n<li>Updated dependencies\n<ul>\n<li>react-router@6.4.0-pre.9</li>\n<li>react-router-dom@6.4.0-pre.9</li>\n</ul>\n</li>\n</ul>\n<h2>react-router-dom-v5-compat@6.4.0-pre.8</h2>\n<h3>Patch Changes</h3>\n<ul>\n<li>Updated dependencies\n<ul>\n<li>react-router@6.4.0-pre.8</li>\n<li>react-router-dom@6.4.0-pre.8</li>\n</ul>\n</li>\n</ul>\n<h2>react-router-dom-v5-compat@6.4.0-pre.7</h2>\n<h3>Patch Changes</h3>\n<ul>\n<li>Updated dependencies\n<ul>\n<li><code>react-router@6.4.0-pre.7</code></li>\n<li><code>react-router-dom@6.4.0-pre.7</code></li>\n</ul>\n</li>\n</ul>\n<h2>react-router-dom-v5-compat@6.4.0-pre.6</h2>\n<h3>Patch Changes</h3>\n<ul>\n<li>44bce3c6: Fix <code>react-router-dom</code> peer dependency version\n<ul>\n<li>react-router@6.4.0-pre.6</li>\n<li>react-router-dom@6.4.0-pre.6</li>\n</ul>\n</li>\n</ul>\n<h2>react-router-dom-v5-compat@6.4.0-pre.5</h2>\n<!-- raw HTML omitted -->\n</blockquote>\n<p>... (truncated)</p>\n</details>\n<details>\n<summary>Changelog</summary>\n<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>\n<blockquote>\n<h2>6.14.1</h2>\n<h3>Patch Changes</h3>\n<ul>\n<li>Updated dependencies:\n<ul>\n<li><code>react-router@6.14.1</code></li>\n<li><code>@remix-run/router@1.7.1</code></li>\n</ul>\n</li>\n</ul>\n<h2>6.14.0</h2>\n<h3>Minor Changes</h3>\n<ul>\n<li>\n<p>Add support for <code>application/json</code> and <code>text/plain</code> encodings for <code>useSubmit</code>/<code>fetcher.submit</code>. To reflect these additional types, <code>useNavigation</code>/<code>useFetcher</code> now also contain <code>navigation.json</code>/<code>navigation.text</code> and <code>fetcher.json</code>/<code>fetcher.text</code> which include the json/text submission if applicable (<a href=\"https://redirect.github.com/remix-run/react-router/pull/10413\">#10413</a>)</p>\n<pre lang=\"jsx\"><code>// The default behavior will still serialize as FormData\nfunction Component() {\n  let navigation = useNavigation();\n  let submit = useSubmit();\n  submit({ key: &quot;value&quot; }, { method: &quot;post&quot; });\n  // navigation.formEncType =&gt; &quot;application/x-www-form-urlencoded&quot;\n  // navigation.formData    =&gt; FormData instance\n}\n<p>async function action({ request }) {\n// request.headers.get(&quot;Content-Type&quot;) =&gt; &quot;application/x-www-form-urlencoded&quot;\n// await request.formData()            =&gt; FormData instance\n}\n</code></pre></p>\n<pre lang=\"js\"><code>// Opt-into JSON encoding with `encType: &quot;application/json&quot;`\nfunction Component() {\n  let navigation = useNavigation();\n  let submit = useSubmit();\n  submit({ key: &quot;value&quot; }, { method: &quot;post&quot;, encType: &quot;application/json&quot; });\n  // navigation.formEncType =&gt; &quot;application/json&quot;\n  // navigation.json        =&gt; { key: &quot;value&quot; }\n}\n\nasync function action({ request }) {\n  // request.headers.get(&quot;Content-Type&quot;) =&gt; &quot;application/json&quot;\n  // await request.json()                =&gt; { key: &quot;value&quot; }\n}\n</code></pre>\n<pre lang=\"js\"><code>// Opt-into text encoding with `encType: &quot;text/plain&quot;`\nfunction Component() {\n  let navigation = useNavigation();\n</code></pre>\n</li>\n</ul>\n<!-- raw HTML omitted -->\n</blockquote>\n<p>... (truncated)</p>\n</details>\n<details>\n<summary>Commits</summary>\n<ul>\n<li><a href=\"https://github.com/remix-run/react-router/commit/8be5e51772b2953b67bec739387f8192c57949f5\"><code>8be5e51</code></a> chore: Update version for release (<a href=\"https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/10659\">#10659</a>)</li>\n<li><a href=\"https://github.com/remix-run/react-router/commit/1f06a02acfc45971ce7b9b69025d399fe0a4ae56\"><code>1f06a02</code></a> chore: Update version for release (pre) (<a href=\"https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/10658\">#10658</a>)</li>\n<li><a href=\"https://github.com/remix-run/react-router/commit/cbda9cff254e682e8b42b15346e0249b63c7d647\"><code>cbda9cf</code></a> Fix issue with reused blockers on subsequent navigations (<a href=\"https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/10656\">#10656</a>)</li>\n<li><a href=\"https://github.com/remix-run/react-router/commit/775bff945076522bf11343dc1156e4dedc8ee5f1\"><code>775bff9</code></a> chore: Update version for release (pre) (<a href=\"https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/10653\">#10653</a>)</li>\n<li><a href=\"https://github.com/remix-run/react-router/commit/0ffa3dc7f75b9439321fb7b57d55201ddf391417\"><code>0ffa3dc</code></a> Fix loop in unstable_useBlocker when used with an unstable blocker function (...</li>\n<li><a href=\"https://github.com/remix-run/react-router/commit/09b6cbeabb02ffaccc3d5a6ca751b9f5221b0d5b\"><code>09b6cbe</code></a> chore: Update version for release (<a href=\"https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/10636\">#10636</a>)</li>\n<li><a href=\"https://github.com/remix-run/react-router/commit/9debb5c123d7ab9f9d15b6db4fc0fd9d7ea2a856\"><code>9debb5c</code></a> Update changelogs</li>\n<li><a href=\"https://github.com/remix-run/react-router/commit/d1bc7cf0af7c977103b7a1a7c1294d8dc8595b63\"><code>d1bc7cf</code></a> Update changeset + chanbgelog</li>\n<li><a href=\"https://github.com/remix-run/react-router/commit/6cbd0b148e9655f0a471c9f2445f49f343c52d21\"><code>6cbd0b1</code></a> chore: Update version for release (pre) (<a href=\"https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/10628\">#10628</a>)</li>\n<li><a href=\"https://github.com/remix-run/react-router/commit/19a71df56ff6fde417cc80aa9394d1d5b63e1d72\"><code>19a71df</code></a> fix FormData submitter check (<a href=\"https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/10627\">#10627</a>)</li>\n<li>Additional commits viewable in <a href=\"https://github.com/remix-run/react-router/commits/react-router-dom@6.14.1/packages/react-router-dom\">compare view</a></li>\n</ul>\n</details>\n<br />\n\n\n[![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.14.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n<details>\n<summary>Dependabot commands and options</summary>\n<br />\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@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)\n- `@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)\n- `@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)\n\n\n</details>",
     23   "comments": [
     24     {
     25       "author": "dependabot[bot]",
     26       "created_at": "2023-07-18T08:30:01Z",
     27       "body": "Superseded by #536."
     28     }
     29   ],
     30   "review_comments": []
     31 }