@vercel/next 4.15.33 → 4.15.35

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.
Files changed (2) hide show
  1. package/dist/index.js +5 -1
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -12251,7 +12251,10 @@ async function getPageLambdaGroups({
12251
12251
  }
12252
12252
  }
12253
12253
  let matchingGroup = experimentalAllowBundling ? void 0 : groups.find((group) => {
12254
- const matches = group.maxDuration === opts.maxDuration && group.memory === opts.memory && compareRegions(group.regions, opts.regions) && group.isPrerenders === isPrerenderRoute && group.isExperimentalPPR === isExperimentalPPR && JSON.stringify(group.experimentalTriggers) === JSON.stringify(opts.experimentalTriggers) && group.supportsCancellation === opts.supportsCancellation;
12254
+ const matches = group.maxDuration === opts.maxDuration && group.memory === opts.memory && compareRegions(group.regions, opts.regions) && compareRegions(
12255
+ group.functionFailoverRegions,
12256
+ opts.functionFailoverRegions
12257
+ ) && group.isPrerenders === isPrerenderRoute && group.isExperimentalPPR === isExperimentalPPR && JSON.stringify(group.experimentalTriggers) === JSON.stringify(opts.experimentalTriggers) && group.supportsCancellation === opts.supportsCancellation;
12255
12258
  if (matches) {
12256
12259
  let newTracedFilesUncompressedSize = group.pseudoLayerUncompressedBytes;
12257
12260
  for (const newPage of newPages) {
@@ -15233,6 +15236,7 @@ ${JSON.stringify(
15233
15236
  operationType,
15234
15237
  memory: group.memory,
15235
15238
  regions: group.regions,
15239
+ functionFailoverRegions: group.functionFailoverRegions,
15236
15240
  runtime: nodeVersion.runtime,
15237
15241
  maxDuration: group.maxDuration,
15238
15242
  supportsCancellation: group.supportsCancellation,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/next",
3
- "version": "4.15.33",
3
+ "version": "4.15.35",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index",
6
6
  "homepage": "https://vercel.com/docs/runtimes#official-runtimes/next-js",
@@ -53,8 +53,8 @@
53
53
  "test-listen": "1.1.0",
54
54
  "text-table": "0.2.0",
55
55
  "webpack-sources": "3.2.3",
56
- "@vercel/build-utils": "13.5.0",
57
- "@vercel/routing-utils": "5.3.3"
56
+ "@vercel/routing-utils": "6.0.0",
57
+ "@vercel/build-utils": "13.6.0"
58
58
  },
59
59
  "scripts": {
60
60
  "build": "node build.mjs",