Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Bump react-router from 5.3.4 to 7.9.4#13876

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Closed

Conversation

@dependabot
Copy link
Contributor

@dependabotdependabotbot commented on behalf ofgithubOct 16, 2025

Bumpsreact-router from 5.3.4 to 7.9.4.

Release notes

Sourced fromreact-router's releases.

v7.9.4

See the changelog for release notes:https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v794

v7.9.3

See the changelog for release notes:https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v793

v7.9.2

See the changelog for release notes:https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v792

v7.9.1

See the changelog for release notes:https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v791

v7.9.0

See the changelog for release notes:https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v790

v7.8.2

See the changelog for release notes:https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v782

v7.8.1

See the changelog for release notes:https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v781

v7.8.0

See the changelog for release notes:https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v780

v7.7.1

See the changelog for release notes:https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v771

v7.7.0

See the changelog for release notes:https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v770

v7.6.3

See the changelog for release notes:https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v763

v7.6.2

See the changelog for release notes:https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v762

v7.6.1

See the changelog for release notes:https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v761

v6.30.1

See the changelog for release notes:https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v6301

v7.6.0

See the changelog for release notes:https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v760

v7.5.3

See the changelog for release notes:https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v753

v7.5.2

See the changelog for release notes:https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v752

... (truncated)

Changelog

Sourced fromreact-router's changelog.

7.9.4

Patch Changes

  • handle external redirects in from server actions (#14400)

  • New (unstable)useRoute hook for accessing data from specific routes (#14407)

    For example, let's say you have anadmin route somewhere in your app and you want any child routes ofadmin to all have access to theloaderData andactionData fromadmin.

    // app/routes/admin.tsximport{Outlet}from"react-router";exportconstloader=()=>({message:"Hello, loader!"});exportconstaction=()=>({count:1});exportdefaultfunctionComponent(){return(<div>{/* ... /}<Outlet />{/ ... */}</div>);}

    You might even want to create a reusable widget that all of the routes nested underadmin could use:

    import{unstable_useRouteasuseRoute}from"react-router";exportfunctionAdminWidget(){// How to get message and count from admin route?}

    In framework mode,useRoute knows all your app's routes and gives you TS errors when invalid route IDs are passed in:

    exportfunctionAdminWidget(){constadmin=useRoute("routes/dmin");//                      ^^^^^^^^^^^}

    useRoute returnsundefined if the route is not part of the current page:

... (truncated)

Commits

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 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)

Bumps [react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router) from 5.3.4 to 7.9.4.- [Release notes](https://github.com/remix-run/react-router/releases)- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router/CHANGELOG.md)- [Commits](https://github.com/remix-run/react-router/commits/react-router@7.9.4/packages/react-router)---updated-dependencies:- dependency-name: react-router  dependency-version: 7.9.4  dependency-type: direct:production  update-type: version-update:semver-major...Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotbot added dependenciesPull requests that update a dependency file javascriptPull requests that update Javascript code labelsOct 16, 2025
@codecov
Copy link

codecovbot commentedOct 16, 2025
edited
Loading

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 98.14%. Comparing base (5455540) to head (90d628f).
⚠️ Report is 46 commits behind head on master.

Additional details and impacted files
@@           Coverage Diff           @@##           master   #13876   +/-   ##=======================================  Coverage   98.14%   98.14%           =======================================  Files         265      265             Lines       10636    10636             Branches     3260     3260           =======================================  Hits        10439    10439             Misses        184      184             Partials       13       13

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report?Share it here.

🚀 New features to boost your workflow:
  • ❄️Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@dependabot@github
Copy link
ContributorAuthor

dependabotbot commented on behalf ofgithubNov 6, 2025

Superseded by#13911.

@dependabotdependabotbot closed thisNov 6, 2025
@dependabotdependabotbot deleted the dependabot/npm_and_yarn/react-router-7.9.4 branchNovember 6, 2025 06:12
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment

Reviewers

No reviews

Assignees

No one assigned

Labels

dependenciesPull requests that update a dependency filejavascriptPull requests that update Javascript code

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

1 participant


[8]ページ先頭

©2009-2025 Movatter.jp