cetirizine.meta

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

151.json (11063B)


      1 {
      2   "number": 151,
      3   "title": "Bump react-router-dom from 6.16.0 to 6.17.0",
      4   "state": "closed",
      5   "diff_file": "151.diff",
      6   "author": "dependabot[bot]",
      7   "created_at": "2023-10-20T09:20:07Z",
      8   "closed_at": "2023-11-01T09:24:44Z",
      9   "merged_at": null,
     10   "base_ref": "main",
     11   "head_ref": "dependabot/npm_and_yarn/react-router-dom-6.17.0",
     12   "labels": [
     13     "dependencies",
     14     "javascript"
     15   ],
     16   "assignees": [],
     17   "requested_reviewers": [],
     18   "body": "Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.16.0 to 6.17.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/main/packages/react-router-dom/CHANGELOG.md\">react-router-dom's changelog</a>.</em></p>\n<blockquote>\n<h2>6.17.0</h2>\n<h3>Minor Changes</h3>\n<ul>\n<li>\n<p>Add experimental support for the <a href=\"https://developer.mozilla.org/en-US/docs/Web/API/ViewTransition\">View Transitions API</a> via <code>document.startViewTransition</code> to enable CSS animated transitions on SPA navigations in your application. (<a href=\"https://redirect.github.com/remix-run/react-router/pull/10916\">#10916</a>)</p>\n<p>The simplest approach to enabling a View Transition in your React Router app is via the new <code>&lt;Link unstable_viewTransition&gt;</code> prop. This will cause the navigation DOM update to be wrapped in <code>document.startViewTransition</code> which will enable transitions for the DOM update. Without any additional CSS styles, you'll get a basic cross-fade animation for your page.</p>\n<p>If you need to apply more fine-grained styles for your animations, you can leverage the <code>unstable_useViewTransitionState</code> hook which will tell you when a transition is in progress and you can use that to apply classes or styles:</p>\n<pre lang=\"jsx\"><code>function ImageLink(to, src, alt) {\n  let isTransitioning = unstable_useViewTransitionState(to);\n  return (\n    &lt;Link to={to} unstable_viewTransition&gt;\n      &lt;img\n        src={src}\n        alt={alt}\n        style={{\n          viewTransitionName: isTransitioning ? &quot;image-expand&quot; : &quot;&quot;,\n        }}\n      /&gt;\n    &lt;/Link&gt;\n  );\n}\n</code></pre>\n<p>You can also use the <code>&lt;NavLink unstable_viewTransition&gt;</code> shorthand which will manage the hook usage for you and automatically add a <code>transitioning</code> class to the <code>&lt;a&gt;</code> during the transition:</p>\n<pre lang=\"css\"><code>a.transitioning img {\n  view-transition-name: &quot;image-expand&quot;;\n}\n</code></pre>\n<pre lang=\"jsx\"><code>&lt;NavLink to={to} unstable_viewTransition&gt;\n  &lt;img src={src} alt={alt} /&gt;\n&lt;/NavLink&gt;\n</code></pre>\n<p>For an example usage of View Transitions with React Router, check out <a href=\"https://github.com/brophdawg11/react-router-records\">our fork</a> of the <a href=\"https://github.com/Charca/astro-records\">Astro Records</a> demo.</p>\n<p>For more information on using the View Transitions API, please refer to the <a href=\"https://developer.chrome.com/docs/web-platform/view-transitions/\">Smooth and simple transitions with the View Transitions API</a> guide from the Google Chrome team.</p>\n<p>Please note, that because the <code>ViewTransition</code> API is a DOM API, we now export a specific <code>RouterProvider</code> from <code>react-router-dom</code> with this functionality. If you are importing <code>RouterProvider</code> from <code>react-router</code>, then it will not support view transitions. (<a href=\"https://redirect.github.com/remix-run/react-router/pull/10928\">#10928</a></p>\n</li>\n</ul>\n<h3>Patch Changes</h3>\n<ul>\n<li>Log a warning and fail gracefully in <code>ScrollRestoration</code> when <code>sessionStorage</code> is unavailable (<a href=\"https://redirect.github.com/remix-run/react-router/pull/10848\">#10848</a>)</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/edd9ad4957321cfb260cee21ad98aab2becfe250\"><code>edd9ad4</code></a> chore: Update version for release (<a href=\"https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/10935\">#10935</a>)</li>\n<li><a href=\"https://github.com/remix-run/react-router/commit/6cfbd0e571018bf1d8722c09d70e394d2602f5be\"><code>6cfbd0e</code></a> chore: Update version for release (pre) (<a href=\"https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/10934\">#10934</a>)</li>\n<li><a href=\"https://github.com/remix-run/react-router/commit/c48341d6b75f4fd5b0ec60ed32c3c45ebb1e532f\"><code>c48341d</code></a> Lift startViewTransition implementation to react-router-dom (<a href=\"https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/10928\">#10928</a>)</li>\n<li><a href=\"https://github.com/remix-run/react-router/commit/b916689b4a211827cc324cf05994c334e25d380b\"><code>b916689</code></a> chore: Update version for release (pre) (<a href=\"https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/10931\">#10931</a>)</li>\n<li><a href=\"https://github.com/remix-run/react-router/commit/b09c5d09198b1ee4a8bfbf8a2a8910fc8eed7d2c\"><code>b09c5d0</code></a> chore: Update version for release (pre) (<a href=\"https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/10924\">#10924</a>)</li>\n<li><a href=\"https://github.com/remix-run/react-router/commit/feebfc0bf10614ba44ff43e2b9c69e22ad07a7a1\"><code>feebfc0</code></a> Add startViewTransition support (<a href=\"https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/10916\">#10916</a>)</li>\n<li><a href=\"https://github.com/remix-run/react-router/commit/da57748644da6400e2d051b2aa004df47beda1cf\"><code>da57748</code></a> fix(docs): add backticks to element names (<a href=\"https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/10874\">#10874</a>)</li>\n<li><a href=\"https://github.com/remix-run/react-router/commit/f8194fdb8e371b715d29d30a82e04a82a7648e9b\"><code>f8194fd</code></a> Handle case when session storage is blocked (<a href=\"https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom/issues/10848\">#10848</a>)</li>\n<li>See full diff in <a href=\"https://github.com/remix-run/react-router/commits/react-router-dom@6.17.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.16.0&new-version=6.17.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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)\n- `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)\n- `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)\n- `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency\n- `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions\n\n\n</details>",
     19   "comments": [
     20     {
     21       "author": "dependabot[bot]",
     22       "created_at": "2023-11-01T09:24:44Z",
     23       "body": "Superseded by #160."
     24     }
     25   ],
     26   "review_comments": []
     27 }