@tanstack/react-router 1.134.13 → 1.134.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -515,7 +515,7 @@ If you are not able to use the automatic code-splitting feature, you can still c
515
515
  > [!IMPORTANT]
516
516
  > The \`__root.tsx\` route file, using either \`createRootRoute\` or \`createRootRouteWithContext\`, does not support code splitting, since it's always rendered regardless of the current route.
517
517
 
518
- These are the only options that \`createLazyFileRoute\` support:
518
+ These are the only options that \`createLazyFileRoute\` supports:
519
519
 
520
520
  | Export Name | Description |
521
521
  | ------------------- | --------------------------------------------------------------------- |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/react-router",
3
- "version": "1.134.13",
3
+ "version": "1.134.17",
4
4
  "description": "Modern and scalable routing for React applications",
5
5
  "author": "Tanner Linsley",
6
6
  "license": "MIT",
@@ -79,8 +79,8 @@
79
79
  "isbot": "^5.1.22",
80
80
  "tiny-invariant": "^1.3.3",
81
81
  "tiny-warning": "^1.0.3",
82
- "@tanstack/history": "1.133.28",
83
- "@tanstack/router-core": "1.134.13"
82
+ "@tanstack/router-core": "1.134.15",
83
+ "@tanstack/history": "1.133.28"
84
84
  },
85
85
  "devDependencies": {
86
86
  "@testing-library/jest-dom": "^6.6.3",
@@ -24,6 +24,7 @@ export const renderRouterToStream = async ({
24
24
  const stream = await ReactDOMServer.renderToReadableStream(children, {
25
25
  signal: request.signal,
26
26
  nonce: router.options.ssr?.nonce,
27
+ progressiveChunkSize: Number.POSITIVE_INFINITY,
27
28
  })
28
29
 
29
30
  if (isbot(request.headers.get('User-Agent'))) {
@@ -46,6 +47,7 @@ export const renderRouterToStream = async ({
46
47
  try {
47
48
  const pipeable = ReactDOMServer.renderToPipeableStream(children, {
48
49
  nonce: router.options.ssr?.nonce,
50
+ progressiveChunkSize: Number.POSITIVE_INFINITY,
49
51
  ...(isbot(request.headers.get('User-Agent'))
50
52
  ? {
51
53
  onAllReady() {