Skip to content

Commit d85c128

Browse files
rename query integration to react-router-ssr-query
1 parent 9fb55b8 commit d85c128

File tree

19 files changed

+43
-43
lines changed

19 files changed

+43
-43
lines changed

e2e/react-start/basic-react-query/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"@tanstack/react-query-devtools": "^5.66.0",
1616
"@tanstack/react-router": "workspace:^",
1717
"@tanstack/react-router-devtools": "workspace:^",
18-
"@tanstack/react-router-with-query": "workspace:^",
18+
"@tanstack/react-router-ssr-query": "workspace:^",
1919
"@tanstack/react-start": "workspace:^",
2020
"react": "^19.0.0",
2121
"react-dom": "^19.0.0",

e2e/react-start/basic-react-query/src/router.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { QueryClient } from '@tanstack/react-query'
22
import { createRouter as createTanStackRouter } from '@tanstack/react-router'
3-
import { routerWithQueryClient } from '@tanstack/react-router-with-query'
3+
import { routerWithQueryClient } from '@tanstack/react-router-ssr-query'
44
import { routeTree } from './routeTree.gen'
55
import { DefaultCatchBoundary } from './components/DefaultCatchBoundary'
66
import { NotFound } from './components/NotFound'

examples/react/start-basic-react-query/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"@tanstack/react-query": "^5.66.0",
1313
"@tanstack/react-query-devtools": "^5.66.0",
1414
"@tanstack/react-router": "^1.127.3",
15-
"@tanstack/react-router-with-query": "^1.127.3",
15+
"@tanstack/react-router-ssr-query": "^1.127.3",
1616
"@tanstack/react-router-devtools": "^1.127.3",
1717
"@tanstack/react-start": "^1.127.6",
1818
"react": "^19.0.0",

examples/react/start-basic-react-query/src/router.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { QueryClient } from '@tanstack/react-query'
22
import { createRouter as createTanStackRouter } from '@tanstack/react-router'
3-
import { routerWithQueryClient } from '@tanstack/react-router-with-query'
3+
import { routerWithQueryClient } from '@tanstack/react-router-ssr-query'
44
import { routeTree } from './routeTree.gen'
55
import { DefaultCatchBoundary } from './components/DefaultCatchBoundary'
66
import { NotFound } from './components/NotFound'

examples/react/start-convex-trellaux/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"@tanstack/react-query": "^5.66.0",
1616
"@tanstack/react-query-devtools": "^5.66.0",
1717
"@tanstack/react-router": "^1.127.3",
18-
"@tanstack/react-router-with-query": "^1.127.3",
18+
"@tanstack/react-router-ssr-query": "^1.127.3",
1919
"@tanstack/react-router-devtools": "^1.127.3",
2020
"@tanstack/react-start": "^1.127.6",
2121
"concurrently": "^8.2.2",

examples/react/start-convex-trellaux/src/router.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
QueryClient,
55
notifyManager,
66
} from '@tanstack/react-query'
7-
import { routerWithQueryClient } from '@tanstack/react-router-with-query'
7+
import { routerWithQueryClient } from '@tanstack/react-router-ssr-query'
88
import toast from 'react-hot-toast'
99
import { ConvexQueryClient } from '@convex-dev/react-query'
1010
import { ConvexProvider } from 'convex/react'

examples/react/start-trellaux/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"@tanstack/react-query": "^5.66.0",
1313
"@tanstack/react-query-devtools": "^5.66.0",
1414
"@tanstack/react-router": "^1.127.3",
15-
"@tanstack/react-router-with-query": "^1.127.3",
15+
"@tanstack/react-router-ssr-query": "^1.127.3",
1616
"@tanstack/react-router-devtools": "^1.127.3",
1717
"@tanstack/react-start": "^1.127.6",
1818
"ky": "^1.7.4",

examples/react/start-trellaux/src/router.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
QueryClient,
55
notifyManager,
66
} from '@tanstack/react-query'
7-
import { routerWithQueryClient } from '@tanstack/react-router-with-query'
7+
import { routerWithQueryClient } from '@tanstack/react-router-ssr-query'
88
import toast from 'react-hot-toast'
99
import { routeTree } from './routeTree.gen'
1010
import { DefaultCatchBoundary } from './components/DefaultCatchBoundary'

labeler-config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
'package: react-router-devtools':
1717
- changed-files:
1818
- any-glob-to-any-file: 'packages/react-router-devtools/**/*'
19-
'package: react-router-with-query':
19+
'package: react-router-ssr-query':
2020
- changed-files:
21-
- any-glob-to-any-file: 'packages/react-router-with-query/**/*'
21+
- any-glob-to-any-file: 'packages/react-router-ssr-query/**/*'
2222
'package: react-start':
2323
- changed-files:
2424
- any-glob-to-any-file: 'packages/react-start/**/*'

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
"@tanstack/virtual-file-routes": "workspace:*",
9595
"@tanstack/router-plugin": "workspace:*",
9696
"@tanstack/router-vite-plugin": "workspace:*",
97-
"@tanstack/react-router-with-query": "workspace:*",
97+
"@tanstack/react-router-ssr-query": "workspace:*",
9898
"@tanstack/zod-adapter": "workspace:*",
9999
"@tanstack/valibot-adapter": "workspace:*",
100100
"@tanstack/arktype-adapter": "workspace:*",

0 commit comments

Comments
 (0)