IBM / mobx-react-router

Keep your MobX state in sync with react-router
MIT License
439 stars 48 forks source link

chore(deps-dev): bump react-router from 5.2.0 to 6.14.1 #133

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps react-router from 5.2.0 to 6.14.1.

Release notes

Sourced from react-router's releases.

v6.14.1

Patch Changes

  • Fix loop in unstable_useBlocker when used with an unstable blocker function (#10652)
  • Fix issues with reused blockers on subsequent navigations (#10656)
  • Updated dependencies:
    • @remix-run/router@1.7.1

Full Changelog: https://github.com/remix-run/react-router/compare/react-router@6.14.0...react-router@6.14.1

v6.14.0

What's Changed

JSON/Text Submissions

6.14.0 adds support for JSON and Text submissions via useSubmit/fetcher.submit since it's not always convenient to have to serialize into FormData if you're working in a client-side SPA. To opt-into these encodings you just need to specify the proper formEncType:

Opt-into application/json encoding:

function Component() {
  let navigation = useNavigation();
  let submit = useSubmit();
  submit({ key: "value" }, { method: "post", encType: "application/json" });
  // navigation.formEncType => "application/json"
  // navigation.json        => { key: "value" }
}

async function action({ request }) { // request.headers.get("Content-Type") => "application/json" // await request.json() => { key: "value" } }

Opt-into text/plain encoding:

function Component() {
  let navigation = useNavigation();
  let submit = useSubmit();
  submit("Text submission", { method: "post", encType: "text/plain" });
  // navigation.formEncType => "text/plain"
  // navigation.text        => "Text submission"
}

async function action({ request }) { // request.headers.get("Content-Type") => "text/plain" // await request.text() => "Text submission" } </tr></table>

... (truncated)

Changelog

Sourced from react-router's changelog.

6.14.1

Patch Changes

  • Fix loop in unstable_useBlocker when used with an unstable blocker function (#10652)
  • Fix issues with reused blockers on subsequent navigations (#10656)
  • Updated dependencies:
    • @remix-run/router@1.7.1

6.14.0

Patch Changes

  • Strip basename from locations provided to unstable_useBlocker functions to match useLocation (#10573)
  • Fix generatePath when passed a numeric 0 value parameter (#10612)
  • Fix unstable_useBlocker key issues in StrictMode (#10573)
  • Fix tsc --skipLibCheck:false issues on React 17 (#10622)
  • Upgrade typescript to 5.1 (#10581)
  • Updated dependencies:
    • @remix-run/router@1.7.0

6.13.0

Minor Changes

  • Move React.startTransition usage behind a future flag to avoid issues with existing incompatible Suspense usages. We recommend folks adopting this flag to be better compatible with React concurrent mode, but if you run into issues you can continue without the use of startTransition until v7. Issues usually boils down to creating net-new promises during the render cycle, so if you run into issues you should either lift your promise creation out of the render cycle or put it behind a useMemo. (#10596)

    Existing behavior will no longer include React.startTransition:

    <BrowserRouter>
      <Routes>{/*...*/}</Routes>
    </BrowserRouter>
    

    <RouterProvider router={router} />

    If you wish to enable React.startTransition, pass the future flag to your component:

    <BrowserRouter future={{ v7_startTransition: true }}>
      <Routes>{/*...*/}</Routes>
    </BrowserRouter>
    

    <RouterProvider router={router} future={{ v7_startTransition: true }}/>

Patch Changes

  • Work around webpack/terser React.startTransition minification bug in production mode (#10588)

... (truncated)

Commits
  • 8be5e51 chore: Update version for release (#10659)
  • 1f06a02 chore: Update version for release (pre) (#10658)
  • cbda9cf Fix issue with reused blockers on subsequent navigations (#10656)
  • 775bff9 chore: Update version for release (pre) (#10653)
  • 0ffa3dc Fix loop in unstable_useBlocker when used with an unstable blocker function (...
  • 09b6cbe chore: Update version for release (#10636)
  • 6cbd0b1 chore: Update version for release (pre) (#10628)
  • 19a71df fix FormData submitter check (#10627)
  • 8b95f2b chore: Update version for release (pre) (#10626)
  • 96e1fc1 Inline startTransitionImpl to avoid .d.ts issues with skipLibCheck:false (#10...
  • Additional commits viewable in compare view


Dependabot compatibility score

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 commands and options
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 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)
dependabot[bot] commented 1 year ago

Superseded by #142.