Skip to content

chore(deps): bump the react-router group with 4 updates #510

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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 31, 2025

Bumps the react-router group with 4 updates: @react-router/node, react-router, @react-router/dev and @react-router/serve.

Updates @react-router/node from 7.1.5 to 7.4.1

Release notes

Sourced from @​react-router/node's releases.

v7.4.1

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

v7.4.0

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

v7.3.0

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

v7.2.0

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

Changelog

Sourced from @​react-router/node's changelog.

7.4.1

Patch Changes

7.4.0

Patch Changes

7.3.0

Patch Changes

7.2.0

Patch Changes

Commits

Updates react-router from 7.1.5 to 7.4.1

Release notes

Sourced from react-router's releases.

v7.4.1

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

v7.4.0

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

v7.3.0

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

v7.2.0

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

Changelog

Sourced from react-router's changelog.

7.4.1

Patch Changes

  • Fix types on unstable_MiddlewareFunction to avoid type errors when a middleware doesn't return a value (#13311)

  • Dedupe calls to route.lazy functions (#13260)

  • Add support for route.unstable_lazyMiddleware function to allow lazy loading of middleware logic. (#13210)

    Breaking change for unstable_middleware consumers

    The route.unstable_middleware property is no longer supported in the return value from route.lazy. If you want to lazily load middleware, you must use route.unstable_lazyMiddleware.

7.4.0

Patch Changes

  • Fix root loader data on initial load redirects in SPA mode (#13222)
  • Load ancestor pathless/index routes in lazy route discovery for upwards non-eager-discoery routing (#13203)
  • Fix shouldRevalidate behavior for clientLoader-only routes in ssr:true apps (#13221)
  • UNSTABLE: Fix RequestHandler loadContext parameter type when middleware is enabled (#13204)
  • UNSTABLE: Update Route.unstable_MiddlewareFunction to have a return value of Response | undefined instead of Response | void becaue you should not return anything if you aren't returning the Response (#13199)
  • UNSTABLE(BREAKING): If a middleware throws an error, ensure we only bubble the error itself via next() and are no longer leaking the MiddlewareError implementation detail (#13180)

7.3.0

Minor Changes

  • Add fetcherKey as a parameter to patchRoutesOnNavigation (#13061)

    • In framework mode, Lazy Route Discovery will now detect manifest version mismatches after a new deploy
    • On navigations to undiscovered routes, this mismatch will trigger a document reload of the destination path
    • On fetcher calls to undiscovered routes, this mismatch will trigger a document reload of the current path

Patch Changes

  • Skip resource route flow in dev server in SPA mode (#13113)

  • Support middleware on routes (unstable) (#12941)

    Middleware is implemented behind a future.unstable_middleware flag. To enable, you must enable the flag and the types in your react-router-config.ts file:

    import type { Config } from "@react-router/dev/config";
    import type { Future } from "react-router";
    declare module "react-router" {
    interface Future {
    unstable_middleware: true; // 👈 Enable middleware types
    }
    }

... (truncated)

Commits

Updates @react-router/dev from 7.1.5 to 7.4.1

Release notes

Sourced from @​react-router/dev's releases.

v7.4.1

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

v7.4.0

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

v7.3.0

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

v7.2.0

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

Changelog

Sourced from @​react-router/dev's changelog.

7.4.1

Patch Changes

  • Fix path in prerender error messages (#13257)
  • Fix typegen for virtual modules when moduleDetection is set to force (#13267)
  • When both future.unstable_middleware and future.unstable_splitRouteModules are enabled, split unstable_clientMiddleware route exports into separate chunks when possible (#13210)
  • Improve performance of future.unstable_middleware by ensuring that route modules are only blocking during the middleware phase when the unstable_clientMiddleware has been defined (#13210)
  • Updated dependencies:

7.4.0

Minor Changes

  • Generate types for virtual:react-router/server-build module (#13152)

Patch Changes

  • When future.unstable_splitRouteModules is set to "enforce", allow both splittable and unsplittable root route exports since it's always in a single chunk. (#13238)
  • When future.unstable_viteEnvironmentApi is enabled, allow plugins that override the default SSR environment (such as @cloudflare/vite-plugin) to be placed before or after the React Router plugin. (#13183)
  • Fix conflicts with other Vite plugins that use the configureServer and/or configurePreviewServer hooks (#13184)
  • Updated dependencies:

7.3.0

Patch Changes

  • Fix support for custom client build.rollupOptions.output.entryFileNames (#13098)

  • Fix usage of prerender option when serverBundles option has been configured or provided by a preset, e.g. vercelPreset from @vercel/react-router (#13082)

  • Fix support for custom build.assetsDir (#13077)

  • Remove unused dependencies (#13134)

  • Stub all routes except root in "SPA Mode" server builds to avoid issues when route modules or their dependencies import non-SSR-friendly modules (#13023)

  • Fix errors with future.unstable_viteEnvironmentApi when the ssr environment has been configured by another plugin to be a custom Vite.DevEnvironment rather than the default Vite.RunnableDevEnvironment (#13008)

  • Remove unused Vite file system watcher (#13133)

  • Fix support for custom SSR build input when serverBundles option has been configured (#13107)

    Note that for consumers using the future.unstable_viteEnvironmentApi and serverBundles options together, hyphens are no longer supported in server bundle IDs since they also need to be valid Vite environment names.

... (truncated)

Commits

Updates @react-router/serve from 7.1.5 to 7.4.1

Release notes

Sourced from @​react-router/serve's releases.

v7.4.1

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

v7.4.0

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

v7.3.0

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

v7.2.0

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

Changelog

Sourced from @​react-router/serve's changelog.

7.4.1

Patch Changes

7.4.0

Patch Changes

7.3.0

Patch Changes

7.2.0

Patch Changes

Commits

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 <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)
  • @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)
  • @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)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 31, 2025
Copy link

changeset-bot bot commented Mar 31, 2025

⚠️ No Changeset found

Latest commit: 6edb33f

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link

pkg-pr-new bot commented Mar 31, 2025

More templates

npm i https://pkg.pr.new/@mcansh/remix-fastify@510

commit: 6edb33f

Bumps the react-router group with 4 updates: [@react-router/node](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-node), [react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router), [@react-router/dev](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dev) and [@react-router/serve](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-serve).


Updates `@react-router/node` from 7.1.5 to 7.4.1
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-node/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/@react-router/[email protected]/packages/react-router-node)

Updates `react-router` from 7.1.5 to 7.4.1
- [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)

Updates `@react-router/dev` from 7.1.5 to 7.4.1
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dev/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/@react-router/[email protected]/packages/react-router-dev)

Updates `@react-router/serve` from 7.1.5 to 7.4.1
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-serve/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/@react-router/[email protected]/packages/react-router-serve)

---
updated-dependencies:
- dependency-name: "@react-router/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: react-router
- dependency-name: react-router
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: react-router
- dependency-name: "@react-router/dev"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: react-router
- dependency-name: "@react-router/serve"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: react-router
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/react-router-0e9431aee6 branch from e4d7fa4 to 6edb33f Compare April 1, 2025 00:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants