@vercel/build-utils 14.12.0 → 14.13.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @vercel/build-utils
2
2
 
3
+ ## 14.13.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 34b2c8e: Support `afterCacheBypass` rules in Build Output API `config.json`, preserving request and cached response header conditions through builds and deserialization.
8
+
3
9
  ## 14.12.0
4
10
 
5
11
  ### Minor Changes
@@ -13,6 +13,7 @@ export interface DeserializeBuildOutputConfig<TFlags = unknown> {
13
13
  wildcard?: BuildResultV2Typical['wildcard'];
14
14
  images?: BuildResultV2Typical['images'];
15
15
  routes?: BuildResultV2Typical['routes'];
16
+ afterCacheBypass?: BuildResultV2Typical['afterCacheBypass'];
16
17
  overrides?: Record<string, DeserializeBuildOutputPathOverride>;
17
18
  framework?: BuildResultV2Typical['framework'];
18
19
  crons?: BuildResultV2Typical['crons'];
@@ -282,6 +282,7 @@ async function deserializeBuildOutput(options) {
282
282
  crons: config.crons,
283
283
  flags: flags ? flags : config.flags,
284
284
  routes: config.routes,
285
+ afterCacheBypass: config.afterCacheBypass,
285
286
  output,
286
287
  framework,
287
288
  ...includeDeploymentId ? { deploymentId: config.deploymentId } : {},