Skip to content

chore(deps): bump the tanstack group with 5 updates - #1385

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/tanstack-aa589e19d2
Open

chore(deps): bump the tanstack group with 5 updates#1385
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/tanstack-aa589e19d2

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 9, 2026

Copy link
Copy Markdown
Contributor

Bumps the tanstack group with 5 updates:

Package From To
@tanstack/react-router 1.170.18 1.170.20
@tanstack/react-router-devtools 1.167.0 1.167.1
@tanstack/router-cli 1.167.21 1.167.23
@tanstack/router-devtools 1.167.0 1.167.1
@tanstack/router-plugin 1.168.23 1.168.25

Updates @tanstack/react-router from 1.170.18 to 1.170.20

Release notes

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

@​tanstack/react-router@​1.170.20

Patch Changes

  • Updated dependencies [b2908c6]:
    • @​tanstack/router-core@​1.171.17
Changelog

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

1.170.20

Patch Changes

  • Updated dependencies [b2908c6]:
    • @​tanstack/router-core@​1.171.17

1.170.19

Patch Changes

  • #7805 45c4ad8 - Rewrite match loading around a lane-based scheduler that tracks each navigation, preload, and background reload as an ordered unit of work. This fixes pending/redirect/retry state leaking between overlapping navigations, restores correct SSR status codes for redirects, errors, and not-found responses, and closes hydration gaps where the client re-ran work the server had already completed.

    • Invalidation now retires matching active preloads so older speculative loader results cannot become fresh cache data after invalidation.
    • Route headers() now only runs on the server, matching the documented behavior — it is no longer invoked during client-side asset projection.
    • The documented default gcTime and preloadGcTime now match the existing runtime default of 5 minutes (300_000).

    Removed / changed exported internals

    • RouterState no longer includes loadedAt, isTransitioning, statusCode, or redirect. Use match.updatedAt in place of loadedAt; subscribe to router.state.status / router.state.isLoading in place of isTransitioning; server response status and redirect handling are now internal to the server loader and are no longer exposed on router.state.
    • RouteMatch.fetchCount has been removed, with no replacement — it was purely informational.
    • RouteMatch.status no longer includes 'redirected' (it remains 'pending' | 'success' | 'error' | 'notFound') — redirected matches are dropped from the match list instead of being rendered.
    • RouteMatch.globalNotFound has been renamed and privatized to the internal _notFound field. Use match.status === 'notFound' instead.
    • The exported React, Solid, and Vue Match components now accept routeId instead of matchId.
    • The exported RouterStores adapter contract now uses route-keyed presentation stores: matchesId is replaced by ids, matchStores by byRoute, and getRouteMatchStore() by getMatchStore(). The separate loadedAt, isLoading, isTransitioning, statusCode, and redirect stores have been removed, along with the pending/cache stores and their setters. StoreConfig.init has also been removed. Read application-facing state from router.state; preload and cache coordination are now internal.
    • Removed RouterCore members getMatch(), updateMatch(), cancelMatch(), and cancelMatches() — read matches from router.state.matches (e.g. router.state.matches.find((m) => m.id === id)); there is no replacement for mutating or cancelling an individual in-flight match from outside the router.
    • Removed RouterCore.hasNotFoundMatch() — use router.state.matches.some((m) => m.status === 'notFound').
    • Removed RouterCore.looseRoutesById — use routesById.
    • Removed RouterCore.isPrerendering(), RouterCore.isViewTransitionTypesSupported, and RouterCore.viewTransitionPromise, with no replacement.
    • Removed RouterCore.getParsedLocationHref() and RouterCore.clearExpiredCache(), with no replacement — expired cache entries are now reconciled automatically as part of match commit.
    • Removed RouterCore.latestLoadPromise and RouterCore.beforeLoad(), with no replacement.
    • RouterCore.commitLocationPromise and RouterCore.pendingBuiltLocation have been replaced by the internal _commitPromise and _pendingLocation fields.
    • Removed the exported GetMatchFn and UpdateMatchFn types, along with the methods they typed.
    • Removed the standalone getMatchedRoutes() export from @tanstack/router-core — use the router.getMatchedRoutes() instance method instead.
    • RouterCore.loadRouteChunk() no longer accepts an array of component types as its second argument. One-argument usage is unchanged; the optional second argument is now 'errorComponent', 'notFoundComponent', or false for internal boundary loading.
    • Removed Redirect.redirectHandled, which was internal redirect bookkeeping.
    • MatchRoutesOpts.preload and MatchRoutesOpts.dest have been removed.
    • StartTransitionFn is now (fn, expected) => Promise<boolean> (previously (fn) => void). This only affects custom framework adapters that implement startTransition.
  • Updated dependencies [45c4ad8]:

    • @​tanstack/router-core@​1.171.16
Commits

Updates @tanstack/react-router-devtools from 1.167.0 to 1.167.1

Release notes

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

@​tanstack/vue-router-devtools@​1.167.1

Patch Changes

  • Updated dependencies [45c4ad8]:
    • @​tanstack/router-core@​1.171.16
    • @​tanstack/vue-router@​1.170.18
    • @​tanstack/router-devtools-core@​1.168.1
Changelog

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

1.167.1

Patch Changes

  • Updated dependencies [45c4ad8]:
    • @​tanstack/router-core@​1.171.16
    • @​tanstack/react-router@​1.170.19
    • @​tanstack/router-devtools-core@​1.168.1
Commits

Updates @tanstack/router-cli from 1.167.21 to 1.167.23

Release notes

Sourced from @​tanstack/router-cli's releases.

@​tanstack/router-cli@​1.167.23

Patch Changes

  • Updated dependencies []:
    • @​tanstack/router-generator@​1.167.23
Changelog

Sourced from @​tanstack/router-cli's changelog.

1.167.23

Patch Changes

  • Updated dependencies []:
    • @​tanstack/router-generator@​1.167.23

1.167.22

Patch Changes

  • Updated dependencies []:
    • @​tanstack/router-generator@​1.167.22
Commits

Updates @tanstack/router-devtools from 1.167.0 to 1.167.1

Release notes

Sourced from @​tanstack/router-devtools's releases.

@​tanstack/vue-router-devtools@​1.167.1

Patch Changes

  • Updated dependencies [45c4ad8]:
    • @​tanstack/router-core@​1.171.16
    • @​tanstack/vue-router@​1.170.18
    • @​tanstack/router-devtools-core@​1.168.1
Changelog

Sourced from @​tanstack/router-devtools's changelog.

1.167.1

Patch Changes

  • Updated dependencies [45c4ad8]:
    • @​tanstack/react-router@​1.170.19
    • @​tanstack/react-router-devtools@​1.167.1
Commits

Updates @tanstack/router-plugin from 1.168.23 to 1.168.25

Release notes

Sourced from @​tanstack/router-plugin's releases.

@​tanstack/router-plugin@​1.168.25

Patch Changes

  • Updated dependencies [b2908c6]:
    • @​tanstack/router-core@​1.171.17
    • @​tanstack/react-router@​1.170.20
    • @​tanstack/router-generator@​1.167.23
Changelog

Sourced from @​tanstack/router-plugin's changelog.

1.168.25

Patch Changes

  • Updated dependencies [b2908c6]:
    • @​tanstack/router-core@​1.171.17
    • @​tanstack/react-router@​1.170.20
    • @​tanstack/router-generator@​1.167.23

1.168.24

Patch Changes

  • Updated dependencies [45c4ad8]:
    • @​tanstack/router-core@​1.171.16
    • @​tanstack/react-router@​1.170.19
    • @​tanstack/router-generator@​1.167.22
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 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

Bumps the tanstack group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [@tanstack/react-router](https://github.com/TanStack/router/tree/HEAD/packages/react-router) | `1.170.18` | `1.170.20` |
| [@tanstack/react-router-devtools](https://github.com/TanStack/router/tree/HEAD/packages/react-router-devtools) | `1.167.0` | `1.167.1` |
| [@tanstack/router-cli](https://github.com/TanStack/router/tree/HEAD/packages/router-cli) | `1.167.21` | `1.167.23` |
| [@tanstack/router-devtools](https://github.com/TanStack/router/tree/HEAD/packages/router-devtools) | `1.167.0` | `1.167.1` |
| [@tanstack/router-plugin](https://github.com/TanStack/router/tree/HEAD/packages/router-plugin) | `1.168.23` | `1.168.25` |


Updates `@tanstack/react-router` from 1.170.18 to 1.170.20
- [Release notes](https://github.com/TanStack/router/releases)
- [Changelog](https://github.com/TanStack/router/blob/main/packages/react-router/CHANGELOG.md)
- [Commits](https://github.com/TanStack/router/commits/@tanstack/react-router@1.170.20/packages/react-router)

Updates `@tanstack/react-router-devtools` from 1.167.0 to 1.167.1
- [Release notes](https://github.com/TanStack/router/releases)
- [Changelog](https://github.com/TanStack/router/blob/main/packages/react-router-devtools/CHANGELOG.md)
- [Commits](https://github.com/TanStack/router/commits/@tanstack/react-router-devtools@1.167.1/packages/react-router-devtools)

Updates `@tanstack/router-cli` from 1.167.21 to 1.167.23
- [Release notes](https://github.com/TanStack/router/releases)
- [Changelog](https://github.com/TanStack/router/blob/main/packages/router-cli/CHANGELOG.md)
- [Commits](https://github.com/TanStack/router/commits/@tanstack/router-cli@1.167.23/packages/router-cli)

Updates `@tanstack/router-devtools` from 1.167.0 to 1.167.1
- [Release notes](https://github.com/TanStack/router/releases)
- [Changelog](https://github.com/TanStack/router/blob/main/packages/router-devtools/CHANGELOG.md)
- [Commits](https://github.com/TanStack/router/commits/@tanstack/router-devtools@1.167.1/packages/router-devtools)

Updates `@tanstack/router-plugin` from 1.168.23 to 1.168.25
- [Release notes](https://github.com/TanStack/router/releases)
- [Changelog](https://github.com/TanStack/router/blob/main/packages/router-plugin/CHANGELOG.md)
- [Commits](https://github.com/TanStack/router/commits/@tanstack/router-plugin@1.168.25/packages/router-plugin)

---
updated-dependencies:
- dependency-name: "@tanstack/react-router"
  dependency-version: 1.170.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tanstack
- dependency-name: "@tanstack/react-router-devtools"
  dependency-version: 1.167.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tanstack
- dependency-name: "@tanstack/router-cli"
  dependency-version: 1.167.23
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tanstack
- dependency-name: "@tanstack/router-devtools"
  dependency-version: 1.167.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: tanstack
- dependency-name: "@tanstack/router-plugin"
  dependency-version: 1.168.25
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: tanstack
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 9, 2026
@vercel

vercel Bot commented Aug 9, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
web-test Ready Ready Preview Aug 9, 2026 8:35am

Request Review

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