Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 12, 2025

Bumps react-router from 6.28.0 to 7.9.4.

Release notes

Sourced from react-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 from react-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 an admin route somewhere in your app and you want any child routes of admin to all have access to the loaderData and actionData from admin.

    // app/routes/admin.tsx
    import { Outlet } from "react-router";
    export const loader = () => ({ message: "Hello, loader!" });
    export const action = () => ({ count: 1 });
    export default function Component() {
    return (
    <div>
    {/* ... /}
    <Outlet />
    {/ ... */}
    </div>
    );
    }

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

    import { unstable_useRoute as useRoute } from "react-router";
    export function AdminWidget() {
    // 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:

    export function AdminWidget() {
      const admin = useRoute("routes/dmin");
      //                      ^^^^^^^^^^^
    }

    useRoute returns undefined 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)

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/react-router-7.9.4 branch from e850ce8 to 7bb014a Compare October 12, 2025 14:09
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/react-router-7.9.4 branch from 7bb014a to bb9761d Compare October 12, 2025 14:16
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/react-router-7.9.4 branch from bb9761d to a6ddcfc Compare October 12, 2025 14:28
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/react-router-7.9.4 branch from a6ddcfc to be1a044 Compare October 12, 2025 14:35
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/react-router-7.9.4 branch from be1a044 to 12fc9e8 Compare October 12, 2025 14:42
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/react-router-7.9.4 branch from 12fc9e8 to 3fb10d9 Compare October 12, 2025 14:49
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/react-router-7.9.4 branch from 3fb10d9 to 4e16c7b Compare October 12, 2025 14:57
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/react-router-7.9.4 branch from 4e16c7b to 819a184 Compare October 12, 2025 15:12
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/react-router-7.9.4 branch from 819a184 to 9dbedab Compare October 14, 2025 15:39
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/react-router-7.9.4 branch from 9dbedab to 7d1e41e Compare October 15, 2025 08:50
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/react-router-7.9.4 branch from 7d1e41e to 7c2222d Compare October 16, 2025 12:22
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/react-router-7.9.4 branch from 7c2222d to 4ee8558 Compare October 17, 2025 13:28
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/react-router-7.9.4 branch from 4ee8558 to 37a41d6 Compare October 19, 2025 14:09
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/react-router-7.9.4 branch from 37a41d6 to 2e4d5e4 Compare October 19, 2025 14:18
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/react-router-7.9.4 branch from 2e4d5e4 to 97b10d9 Compare October 19, 2025 14:30
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/react-router-7.9.4 branch from 97b10d9 to 65d5e93 Compare October 19, 2025 14:44
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/react-router-7.9.4 branch from 65d5e93 to 9fef104 Compare October 20, 2025 16:29
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/react-router-7.9.4 branch from 9fef104 to 195d019 Compare October 23, 2025 15:41
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/react-router-7.9.4 branch from 195d019 to 9abebd3 Compare October 26, 2025 15:08
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/react-router-7.9.4 branch from 9abebd3 to 6fa63be Compare October 26, 2025 15:21
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/react-router-7.9.4 branch from 6fa63be to 1ff24c8 Compare October 26, 2025 15:33
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/react-router-7.9.4 branch from 1ff24c8 to 42c5538 Compare October 26, 2025 15:48
Bumps [react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router) from 6.28.0 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/[email protected]/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] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/react-router-7.9.4 branch from 42c5538 to 1d60356 Compare October 26, 2025 16:01
@sonarqubecloud
Copy link

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 2, 2025

Superseded by #19741.

@dependabot dependabot bot closed this Nov 2, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/react-router-7.9.4 branch November 2, 2025 15:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants