@vercel/next 4.12.2 → 4.12.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 +4 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -12119,7 +12119,7 @@ async function getPageLambdaGroups({
|
|
|
12119
12119
|
}
|
|
12120
12120
|
}
|
|
12121
12121
|
let matchingGroup = experimentalAllowBundling ? void 0 : groups.find((group) => {
|
|
12122
|
-
const matches = group.maxDuration === opts.maxDuration && group.memory === opts.memory && group.isPrerenders === isPrerenderRoute && group.isExperimentalPPR === isExperimentalPPR && JSON.stringify(group.experimentalTriggers) === JSON.stringify(opts.experimentalTriggers);
|
|
12122
|
+
const matches = group.maxDuration === opts.maxDuration && group.memory === opts.memory && group.isPrerenders === isPrerenderRoute && group.isExperimentalPPR === isExperimentalPPR && JSON.stringify(group.experimentalTriggers) === JSON.stringify(opts.experimentalTriggers) && group.supportsCancellation === opts.supportsCancellation;
|
|
12123
12123
|
if (matches) {
|
|
12124
12124
|
let newTracedFilesUncompressedSize = group.pseudoLayerUncompressedBytes;
|
|
12125
12125
|
for (const newPage of newPages) {
|
|
@@ -12148,7 +12148,8 @@ async function getPageLambdaGroups({
|
|
|
12148
12148
|
pseudoLayerBytes: initialPseudoLayer.pseudoLayerBytes,
|
|
12149
12149
|
pseudoLayerUncompressedBytes: initialPseudoLayerUncompressed,
|
|
12150
12150
|
pseudoLayer: Object.assign({}, initialPseudoLayer.pseudoLayer),
|
|
12151
|
-
experimentalTriggers: opts.experimentalTriggers
|
|
12151
|
+
experimentalTriggers: opts.experimentalTriggers,
|
|
12152
|
+
supportsCancellation: opts.supportsCancellation
|
|
12152
12153
|
};
|
|
12153
12154
|
groups.push(newGroup);
|
|
12154
12155
|
matchingGroup = newGroup;
|
|
@@ -15031,6 +15032,7 @@ ${JSON.stringify(
|
|
|
15031
15032
|
memory: group.memory,
|
|
15032
15033
|
runtime: nodeVersion.runtime,
|
|
15033
15034
|
maxDuration: group.maxDuration,
|
|
15035
|
+
supportsCancellation: group.supportsCancellation,
|
|
15034
15036
|
isStreaming: group.isStreaming,
|
|
15035
15037
|
nextVersion,
|
|
15036
15038
|
experimentalAllowBundling,
|