@vercel/build-utils 13.22.0 → 13.23.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,21 @@
1
1
  # @vercel/build-utils
2
2
 
3
+ ## 13.23.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 22f77b9: Add project manifest to node builder.
8
+
9
+ ### Patch Changes
10
+
11
+ - 979d70a: [services] `services` schema support
12
+
13
+ ## 13.22.1
14
+
15
+ ### Patch Changes
16
+
17
+ - f0d7d32: Disable response streaming for lambdas with `awsLambdaHandler` set inside `getLambdaSupportsStreaming`. This closes a gap where non-Node builders (e.g. `@vercel/redwood`) constructed `NodejsLambda` with `awsLambdaHandler` but no explicit `supportsResponseStreaming`, causing `finalizeLambda` to silently flip streaming on for AWS custom handlers. With the gate now enforced centrally in `finalizeLambda`, the equivalent `@vercel/node` build-time check from #16266 is consolidated away — all builders go through the same gate.
18
+
3
19
  ## 13.22.0
4
20
 
5
21
  ### Minor Changes
package/dist/index.d.ts CHANGED
@@ -28,6 +28,7 @@ export { getOsRelease, getProvidedRuntime } from './os';
28
28
  export * from './should-serve';
29
29
  export * from './schemas';
30
30
  export * from './package-manifest';
31
+ export { generateProjectManifest } from './node-diagnostics';
31
32
  export * from './types';
32
33
  export * from './errors';
33
34
  export * from './trace';