@vercel/next 4.13.1 → 4.13.3
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.
- package/dist/index.js +2 -2
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -12803,7 +12803,7 @@ var onPrerenderRoute = (prerenderRouteArgs) => async (routeKey, {
|
|
|
12803
12803
|
rscContentTypeHeader
|
|
12804
12804
|
)}`;
|
|
12805
12805
|
}
|
|
12806
|
-
const rdcRSCAllowQuery = htmlAllowQuery;
|
|
12806
|
+
const rdcRSCAllowQuery = isAppClientParamParsingEnabled ? htmlAllowQuery : allowQuery;
|
|
12807
12807
|
let fallback = null;
|
|
12808
12808
|
if (rdcRSCAllowQuery && rdcRSCAllowQuery.length === 0 && postponedState) {
|
|
12809
12809
|
fallback = new import_build_utils.FileBlob({
|
|
@@ -12848,7 +12848,7 @@ var onPrerenderRoute = (prerenderRouteArgs) => async (routeKey, {
|
|
|
12848
12848
|
appDir,
|
|
12849
12849
|
routeFileNoExt + prefetchSegmentDirSuffix
|
|
12850
12850
|
);
|
|
12851
|
-
const segmentAllowQuery = htmlAllowQuery;
|
|
12851
|
+
const segmentAllowQuery = isAppClientParamParsingEnabled ? htmlAllowQuery : allowQuery;
|
|
12852
12852
|
for (const segmentPath of meta.segmentPaths) {
|
|
12853
12853
|
const outputSegmentPath = import_path3.default.join(
|
|
12854
12854
|
outputPathPage + prefetchSegmentDirSuffix,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/next",
|
|
3
|
-
"version": "4.13.
|
|
3
|
+
"version": "4.13.3",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "./dist/index",
|
|
6
6
|
"homepage": "https://vercel.com/docs/runtimes#official-runtimes/next-js",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@types/semver": "6.0.0",
|
|
31
31
|
"@types/text-table": "0.2.1",
|
|
32
32
|
"@types/webpack-sources": "3.2.0",
|
|
33
|
-
"@vercel/build-utils": "12.1.
|
|
33
|
+
"@vercel/build-utils": "12.1.2",
|
|
34
34
|
"@vercel/routing-utils": "5.2.0",
|
|
35
35
|
"async-sema": "3.0.1",
|
|
36
36
|
"buffer-crc32": "0.2.13",
|