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

494.json (10060B)


      1 {
      2   "number": 494,
      3   "title": "Bump react-router-dom from 6.7.0 to 6.14.0",
      4   "state": "closed",
      5   "diff_file": "494.diff",
      6   "author": "dependabot[bot]",
      7   "created_at": "2023-06-26T09:08:49Z",
      8   "closed_at": "2023-07-03T08:38:33Z",
      9   "merged_at": null,
     10   "base_ref": "main",
     11   "head_ref": "dependabot/npm_and_yarn/react-router-dom-6.14.0",
     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.0.\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/react-router-dom@6.14.0/packages/react-router-dom/CHANGELOG.md\">react-router-dom's changelog</a>.</em></p>\n<blockquote>\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  let submit = useSubmit();\n  submit(&quot;Text submission&quot;, { method: &quot;post&quot;, encType: &quot;text/plain&quot; });\n  // navigation.formEncType =&gt; &quot;text/plain&quot;\n  // navigation.text        =&gt; &quot;Text submission&quot;\n}\n\nasync function action({ request }) {\n  // request.headers.get(&quot;Content-Type&quot;) =&gt; &quot;text/plain&quot;\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/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><a href=\"https://github.com/remix-run/react-router/commit/8b95f2b861feb5999b509d22318cd2384ab84dac\"><code>8b95f2b</code></a> chore: Update version for release (pre) (<a href=\"https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/10626\">#10626</a>)</li>\n<li><a href=\"https://github.com/remix-run/react-router/commit/96e1fc1dcdcfd89930df1af4cf190f43c2a0f461\"><code>96e1fc1</code></a> Inline startTransitionImpl to avoid .d.ts issues with skipLibCheck:false (<a href=\"https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/10\">#10</a>...</li>\n<li><a href=\"https://github.com/remix-run/react-router/commit/f63774c3843e2f25b6ca5b6f4882ebd4db705603\"><code>f63774c</code></a> fix(react-router-dom): fix submitter serialization (<a href=\"https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/9865\">#9865</a>)</li>\n<li><a href=\"https://github.com/remix-run/react-router/commit/a3b21eb301b336bfb7645ba11d8b96eed9fbefd6\"><code>a3b21eb</code></a> Merge branch 'release-next' into dev</li>\n<li><a href=\"https://github.com/remix-run/react-router/commit/ed17fcd344d33e5d2bca6ec053975a761f5990ce\"><code>ed17fcd</code></a> chore: Update version for release (<a href=\"https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/10601\">#10601</a>)</li>\n<li>Additional commits viewable in <a href=\"https://github.com/remix-run/react-router/commits/react-router-dom@6.14.0/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.0)](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>\n\n<!-- Replace -->\n----\n\u231b Deploy Preview - Build in Progress\n<!-- Replace -->\n",
     23   "comments": [
     24     {
     25       "author": "dependabot[bot]",
     26       "created_at": "2023-07-03T08:38:32Z",
     27       "body": "Superseded by #505."
     28     }
     29   ],
     30   "review_comments": []
     31 }