From f6be2df0661f2bd9c435b88a9e77b08c662cc1a4 Mon Sep 17 00:00:00 2001 From: Christopher Horobin Date: Wed, 7 May 2025 01:31:10 +0200 Subject: [PATCH 1/2] perf: improve ts perf for Route.Link (#4104) --- packages/react-router/src/link.tsx | 15 +++++++++++++++ packages/react-router/src/route.tsx | 17 ++++++++--------- packages/react-router/tests/routeApi.test-d.tsx | 5 +++-- packages/solid-router/src/link.tsx | 15 +++++++++++++++ packages/solid-router/src/route.tsx | 12 ++++++------ packages/solid-router/tests/routeApi.test-d.tsx | 4 ++-- 6 files changed, 49 insertions(+), 19 deletions(-) diff --git a/packages/react-router/src/link.tsx b/packages/react-router/src/link.tsx index 56fba11d386..d0bbbdd8199 100644 --- a/packages/react-router/src/link.tsx +++ b/packages/react-router/src/link.tsx @@ -465,6 +465,21 @@ export type LinkComponent< props: LinkComponentProps, ) => React.ReactElement +export type LinkComponentRoute = < + TRouter extends AnyRouter = RegisteredRouter, + const TTo extends string | undefined = undefined, + const TMaskTo extends string = '', +>( + props: LinkComponentProps< + 'a', + TRouter, + TDefaultFrom, + TTo, + TDefaultFrom, + TMaskTo + >, +) => React.ReactElement + export function createLink( Comp: Constrain ReactNode>, ): LinkComponent { diff --git a/packages/react-router/src/route.tsx b/packages/react-router/src/route.tsx index 105341feb22..928116dba03 100644 --- a/packages/react-router/src/route.tsx +++ b/packages/react-router/src/route.tsx @@ -42,7 +42,7 @@ import type { UseLoaderDepsRoute } from './useLoaderDeps' import type { UseParamsRoute } from './useParams' import type { UseSearchRoute } from './useSearch' import type { UseRouteContextRoute } from './useRouteContext' -import type { LinkComponent } from './link' +import type { LinkComponentRoute } from './link' declare module '@tanstack/router-core' { export interface UpdatableRouteOptionsExtensions { @@ -63,7 +63,7 @@ declare module '@tanstack/router-core' { useLoaderDeps: UseLoaderDepsRoute useLoaderData: UseLoaderDataRoute useNavigate: () => UseNavigateResult - Link: LinkComponent<'a', TFullPath> + Link: LinkComponentRoute } } @@ -137,13 +137,12 @@ export class RouteApi< return notFound({ routeId: this.id as string, ...opts }) } - Link: LinkComponent<'a', RouteTypesById['fullPath']> = + Link: LinkComponentRoute['fullPath']> = React.forwardRef((props, ref: React.ForwardedRef) => { const router = useRouter() const fullPath = router.routesById[this.id as string].fullPath return - }) as unknown as LinkComponent< - 'a', + }) as unknown as LinkComponentRoute< RouteTypesById['fullPath'] > } @@ -255,11 +254,11 @@ export class Route< return useNavigate({ from: this.fullPath }) } - Link: LinkComponent<'a', TFullPath> = React.forwardRef( + Link: LinkComponentRoute = React.forwardRef( (props, ref: React.ForwardedRef) => { return }, - ) as unknown as LinkComponent<'a', TFullPath> + ) as unknown as LinkComponentRoute } export function createRoute< @@ -446,11 +445,11 @@ export class RootRoute< return useNavigate({ from: this.fullPath }) } - Link: LinkComponent<'a', '/'> = React.forwardRef( + Link: LinkComponentRoute<'/'> = React.forwardRef( (props, ref: React.ForwardedRef) => { return }, - ) as unknown as LinkComponent<'a', '/'> + ) as unknown as LinkComponentRoute<'/'> } export function createRootRoute< diff --git a/packages/react-router/tests/routeApi.test-d.tsx b/packages/react-router/tests/routeApi.test-d.tsx index de7ff81ca36..a51a50b10ff 100644 --- a/packages/react-router/tests/routeApi.test-d.tsx +++ b/packages/react-router/tests/routeApi.test-d.tsx @@ -1,6 +1,7 @@ import { describe, expectTypeOf, test } from 'vitest' import { createRootRoute, createRoute, createRouter, getRouteApi } from '../src' -import type { LinkComponent, MakeRouteMatch, UseNavigateResult } from '../src' +import type { MakeRouteMatch, UseNavigateResult } from '../src' +import type { LinkComponentRoute } from '../src/link' const rootRoute = createRootRoute() @@ -90,7 +91,7 @@ describe('getRouteApi', () => { test('Link', () => { const Link = invoiceRouteApi.Link expectTypeOf(Link).toEqualTypeOf< - LinkComponent<'a', '/invoices/$invoiceId'> + LinkComponentRoute<'/invoices/$invoiceId'> >() }) }) diff --git a/packages/solid-router/src/link.tsx b/packages/solid-router/src/link.tsx index bc9e3f23030..c4f406d915a 100644 --- a/packages/solid-router/src/link.tsx +++ b/packages/solid-router/src/link.tsx @@ -522,6 +522,21 @@ export type LinkComponent< props: LinkComponentProps, ) => Solid.JSX.Element +export type LinkComponentRoute = < + TRouter extends AnyRouter = RegisteredRouter, + const TTo extends string | undefined = undefined, + const TMaskTo extends string = '', +>( + props: LinkComponentProps< + 'a', + TRouter, + TDefaultFrom, + TTo, + TDefaultFrom, + TMaskTo + >, +) => Solid.JSX.Element + export function createLink( Comp: Constrain Solid.JSX.Element>, ): LinkComponent { diff --git a/packages/solid-router/src/route.tsx b/packages/solid-router/src/route.tsx index 2d89232acc2..c14f0615872 100644 --- a/packages/solid-router/src/route.tsx +++ b/packages/solid-router/src/route.tsx @@ -42,7 +42,7 @@ import type { UseParamsRoute } from './useParams' import type { UseSearchRoute } from './useSearch' import type * as Solid from 'solid-js' import type { UseRouteContextRoute } from './useRouteContext' -import type { LinkComponent } from './link' +import type { LinkComponentRoute } from './link' declare module '@tanstack/router-core' { export interface UpdatableRouteOptionsExtensions { @@ -63,7 +63,7 @@ declare module '@tanstack/router-core' { useLoaderDeps: UseLoaderDepsRoute useLoaderData: UseLoaderDataRoute useNavigate: () => UseNavigateResult - Link: LinkComponent<'a', TFullPath> + Link: LinkComponentRoute } } @@ -132,7 +132,7 @@ export class RouteApi< return notFound({ routeId: this.id as string, ...opts }) } - Link: LinkComponent<'a', RouteTypesById['fullPath']> = ( + Link: LinkComponentRoute['fullPath']> = ( props, ) => { const router = useRouter() @@ -242,7 +242,7 @@ export class Route< return useNavigate({ from: this.fullPath }) } - Link: LinkComponent<'a', TFullPath> = (props) => { + Link: LinkComponentRoute = (props) => { return } } @@ -427,8 +427,8 @@ export class RootRoute< return useNavigate({ from: this.fullPath }) } - Link: LinkComponent<'a', '/'> = (props) => { - return + Link: LinkComponentRoute<'/'> = (props) => { + return } } diff --git a/packages/solid-router/tests/routeApi.test-d.tsx b/packages/solid-router/tests/routeApi.test-d.tsx index 805eec55658..a06c99708f7 100644 --- a/packages/solid-router/tests/routeApi.test-d.tsx +++ b/packages/solid-router/tests/routeApi.test-d.tsx @@ -1,8 +1,8 @@ import { describe, expectTypeOf, test } from 'vitest' import { createRootRoute, createRoute, createRouter, getRouteApi } from '../src' -import type { LinkComponent } from '../src' import type { Accessor } from 'solid-js' import type { MakeRouteMatch, UseNavigateResult } from '@tanstack/router-core' +import type { LinkComponentRoute } from '../src/link' const rootRoute = createRootRoute() @@ -100,7 +100,7 @@ describe('getRouteApi', () => { test('Link', () => { const Link = invoiceRouteApi.Link expectTypeOf(Link).toEqualTypeOf< - LinkComponent<'a', '/invoices/$invoiceId'> + LinkComponentRoute<'/invoices/$invoiceId'> >() }) }) From 163aaa33f242163ab19b3867dba18970fe3a4670 Mon Sep 17 00:00:00 2001 From: Tanner Linsley Date: Tue, 6 May 2025 23:32:39 +0000 Subject: [PATCH 2/2] release: v1.120.2 --- .../package.json | 6 +++--- .../react/authenticated-routes/package.json | 6 +++--- .../basic-default-search-params/package.json | 4 ++-- .../react/basic-devtools-panel/package.json | 4 ++-- examples/react/basic-file-based/package.json | 6 +++--- .../basic-non-nested-devtools/package.json | 4 ++-- .../basic-react-query-file-based/package.json | 6 +++--- examples/react/basic-react-query/package.json | 4 ++-- .../react/basic-ssr-file-based/package.json | 8 ++++---- .../package.json | 8 ++++---- .../basic-virtual-file-based/package.json | 6 +++--- .../package.json | 6 +++--- examples/react/basic/package.json | 4 ++-- examples/react/deferred-data/package.json | 4 ++-- .../kitchen-sink-file-based/package.json | 6 +++--- .../package.json | 6 +++--- .../kitchen-sink-react-query/package.json | 4 ++-- examples/react/kitchen-sink/package.json | 4 ++-- examples/react/large-file-based/package.json | 6 +++--- examples/react/location-masking/package.json | 4 ++-- .../react/navigation-blocking/package.json | 4 ++-- .../package.json | 6 +++--- .../react/quickstart-file-based/package.json | 6 +++--- .../quickstart-rspack-file-based/package.json | 6 +++--- .../package.json | 6 +++--- examples/react/quickstart/package.json | 4 ++-- .../router-monorepo-react-query/package.json | 6 +++--- .../packages/app/package.json | 2 +- .../packages/router/package.json | 4 ++-- .../router-monorepo-simple-lazy/package.json | 6 +++--- .../packages/app/package.json | 2 +- .../packages/router/package.json | 4 ++-- .../react/router-monorepo-simple/package.json | 6 +++--- .../packages/app/package.json | 2 +- .../packages/router/package.json | 4 ++-- .../react/scroll-restoration/package.json | 4 ++-- .../search-validator-adapters/package.json | 12 +++++------ examples/react/start-bare/package.json | 6 +++--- examples/react/start-basic-auth/package.json | 6 +++--- .../start-basic-react-query/package.json | 8 ++++---- examples/react/start-basic-rsc/package.json | 6 +++--- .../react/start-basic-static/package.json | 6 +++--- examples/react/start-basic/package.json | 6 +++--- examples/react/start-clerk-basic/package.json | 6 +++--- .../react/start-convex-trellaux/package.json | 8 ++++---- examples/react/start-counter/package.json | 6 +++--- examples/react/start-large/package.json | 6 +++--- examples/react/start-material-ui/package.json | 6 +++--- .../react/start-supabase-basic/package.json | 6 +++--- examples/react/start-trellaux/package.json | 8 ++++---- examples/react/start-workos/package.json | 6 +++--- examples/react/view-transitions/package.json | 6 +++--- .../react/with-framer-motion/package.json | 4 ++-- .../react/with-trpc-react-query/package.json | 8 ++++---- examples/react/with-trpc/package.json | 8 ++++---- .../solid/basic-devtools-panel/package.json | 4 ++-- examples/solid/basic-file-based/package.json | 6 +++--- .../basic-non-nested-devtools/package.json | 4 ++-- .../basic-solid-query-file-based/package.json | 6 +++--- examples/solid/basic-solid-query/package.json | 6 +++--- examples/solid/basic/package.json | 4 ++-- .../kitchen-sink-file-based/package.json | 6 +++--- .../solid/quickstart-file-based/package.json | 6 +++--- examples/solid/start-bare/package.json | 6 +++--- examples/solid/start-basic/package.json | 6 +++--- packages/arktype-adapter/package.json | 2 +- packages/react-router-devtools/package.json | 2 +- packages/react-router-with-query/package.json | 2 +- packages/react-router/package.json | 2 +- packages/react-start-client/package.json | 2 +- packages/react-start-config/package.json | 2 +- packages/react-start-server/package.json | 2 +- packages/react-start/package.json | 2 +- packages/router-cli/package.json | 2 +- packages/router-devtools/package.json | 2 +- packages/router-generator/package.json | 2 +- packages/router-plugin/package.json | 2 +- packages/router-vite-plugin/package.json | 2 +- packages/solid-router-devtools/package.json | 2 +- packages/solid-router/package.json | 2 +- packages/solid-start-client/package.json | 2 +- packages/solid-start-config/package.json | 2 +- packages/solid-start-server/package.json | 2 +- packages/solid-start/package.json | 2 +- packages/start-config/package.json | 2 +- packages/start/package.json | 2 +- packages/valibot-adapter/package.json | 2 +- packages/zod-adapter/package.json | 2 +- pnpm-lock.yaml | 20 +++++++++---------- 89 files changed, 213 insertions(+), 213 deletions(-) diff --git a/examples/react/authenticated-routes-firebase/package.json b/examples/react/authenticated-routes-firebase/package.json index 1b1656e02bb..472021a1cdd 100644 --- a/examples/react/authenticated-routes-firebase/package.json +++ b/examples/react/authenticated-routes-firebase/package.json @@ -9,9 +9,9 @@ "start": "vite" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/router-plugin": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/router-plugin": "^1.120.2", "autoprefixer": "^10.4.20", "firebase": "^11.4.0", "postcss": "^8.5.1", diff --git a/examples/react/authenticated-routes/package.json b/examples/react/authenticated-routes/package.json index a362c7392c6..154491ec019 100644 --- a/examples/react/authenticated-routes/package.json +++ b/examples/react/authenticated-routes/package.json @@ -9,9 +9,9 @@ "start": "vite" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/router-plugin": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/router-plugin": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "redaxios": "^0.5.1", diff --git a/examples/react/basic-default-search-params/package.json b/examples/react/basic-default-search-params/package.json index 4791165d3ec..f06b7c96d27 100644 --- a/examples/react/basic-default-search-params/package.json +++ b/examples/react/basic-default-search-params/package.json @@ -10,8 +10,8 @@ }, "dependencies": { "@tanstack/react-query": "^5.66.0", - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "redaxios": "^0.5.1", diff --git a/examples/react/basic-devtools-panel/package.json b/examples/react/basic-devtools-panel/package.json index dbc05652aea..e6f048351a2 100644 --- a/examples/react/basic-devtools-panel/package.json +++ b/examples/react/basic-devtools-panel/package.json @@ -9,8 +9,8 @@ "start": "vite" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", "@tanstack/react-query-devtools": "^5.67.2", "react": "^19.0.0", "react-dom": "^19.0.0", diff --git a/examples/react/basic-file-based/package.json b/examples/react/basic-file-based/package.json index eeddd1e362f..067552462c4 100644 --- a/examples/react/basic-file-based/package.json +++ b/examples/react/basic-file-based/package.json @@ -9,9 +9,9 @@ "start": "vite" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/router-plugin": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/router-plugin": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "redaxios": "^0.5.1", diff --git a/examples/react/basic-non-nested-devtools/package.json b/examples/react/basic-non-nested-devtools/package.json index 8eb42da02d9..c76ab2d1a7f 100644 --- a/examples/react/basic-non-nested-devtools/package.json +++ b/examples/react/basic-non-nested-devtools/package.json @@ -9,8 +9,8 @@ "start": "vite" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "redaxios": "^0.5.1", diff --git a/examples/react/basic-react-query-file-based/package.json b/examples/react/basic-react-query-file-based/package.json index a817b29e205..d7652fc5170 100644 --- a/examples/react/basic-react-query-file-based/package.json +++ b/examples/react/basic-react-query-file-based/package.json @@ -11,9 +11,9 @@ "dependencies": { "@tanstack/react-query": "^5.66.0", "@tanstack/react-query-devtools": "^5.66.0", - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/router-plugin": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/router-plugin": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "redaxios": "^0.5.1", diff --git a/examples/react/basic-react-query/package.json b/examples/react/basic-react-query/package.json index 193a7d0ffd8..b6045efc824 100644 --- a/examples/react/basic-react-query/package.json +++ b/examples/react/basic-react-query/package.json @@ -11,8 +11,8 @@ "dependencies": { "@tanstack/react-query": "^5.66.0", "@tanstack/react-query-devtools": "^5.66.0", - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "redaxios": "^0.5.1", diff --git a/examples/react/basic-ssr-file-based/package.json b/examples/react/basic-ssr-file-based/package.json index a08fae1ce20..895c02e1446 100644 --- a/examples/react/basic-ssr-file-based/package.json +++ b/examples/react/basic-ssr-file-based/package.json @@ -11,10 +11,10 @@ "debug": "node --inspect-brk server" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/router-plugin": "^1.120.1", - "@tanstack/react-start": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/router-plugin": "^1.120.2", + "@tanstack/react-start": "^1.120.2", "get-port": "^7.1.0", "react": "^19.0.0", "react-dom": "^19.0.0", diff --git a/examples/react/basic-ssr-streaming-file-based/package.json b/examples/react/basic-ssr-streaming-file-based/package.json index 2f1a96a1744..deabceaec21 100644 --- a/examples/react/basic-ssr-streaming-file-based/package.json +++ b/examples/react/basic-ssr-streaming-file-based/package.json @@ -11,10 +11,10 @@ "debug": "node --inspect-brk server" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/router-plugin": "^1.120.1", - "@tanstack/react-start": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/router-plugin": "^1.120.2", + "@tanstack/react-start": "^1.120.2", "get-port": "^7.1.0", "react": "^19.0.0", "react-dom": "^19.0.0", diff --git a/examples/react/basic-virtual-file-based/package.json b/examples/react/basic-virtual-file-based/package.json index 4084fe57c6c..8c6b575e905 100644 --- a/examples/react/basic-virtual-file-based/package.json +++ b/examples/react/basic-virtual-file-based/package.json @@ -9,9 +9,9 @@ "start": "vite" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/router-plugin": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/router-plugin": "^1.120.2", "@tanstack/virtual-file-routes": "^1.115.0", "react": "^19.0.0", "react-dom": "^19.0.0", diff --git a/examples/react/basic-virtual-inside-file-based/package.json b/examples/react/basic-virtual-inside-file-based/package.json index 5eab54dae88..837b9c3196b 100644 --- a/examples/react/basic-virtual-inside-file-based/package.json +++ b/examples/react/basic-virtual-inside-file-based/package.json @@ -9,9 +9,9 @@ "start": "vite" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/router-plugin": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/router-plugin": "^1.120.2", "@tanstack/virtual-file-routes": "^1.115.0", "react": "^19.0.0", "react-dom": "^19.0.0", diff --git a/examples/react/basic/package.json b/examples/react/basic/package.json index 3ac260c81a5..5b200394f41 100644 --- a/examples/react/basic/package.json +++ b/examples/react/basic/package.json @@ -9,8 +9,8 @@ "start": "vite" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "redaxios": "^0.5.1", diff --git a/examples/react/deferred-data/package.json b/examples/react/deferred-data/package.json index 67126a51817..9b08e2135da 100644 --- a/examples/react/deferred-data/package.json +++ b/examples/react/deferred-data/package.json @@ -9,8 +9,8 @@ "start": "vite" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "redaxios": "^0.5.1", diff --git a/examples/react/kitchen-sink-file-based/package.json b/examples/react/kitchen-sink-file-based/package.json index 574057946b5..1cabac07bc9 100644 --- a/examples/react/kitchen-sink-file-based/package.json +++ b/examples/react/kitchen-sink-file-based/package.json @@ -9,9 +9,9 @@ "start": "vite" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/router-plugin": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/router-plugin": "^1.120.2", "immer": "^10.1.1", "react": "^19.0.0", "react-dom": "^19.0.0", diff --git a/examples/react/kitchen-sink-react-query-file-based/package.json b/examples/react/kitchen-sink-react-query-file-based/package.json index e55d3e99dbc..ec9730cdf57 100644 --- a/examples/react/kitchen-sink-react-query-file-based/package.json +++ b/examples/react/kitchen-sink-react-query-file-based/package.json @@ -11,9 +11,9 @@ "dependencies": { "@tanstack/react-query": "^5.66.0", "@tanstack/react-query-devtools": "^5.66.0", - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/router-plugin": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/router-plugin": "^1.120.2", "immer": "^10.1.1", "react": "^19.0.0", "react-dom": "^19.0.0", diff --git a/examples/react/kitchen-sink-react-query/package.json b/examples/react/kitchen-sink-react-query/package.json index 235b8bd571e..95fc5ef2b4f 100644 --- a/examples/react/kitchen-sink-react-query/package.json +++ b/examples/react/kitchen-sink-react-query/package.json @@ -11,8 +11,8 @@ "dependencies": { "@tanstack/react-query": "^5.66.0", "@tanstack/react-query-devtools": "^5.66.0", - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", "immer": "^10.1.1", "react": "^19.0.0", "react-dom": "^19.0.0", diff --git a/examples/react/kitchen-sink/package.json b/examples/react/kitchen-sink/package.json index 275d52ad2c6..2c153fa88e1 100644 --- a/examples/react/kitchen-sink/package.json +++ b/examples/react/kitchen-sink/package.json @@ -9,8 +9,8 @@ "start": "vite" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", "immer": "^10.1.1", "react": "^19.0.0", "react-dom": "^19.0.0", diff --git a/examples/react/large-file-based/package.json b/examples/react/large-file-based/package.json index 67aab63b142..aa1cdb397fc 100644 --- a/examples/react/large-file-based/package.json +++ b/examples/react/large-file-based/package.json @@ -12,9 +12,9 @@ }, "dependencies": { "@tanstack/react-query": "^5.66.0", - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/router-plugin": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/router-plugin": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "redaxios": "^0.5.1", diff --git a/examples/react/location-masking/package.json b/examples/react/location-masking/package.json index 43df52d6eac..2bedd0a2f58 100644 --- a/examples/react/location-masking/package.json +++ b/examples/react/location-masking/package.json @@ -11,8 +11,8 @@ "dependencies": { "@radix-ui/react-dialog": "^1.1.6", "@tanstack/react-query": "^5.66.0", - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "redaxios": "^0.5.1", diff --git a/examples/react/navigation-blocking/package.json b/examples/react/navigation-blocking/package.json index 5491f8b5797..b86ed9aea5e 100644 --- a/examples/react/navigation-blocking/package.json +++ b/examples/react/navigation-blocking/package.json @@ -10,8 +10,8 @@ }, "dependencies": { "@tanstack/react-query": "^5.66.0", - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "redaxios": "^0.5.1", diff --git a/examples/react/quickstart-esbuild-file-based/package.json b/examples/react/quickstart-esbuild-file-based/package.json index 824156e00cf..6c2b04a845a 100644 --- a/examples/react/quickstart-esbuild-file-based/package.json +++ b/examples/react/quickstart-esbuild-file-based/package.json @@ -9,9 +9,9 @@ "start": "dev" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/router-plugin": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/router-plugin": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "redaxios": "^0.5.1", diff --git a/examples/react/quickstart-file-based/package.json b/examples/react/quickstart-file-based/package.json index cb048b2ee3a..b86cc2eb86d 100644 --- a/examples/react/quickstart-file-based/package.json +++ b/examples/react/quickstart-file-based/package.json @@ -9,9 +9,9 @@ "start": "vite" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/router-plugin": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/router-plugin": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "redaxios": "^0.5.1", diff --git a/examples/react/quickstart-rspack-file-based/package.json b/examples/react/quickstart-rspack-file-based/package.json index bea1276e5ba..bd10fd4e50d 100644 --- a/examples/react/quickstart-rspack-file-based/package.json +++ b/examples/react/quickstart-rspack-file-based/package.json @@ -8,8 +8,8 @@ "preview": "rsbuild preview" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "postcss": "^8.5.1", @@ -19,7 +19,7 @@ "devDependencies": { "@rsbuild/core": "1.2.4", "@rsbuild/plugin-react": "1.1.0", - "@tanstack/router-plugin": "^1.120.1", + "@tanstack/router-plugin": "^1.120.2", "@types/react": "^19.0.8", "@types/react-dom": "^19.0.3", "typescript": "^5.6.2" diff --git a/examples/react/quickstart-webpack-file-based/package.json b/examples/react/quickstart-webpack-file-based/package.json index 4d8c37c3333..7b4a6bdac04 100644 --- a/examples/react/quickstart-webpack-file-based/package.json +++ b/examples/react/quickstart-webpack-file-based/package.json @@ -7,14 +7,14 @@ "build": "webpack build && tsc --noEmit" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0" }, "devDependencies": { "@swc/core": "^1.10.15", - "@tanstack/router-plugin": "^1.120.1", + "@tanstack/router-plugin": "^1.120.2", "@types/react": "^19.0.8", "@types/react-dom": "^19.0.3", "html-webpack-plugin": "^5.6.3", diff --git a/examples/react/quickstart/package.json b/examples/react/quickstart/package.json index 13545b007d4..d01f56e55be 100644 --- a/examples/react/quickstart/package.json +++ b/examples/react/quickstart/package.json @@ -9,8 +9,8 @@ "start": "vite" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "postcss": "^8.5.1", diff --git a/examples/react/router-monorepo-react-query/package.json b/examples/react/router-monorepo-react-query/package.json index 3d470f49cee..f358faa9e8c 100644 --- a/examples/react/router-monorepo-react-query/package.json +++ b/examples/react/router-monorepo-react-query/package.json @@ -12,9 +12,9 @@ "dependencies": { "@tanstack/react-query": "^5.66.0", "@tanstack/react-query-devtools": "^5.66.0", - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/router-plugin": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/router-plugin": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "redaxios": "^0.5.1" diff --git a/examples/react/router-monorepo-react-query/packages/app/package.json b/examples/react/router-monorepo-react-query/packages/app/package.json index 455096e1e94..e419684ab3f 100644 --- a/examples/react/router-monorepo-react-query/packages/app/package.json +++ b/examples/react/router-monorepo-react-query/packages/app/package.json @@ -20,7 +20,7 @@ "@types/react-dom": "^19.0.3", "@vitejs/plugin-react": "^4.3.4", "typescript": "^5.7.2", - "@tanstack/react-router-devtools": "^1.120.1", + "@tanstack/react-router-devtools": "^1.120.2", "postcss": "^8.5.1", "autoprefixer": "^10.4.20", "tailwindcss": "^3.4.17", diff --git a/examples/react/router-monorepo-react-query/packages/router/package.json b/examples/react/router-monorepo-react-query/packages/router/package.json index 37a043e0e3b..b09321bb5bf 100644 --- a/examples/react/router-monorepo-react-query/packages/router/package.json +++ b/examples/react/router-monorepo-react-query/packages/router/package.json @@ -10,8 +10,8 @@ "dependencies": { "@tanstack/history": "^1.115.0", "@tanstack/react-query": "^5.66.0", - "@tanstack/react-router": "^1.120.1", - "@tanstack/router-plugin": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/router-plugin": "^1.120.2", "@router-mono-react-query/post-query": "workspace:*", "redaxios": "^0.5.1", "zod": "^3.24.2", diff --git a/examples/react/router-monorepo-simple-lazy/package.json b/examples/react/router-monorepo-simple-lazy/package.json index 74de10881c1..31893c4d9b3 100644 --- a/examples/react/router-monorepo-simple-lazy/package.json +++ b/examples/react/router-monorepo-simple-lazy/package.json @@ -8,9 +8,9 @@ "dev": "pnpm router build && pnpm post-feature build && pnpm app dev" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/router-plugin": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/router-plugin": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "redaxios": "^0.5.1" diff --git a/examples/react/router-monorepo-simple-lazy/packages/app/package.json b/examples/react/router-monorepo-simple-lazy/packages/app/package.json index cc21f20a6b9..e7559e53f91 100644 --- a/examples/react/router-monorepo-simple-lazy/packages/app/package.json +++ b/examples/react/router-monorepo-simple-lazy/packages/app/package.json @@ -19,7 +19,7 @@ "@types/react-dom": "^19.0.3", "@vitejs/plugin-react": "^4.3.4", "typescript": "^5.7.2", - "@tanstack/react-router-devtools": "^1.120.1", + "@tanstack/react-router-devtools": "^1.120.2", "postcss": "^8.5.1", "autoprefixer": "^10.4.20", "tailwindcss": "^3.4.17", diff --git a/examples/react/router-monorepo-simple-lazy/packages/router/package.json b/examples/react/router-monorepo-simple-lazy/packages/router/package.json index d84f71d43dd..04c00fb3921 100644 --- a/examples/react/router-monorepo-simple-lazy/packages/router/package.json +++ b/examples/react/router-monorepo-simple-lazy/packages/router/package.json @@ -9,8 +9,8 @@ "types": "./dist/index.d.ts", "dependencies": { "@tanstack/history": "^1.115.0", - "@tanstack/react-router": "^1.120.1", - "@tanstack/router-plugin": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/router-plugin": "^1.120.2", "redaxios": "^0.5.1", "zod": "^3.24.2", "react": "^19.0.0", diff --git a/examples/react/router-monorepo-simple/package.json b/examples/react/router-monorepo-simple/package.json index 37918933986..9a141250a9b 100644 --- a/examples/react/router-monorepo-simple/package.json +++ b/examples/react/router-monorepo-simple/package.json @@ -8,9 +8,9 @@ "dev": "pnpm router build && pnpm post-feature build && pnpm app dev" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/router-plugin": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/router-plugin": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "redaxios": "^0.5.1" diff --git a/examples/react/router-monorepo-simple/packages/app/package.json b/examples/react/router-monorepo-simple/packages/app/package.json index 844d312ab5a..d7b16afe2e8 100644 --- a/examples/react/router-monorepo-simple/packages/app/package.json +++ b/examples/react/router-monorepo-simple/packages/app/package.json @@ -19,7 +19,7 @@ "@types/react-dom": "^19.0.3", "@vitejs/plugin-react": "^4.3.4", "typescript": "^5.7.2", - "@tanstack/react-router-devtools": "^1.120.1", + "@tanstack/react-router-devtools": "^1.120.2", "vite": "^6.1.0", "postcss": "^8.5.1", "autoprefixer": "^10.4.20", diff --git a/examples/react/router-monorepo-simple/packages/router/package.json b/examples/react/router-monorepo-simple/packages/router/package.json index a5c0d0ead6f..3001c2905f9 100644 --- a/examples/react/router-monorepo-simple/packages/router/package.json +++ b/examples/react/router-monorepo-simple/packages/router/package.json @@ -9,8 +9,8 @@ "types": "./dist/index.d.ts", "dependencies": { "@tanstack/history": "^1.115.0", - "@tanstack/react-router": "^1.120.1", - "@tanstack/router-plugin": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/router-plugin": "^1.120.2", "redaxios": "^0.5.1", "zod": "^3.24.2", "react": "^19.0.0", diff --git a/examples/react/scroll-restoration/package.json b/examples/react/scroll-restoration/package.json index c89284b7945..8cb4ce449fd 100644 --- a/examples/react/scroll-restoration/package.json +++ b/examples/react/scroll-restoration/package.json @@ -9,9 +9,9 @@ "start": "vite" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", + "@tanstack/react-router": "^1.120.2", "@tanstack/react-virtual": "^3.13.0", - "@tanstack/react-router-devtools": "^1.120.1", + "@tanstack/react-router-devtools": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "postcss": "^8.5.1", diff --git a/examples/react/search-validator-adapters/package.json b/examples/react/search-validator-adapters/package.json index b33a32e22fd..1f1c7b30a06 100644 --- a/examples/react/search-validator-adapters/package.json +++ b/examples/react/search-validator-adapters/package.json @@ -10,13 +10,13 @@ "test:unit": "vitest" }, "dependencies": { - "@tanstack/arktype-adapter": "^1.120.1", + "@tanstack/arktype-adapter": "^1.120.2", "@tanstack/react-query": "^5.66.0", - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/router-plugin": "^1.120.1", - "@tanstack/valibot-adapter": "^1.120.1", - "@tanstack/zod-adapter": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/router-plugin": "^1.120.2", + "@tanstack/valibot-adapter": "^1.120.2", + "@tanstack/zod-adapter": "^1.120.2", "arktype": "^2.1.7", "react": "^19.0.0", "react-dom": "^19.0.0", diff --git a/examples/react/start-bare/package.json b/examples/react/start-bare/package.json index bc751526272..d3ff0e572a1 100644 --- a/examples/react/start-bare/package.json +++ b/examples/react/start-bare/package.json @@ -9,9 +9,9 @@ "start": "vinxi start" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/react-start": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/react-start": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "vinxi": "0.5.3", diff --git a/examples/react/start-basic-auth/package.json b/examples/react/start-basic-auth/package.json index 78790f1b091..ea5027bf334 100644 --- a/examples/react/start-basic-auth/package.json +++ b/examples/react/start-basic-auth/package.json @@ -11,9 +11,9 @@ }, "dependencies": { "@prisma/client": "5.22.0", - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/react-start": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/react-start": "^1.120.2", "prisma": "^5.22.0", "react": "^19.0.0", "react-dom": "^19.0.0", diff --git a/examples/react/start-basic-react-query/package.json b/examples/react/start-basic-react-query/package.json index d981bd0dd7a..ee343e2c390 100644 --- a/examples/react/start-basic-react-query/package.json +++ b/examples/react/start-basic-react-query/package.json @@ -11,10 +11,10 @@ "dependencies": { "@tanstack/react-query": "^5.66.0", "@tanstack/react-query-devtools": "^5.66.0", - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-with-query": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/react-start": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-with-query": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/react-start": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "redaxios": "^0.5.1", diff --git a/examples/react/start-basic-rsc/package.json b/examples/react/start-basic-rsc/package.json index 86e5ca47308..0d7b83a4e15 100644 --- a/examples/react/start-basic-rsc/package.json +++ b/examples/react/start-basic-rsc/package.json @@ -10,9 +10,9 @@ }, "dependencies": { "@babel/plugin-syntax-typescript": "^7.25.9", - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/react-start": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/react-start": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "redaxios": "^0.5.1", diff --git a/examples/react/start-basic-static/package.json b/examples/react/start-basic-static/package.json index 6b35714546a..54a2f54af5f 100644 --- a/examples/react/start-basic-static/package.json +++ b/examples/react/start-basic-static/package.json @@ -9,9 +9,9 @@ "start": "vinxi start" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/react-start": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/react-start": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "redaxios": "^0.5.1", diff --git a/examples/react/start-basic/package.json b/examples/react/start-basic/package.json index e972b401e22..a381853a969 100644 --- a/examples/react/start-basic/package.json +++ b/examples/react/start-basic/package.json @@ -9,9 +9,9 @@ "start": "vinxi start" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/react-start": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/react-start": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "tailwind-merge": "^2.6.0", diff --git a/examples/react/start-clerk-basic/package.json b/examples/react/start-clerk-basic/package.json index 6a850c81b84..9e7a5cd89ab 100644 --- a/examples/react/start-clerk-basic/package.json +++ b/examples/react/start-clerk-basic/package.json @@ -10,9 +10,9 @@ }, "dependencies": { "@clerk/tanstack-react-start": "0.12.0", - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/react-start": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/react-start": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "redaxios": "^0.5.1", diff --git a/examples/react/start-convex-trellaux/package.json b/examples/react/start-convex-trellaux/package.json index bd08bb42933..37e1c75d7e4 100644 --- a/examples/react/start-convex-trellaux/package.json +++ b/examples/react/start-convex-trellaux/package.json @@ -14,10 +14,10 @@ "@convex-dev/react-query": "0.0.0-alpha.8", "@tanstack/react-query": "^5.66.0", "@tanstack/react-query-devtools": "^5.66.0", - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-with-query": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/react-start": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-with-query": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/react-start": "^1.120.2", "concurrently": "^8.2.2", "convex": "^1.19.0", "ky": "^1.7.4", diff --git a/examples/react/start-counter/package.json b/examples/react/start-counter/package.json index 8a4de9f1a30..42fa154b9dd 100644 --- a/examples/react/start-counter/package.json +++ b/examples/react/start-counter/package.json @@ -9,9 +9,9 @@ "start": "vinxi start" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/react-start": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/react-start": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "vinxi": "0.5.3" diff --git a/examples/react/start-large/package.json b/examples/react/start-large/package.json index 79bff0b1f99..7a1dfdc8e56 100644 --- a/examples/react/start-large/package.json +++ b/examples/react/start-large/package.json @@ -12,9 +12,9 @@ }, "dependencies": { "@tanstack/react-query": "^5.66.0", - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/react-start": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/react-start": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "redaxios": "^0.5.1", diff --git a/examples/react/start-material-ui/package.json b/examples/react/start-material-ui/package.json index 07f351f2553..87657719a47 100644 --- a/examples/react/start-material-ui/package.json +++ b/examples/react/start-material-ui/package.json @@ -14,9 +14,9 @@ "@emotion/styled": "11.14.0", "@fontsource-variable/roboto": "5.2.5", "@mui/material": "6.4.7", - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-start": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-start": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "vinxi": "0.5.3", diff --git a/examples/react/start-supabase-basic/package.json b/examples/react/start-supabase-basic/package.json index 015ee03923a..6f420419baf 100644 --- a/examples/react/start-supabase-basic/package.json +++ b/examples/react/start-supabase-basic/package.json @@ -15,9 +15,9 @@ "dependencies": { "@supabase/ssr": "^0.5.2", "@supabase/supabase-js": "^2.48.1", - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/react-start": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/react-start": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "vinxi": "0.5.3" diff --git a/examples/react/start-trellaux/package.json b/examples/react/start-trellaux/package.json index ec1b7944026..8dcc3044835 100644 --- a/examples/react/start-trellaux/package.json +++ b/examples/react/start-trellaux/package.json @@ -11,10 +11,10 @@ "dependencies": { "@tanstack/react-query": "^5.66.0", "@tanstack/react-query-devtools": "^5.66.0", - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-with-query": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/react-start": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-with-query": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/react-start": "^1.120.2", "ky": "^1.7.4", "msw": "^2.7.0", "react": "^19.0.0", diff --git a/examples/react/start-workos/package.json b/examples/react/start-workos/package.json index bcdbb6ab767..92479bd3d11 100644 --- a/examples/react/start-workos/package.json +++ b/examples/react/start-workos/package.json @@ -14,9 +14,9 @@ "license": "ISC", "dependencies": { "@radix-ui/themes": "^3.2.1", - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/react-start": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/react-start": "^1.120.2", "@workos-inc/node": "^7.45.0", "iron-session": "^8.0.4", "jose": "^6.0.10", diff --git a/examples/react/view-transitions/package.json b/examples/react/view-transitions/package.json index dd28e17433a..af9f07ecd89 100644 --- a/examples/react/view-transitions/package.json +++ b/examples/react/view-transitions/package.json @@ -9,9 +9,9 @@ "start": "vite" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/router-plugin": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/router-plugin": "^1.120.2", "react": "^19.0.0", "react-dom": "^19.0.0", "redaxios": "^0.5.1", diff --git a/examples/react/with-framer-motion/package.json b/examples/react/with-framer-motion/package.json index e543a73a2a9..f1610369b36 100644 --- a/examples/react/with-framer-motion/package.json +++ b/examples/react/with-framer-motion/package.json @@ -9,8 +9,8 @@ "start": "vite" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", "framer-motion": "^11.18.2", "react": "^19.0.0", "react-dom": "^19.0.0", diff --git a/examples/react/with-trpc-react-query/package.json b/examples/react/with-trpc-react-query/package.json index b93bdbd65c0..033498c8d26 100644 --- a/examples/react/with-trpc-react-query/package.json +++ b/examples/react/with-trpc-react-query/package.json @@ -10,10 +10,10 @@ "dependencies": { "@tanstack/react-query": "^5.66.0", "@tanstack/react-query-devtools": "^5.66.0", - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/router-plugin": "^1.120.1", - "@tanstack/react-start": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/router-plugin": "^1.120.2", + "@tanstack/react-start": "^1.120.2", "@trpc/client": "11.0.0-rc.772", "@trpc/server": "11.0.0-rc.772", "@trpc/tanstack-react-query": "11.0.0-rc.772", diff --git a/examples/react/with-trpc/package.json b/examples/react/with-trpc/package.json index 52714e560cc..48dd684bb40 100644 --- a/examples/react/with-trpc/package.json +++ b/examples/react/with-trpc/package.json @@ -8,10 +8,10 @@ "start": "vinxi start" }, "dependencies": { - "@tanstack/react-router": "^1.120.1", - "@tanstack/react-router-devtools": "^1.120.1", - "@tanstack/router-plugin": "^1.120.1", - "@tanstack/react-start": "^1.120.1", + "@tanstack/react-router": "^1.120.2", + "@tanstack/react-router-devtools": "^1.120.2", + "@tanstack/router-plugin": "^1.120.2", + "@tanstack/react-start": "^1.120.2", "@trpc/client": "11.0.0-rc.772", "@trpc/server": "11.0.0-rc.772", "react": "^19.0.0", diff --git a/examples/solid/basic-devtools-panel/package.json b/examples/solid/basic-devtools-panel/package.json index 9f199efa6fe..f4c08c397f4 100644 --- a/examples/solid/basic-devtools-panel/package.json +++ b/examples/solid/basic-devtools-panel/package.json @@ -9,8 +9,8 @@ "start": "vite" }, "dependencies": { - "@tanstack/solid-router": "^1.120.1", - "@tanstack/solid-router-devtools": "^1.120.1", + "@tanstack/solid-router": "^1.120.2", + "@tanstack/solid-router-devtools": "^1.120.2", "solid-js": "^1.9.5", "redaxios": "^0.5.1", "postcss": "^8.5.1", diff --git a/examples/solid/basic-file-based/package.json b/examples/solid/basic-file-based/package.json index 3e8fecb8029..e727b578332 100644 --- a/examples/solid/basic-file-based/package.json +++ b/examples/solid/basic-file-based/package.json @@ -9,8 +9,8 @@ "start": "vite" }, "dependencies": { - "@tanstack/solid-router": "^1.120.1", - "@tanstack/solid-router-devtools": "^1.120.1", + "@tanstack/solid-router": "^1.120.2", + "@tanstack/solid-router-devtools": "^1.120.2", "autoprefixer": "^10.4.20", "postcss": "^8.5.1", "redaxios": "^0.5.1", @@ -19,7 +19,7 @@ "zod": "^3.24.2" }, "devDependencies": { - "@tanstack/router-plugin": "^1.120.1", + "@tanstack/router-plugin": "^1.120.2", "typescript": "^5.7.2", "vite": "^6.1.0", "vite-plugin-solid": "^2.11.2" diff --git a/examples/solid/basic-non-nested-devtools/package.json b/examples/solid/basic-non-nested-devtools/package.json index 713a0ed9af7..4eca7daf3bb 100644 --- a/examples/solid/basic-non-nested-devtools/package.json +++ b/examples/solid/basic-non-nested-devtools/package.json @@ -9,8 +9,8 @@ "start": "vite" }, "dependencies": { - "@tanstack/solid-router": "^1.120.1", - "@tanstack/solid-router-devtools": "^1.120.1", + "@tanstack/solid-router": "^1.120.2", + "@tanstack/solid-router-devtools": "^1.120.2", "redaxios": "^0.5.1", "postcss": "^8.5.1", "solid-js": "^1.9.5", diff --git a/examples/solid/basic-solid-query-file-based/package.json b/examples/solid/basic-solid-query-file-based/package.json index ce2dfd6cba0..78d61fb3421 100644 --- a/examples/solid/basic-solid-query-file-based/package.json +++ b/examples/solid/basic-solid-query-file-based/package.json @@ -12,8 +12,8 @@ "dependencies": { "@tanstack/solid-query": "^5.71.9", "@tanstack/solid-query-devtools": "^5.71.9", - "@tanstack/solid-router": "^1.120.1", - "@tanstack/solid-router-devtools": "^1.120.1", + "@tanstack/solid-router": "^1.120.2", + "@tanstack/solid-router-devtools": "^1.120.2", "solid-js": "^1.9.5", "redaxios": "^0.5.1", "postcss": "^8.5.1", @@ -22,7 +22,7 @@ "zod": "^3.24.2" }, "devDependencies": { - "@tanstack/router-plugin": "^1.120.1", + "@tanstack/router-plugin": "^1.120.2", "typescript": "^5.7.2", "vite": "^6.1.0", "vite-plugin-solid": "^2.11.2" diff --git a/examples/solid/basic-solid-query/package.json b/examples/solid/basic-solid-query/package.json index 20d22ed72c8..094d51f514e 100644 --- a/examples/solid/basic-solid-query/package.json +++ b/examples/solid/basic-solid-query/package.json @@ -11,8 +11,8 @@ "dependencies": { "@tanstack/solid-query": "^5.71.9", "@tanstack/solid-query-devtools": "^5.71.9", - "@tanstack/solid-router": "^1.120.1", - "@tanstack/solid-router-devtools": "^1.120.1", + "@tanstack/solid-router": "^1.120.2", + "@tanstack/solid-router-devtools": "^1.120.2", "solid-js": "^1.9.5", "redaxios": "^0.5.1", "postcss": "^8.5.1", @@ -20,7 +20,7 @@ "tailwindcss": "^3.4.17" }, "devDependencies": { - "@tanstack/router-plugin": "^1.120.1", + "@tanstack/router-plugin": "^1.120.2", "typescript": "^5.7.2", "vite": "^6.1.0", "vite-plugin-solid": "^2.11.2" diff --git a/examples/solid/basic/package.json b/examples/solid/basic/package.json index 6afc32d1b49..8d67e7af706 100644 --- a/examples/solid/basic/package.json +++ b/examples/solid/basic/package.json @@ -9,8 +9,8 @@ "start": "vite" }, "dependencies": { - "@tanstack/solid-router": "^1.120.1", - "@tanstack/solid-router-devtools": "^1.120.1", + "@tanstack/solid-router": "^1.120.2", + "@tanstack/solid-router-devtools": "^1.120.2", "redaxios": "^0.5.1", "postcss": "^8.5.1", "solid-js": "^1.9.5", diff --git a/examples/solid/kitchen-sink-file-based/package.json b/examples/solid/kitchen-sink-file-based/package.json index 63a8de1643b..839ae26d596 100644 --- a/examples/solid/kitchen-sink-file-based/package.json +++ b/examples/solid/kitchen-sink-file-based/package.json @@ -9,8 +9,8 @@ "start": "vite" }, "dependencies": { - "@tanstack/solid-router": "^1.120.1", - "@tanstack/solid-router-devtools": "^1.120.1", + "@tanstack/solid-router": "^1.120.2", + "@tanstack/solid-router-devtools": "^1.120.2", "immer": "^10.1.1", "solid-js": "^1.9.5", "redaxios": "^0.5.1", @@ -20,7 +20,7 @@ "zod": "^3.24.2" }, "devDependencies": { - "@tanstack/router-plugin": "^1.120.1", + "@tanstack/router-plugin": "^1.120.2", "typescript": "^5.7.2", "vite": "^6.1.0", "vite-plugin-solid": "^2.11.2" diff --git a/examples/solid/quickstart-file-based/package.json b/examples/solid/quickstart-file-based/package.json index 5909d691bdb..c4bcf560b1f 100644 --- a/examples/solid/quickstart-file-based/package.json +++ b/examples/solid/quickstart-file-based/package.json @@ -9,8 +9,8 @@ "start": "vite" }, "dependencies": { - "@tanstack/solid-router": "^1.120.1", - "@tanstack/solid-router-devtools": "^1.120.1", + "@tanstack/solid-router": "^1.120.2", + "@tanstack/solid-router-devtools": "^1.120.2", "autoprefixer": "^10.4.20", "postcss": "^8.5.1", "redaxios": "^0.5.1", @@ -19,7 +19,7 @@ "zod": "^3.24.2" }, "devDependencies": { - "@tanstack/router-plugin": "^1.120.1", + "@tanstack/router-plugin": "^1.120.2", "typescript": "^5.7.2", "vite": "^6.1.0", "vite-plugin-solid": "^2.11.2" diff --git a/examples/solid/start-bare/package.json b/examples/solid/start-bare/package.json index cc62e82a45f..bbf74fb012f 100644 --- a/examples/solid/start-bare/package.json +++ b/examples/solid/start-bare/package.json @@ -9,9 +9,9 @@ "start": "vinxi start" }, "dependencies": { - "@tanstack/solid-router": "^1.120.1", - "@tanstack/solid-router-devtools": "^1.120.1", - "@tanstack/solid-start": "^1.120.1", + "@tanstack/solid-router": "^1.120.2", + "@tanstack/solid-router-devtools": "^1.120.2", + "@tanstack/solid-start": "^1.120.2", "solid-js": "^1.9.5", "redaxios": "^0.5.1", "tailwind-merge": "^2.6.0", diff --git a/examples/solid/start-basic/package.json b/examples/solid/start-basic/package.json index af2f895b6c2..d765f3ad055 100644 --- a/examples/solid/start-basic/package.json +++ b/examples/solid/start-basic/package.json @@ -9,9 +9,9 @@ "start": "vinxi start" }, "dependencies": { - "@tanstack/solid-router": "^1.120.1", - "@tanstack/solid-router-devtools": "^1.120.1", - "@tanstack/solid-start": "^1.120.1", + "@tanstack/solid-router": "^1.120.2", + "@tanstack/solid-router-devtools": "^1.120.2", + "@tanstack/solid-start": "^1.120.2", "solid-js": "^1.9.5", "redaxios": "^0.5.1", "tailwind-merge": "^2.6.0", diff --git a/packages/arktype-adapter/package.json b/packages/arktype-adapter/package.json index 9ba618ece94..baa17107abc 100644 --- a/packages/arktype-adapter/package.json +++ b/packages/arktype-adapter/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/arktype-adapter", - "version": "1.120.1", + "version": "1.120.2", "description": "Modern and scalable routing for React applications", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/react-router-devtools/package.json b/packages/react-router-devtools/package.json index ef2a483c58a..db43d1f2a95 100644 --- a/packages/react-router-devtools/package.json +++ b/packages/react-router-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/react-router-devtools", - "version": "1.120.1", + "version": "1.120.2", "description": "Modern and scalable routing for React applications", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/react-router-with-query/package.json b/packages/react-router-with-query/package.json index 3667ef06c1c..89842ca2eb8 100644 --- a/packages/react-router-with-query/package.json +++ b/packages/react-router-with-query/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/react-router-with-query", - "version": "1.120.1", + "version": "1.120.2", "description": "Modern and scalable routing for React applications", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/react-router/package.json b/packages/react-router/package.json index 203e368ada2..89ba3165742 100644 --- a/packages/react-router/package.json +++ b/packages/react-router/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/react-router", - "version": "1.120.1", + "version": "1.120.2", "description": "Modern and scalable routing for React applications", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/react-start-client/package.json b/packages/react-start-client/package.json index 0eacdcd9c81..1bad604da0f 100644 --- a/packages/react-start-client/package.json +++ b/packages/react-start-client/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/react-start-client", - "version": "1.120.1", + "version": "1.120.2", "description": "Modern and scalable routing for React applications", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/react-start-config/package.json b/packages/react-start-config/package.json index 29cdd967c57..68558b01d3d 100644 --- a/packages/react-start-config/package.json +++ b/packages/react-start-config/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/react-start-config", - "version": "1.120.1", + "version": "1.120.2", "description": "Modern and scalable routing for React applications", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/react-start-server/package.json b/packages/react-start-server/package.json index c8ca486ef80..34045cc12f5 100644 --- a/packages/react-start-server/package.json +++ b/packages/react-start-server/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/react-start-server", - "version": "1.120.1", + "version": "1.120.2", "description": "Modern and scalable routing for React applications", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/react-start/package.json b/packages/react-start/package.json index a08d2c78daa..ac225344c50 100644 --- a/packages/react-start/package.json +++ b/packages/react-start/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/react-start", - "version": "1.120.1", + "version": "1.120.2", "description": "Modern and scalable routing for React applications", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/router-cli/package.json b/packages/router-cli/package.json index 59f061b5e9c..e86a3bf672e 100644 --- a/packages/router-cli/package.json +++ b/packages/router-cli/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/router-cli", - "version": "1.120.1", + "version": "1.120.2", "description": "Modern and scalable routing for React applications", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/router-devtools/package.json b/packages/router-devtools/package.json index add03651ea1..9f713f2d55f 100644 --- a/packages/router-devtools/package.json +++ b/packages/router-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/router-devtools", - "version": "1.120.1", + "version": "1.120.2", "description": "Modern and scalable routing for React applications", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/router-generator/package.json b/packages/router-generator/package.json index 24fa2c93cae..932f73a204c 100644 --- a/packages/router-generator/package.json +++ b/packages/router-generator/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/router-generator", - "version": "1.120.1", + "version": "1.120.2", "description": "Modern and scalable routing for React applications", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/router-plugin/package.json b/packages/router-plugin/package.json index df0d7ea1367..7659164726b 100644 --- a/packages/router-plugin/package.json +++ b/packages/router-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/router-plugin", - "version": "1.120.1", + "version": "1.120.2", "description": "Modern and scalable routing for React applications", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/router-vite-plugin/package.json b/packages/router-vite-plugin/package.json index c03b95efd2c..1e3647cc64f 100644 --- a/packages/router-vite-plugin/package.json +++ b/packages/router-vite-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/router-vite-plugin", - "version": "1.120.1", + "version": "1.120.2", "description": "Modern and scalable routing for React applications", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/solid-router-devtools/package.json b/packages/solid-router-devtools/package.json index c933c241823..e3d0e704f99 100644 --- a/packages/solid-router-devtools/package.json +++ b/packages/solid-router-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/solid-router-devtools", - "version": "1.120.1", + "version": "1.120.2", "description": "Modern and scalable routing for Solid applications", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/solid-router/package.json b/packages/solid-router/package.json index 602a805be11..f1a82857fd3 100644 --- a/packages/solid-router/package.json +++ b/packages/solid-router/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/solid-router", - "version": "1.120.1", + "version": "1.120.2", "description": "Modern and scalable routing for Solid applications", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/solid-start-client/package.json b/packages/solid-start-client/package.json index 9c3853128d0..6ea45e92ed4 100644 --- a/packages/solid-start-client/package.json +++ b/packages/solid-start-client/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/solid-start-client", - "version": "1.120.1", + "version": "1.120.2", "description": "Modern and scalable routing for Solid applications", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/solid-start-config/package.json b/packages/solid-start-config/package.json index 3ae1f93823d..d8a7bca7d26 100644 --- a/packages/solid-start-config/package.json +++ b/packages/solid-start-config/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/solid-start-config", - "version": "1.120.1", + "version": "1.120.2", "description": "Modern and scalable routing for Solid applications", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/solid-start-server/package.json b/packages/solid-start-server/package.json index 65e46e4f90f..25ea630ac41 100644 --- a/packages/solid-start-server/package.json +++ b/packages/solid-start-server/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/solid-start-server", - "version": "1.120.1", + "version": "1.120.2", "description": "Modern and scalable routing for Solid applications", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/solid-start/package.json b/packages/solid-start/package.json index bb3a4c32003..650476434f8 100644 --- a/packages/solid-start/package.json +++ b/packages/solid-start/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/solid-start", - "version": "1.120.1", + "version": "1.120.2", "description": "Modern and scalable routing for Solid applications", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/start-config/package.json b/packages/start-config/package.json index 671ebf7d55c..3ff0532cb63 100644 --- a/packages/start-config/package.json +++ b/packages/start-config/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/start-config", - "version": "1.120.1", + "version": "1.120.2", "description": "Modern and scalable routing for React applications", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/start/package.json b/packages/start/package.json index b831cdbe323..6cc8e867c04 100644 --- a/packages/start/package.json +++ b/packages/start/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/start", - "version": "1.120.1", + "version": "1.120.2", "description": "Modern and scalable routing for React applications", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/valibot-adapter/package.json b/packages/valibot-adapter/package.json index 0c1710d105e..6720c71fa01 100644 --- a/packages/valibot-adapter/package.json +++ b/packages/valibot-adapter/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/valibot-adapter", - "version": "1.120.1", + "version": "1.120.2", "description": "Modern and scalable routing for React applications", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/zod-adapter/package.json b/packages/zod-adapter/package.json index 07441549458..03d9984c88d 100644 --- a/packages/zod-adapter/package.json +++ b/packages/zod-adapter/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/zod-adapter", - "version": "1.120.1", + "version": "1.120.2", "description": "Modern and scalable routing for React applications", "author": "Tanner Linsley", "license": "MIT", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 898732a3cfb..9bcd96546db 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -5244,7 +5244,7 @@ importers: examples/solid/basic: dependencies: '@tanstack/solid-router': - specifier: ^1.120.1 + specifier: ^1.120.2 version: link:../../../packages/solid-router '@tanstack/solid-router-devtools': specifier: workspace:^ @@ -5284,7 +5284,7 @@ importers: examples/solid/basic-devtools-panel: dependencies: '@tanstack/solid-router': - specifier: ^1.120.1 + specifier: ^1.120.2 version: link:../../../packages/solid-router '@tanstack/solid-router-devtools': specifier: workspace:^ @@ -5318,7 +5318,7 @@ importers: examples/solid/basic-file-based: dependencies: '@tanstack/solid-router': - specifier: ^1.120.1 + specifier: ^1.120.2 version: link:../../../packages/solid-router '@tanstack/solid-router-devtools': specifier: workspace:^ @@ -5358,7 +5358,7 @@ importers: examples/solid/basic-non-nested-devtools: dependencies: '@tanstack/solid-router': - specifier: ^1.120.1 + specifier: ^1.120.2 version: link:../../../packages/solid-router '@tanstack/solid-router-devtools': specifier: workspace:^ @@ -5404,7 +5404,7 @@ importers: specifier: ^5.71.9 version: 5.71.9(@tanstack/solid-query@5.71.9(solid-js@1.9.5))(solid-js@1.9.5) '@tanstack/solid-router': - specifier: ^1.120.1 + specifier: ^1.120.2 version: link:../../../packages/solid-router '@tanstack/solid-router-devtools': specifier: workspace:^ @@ -5447,7 +5447,7 @@ importers: specifier: ^5.71.9 version: 5.71.9(@tanstack/solid-query@5.71.9(solid-js@1.9.5))(solid-js@1.9.5) '@tanstack/solid-router': - specifier: ^1.120.1 + specifier: ^1.120.2 version: link:../../../packages/solid-router '@tanstack/solid-router-devtools': specifier: workspace:^ @@ -5487,7 +5487,7 @@ importers: examples/solid/kitchen-sink-file-based: dependencies: '@tanstack/solid-router': - specifier: ^1.120.1 + specifier: ^1.120.2 version: link:../../../packages/solid-router '@tanstack/solid-router-devtools': specifier: workspace:^ @@ -5530,7 +5530,7 @@ importers: examples/solid/quickstart-file-based: dependencies: '@tanstack/solid-router': - specifier: ^1.120.1 + specifier: ^1.120.2 version: link:../../../packages/solid-router '@tanstack/solid-router-devtools': specifier: workspace:^ @@ -5570,7 +5570,7 @@ importers: examples/solid/start-bare: dependencies: '@tanstack/solid-router': - specifier: ^1.120.1 + specifier: ^1.120.2 version: link:../../../packages/solid-router '@tanstack/solid-router-devtools': specifier: workspace:^ @@ -5619,7 +5619,7 @@ importers: examples/solid/start-basic: dependencies: '@tanstack/solid-router': - specifier: ^1.120.1 + specifier: ^1.120.2 version: link:../../../packages/solid-router '@tanstack/solid-router-devtools': specifier: workspace:^