@vercel/build-utils 6.7.3 → 6.7.4

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
+ ## 6.7.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Remove usage of `env` from Edge Functions and Middleware ([#10018](https://github.com/vercel/vercel/pull/10018))
8
+
3
9
  ## 6.7.3
4
10
 
5
11
  ### Patch Changes
@@ -21,11 +21,6 @@ export declare class EdgeFunction {
21
21
  * The list of files to be included in the edge function bundle.
22
22
  */
23
23
  files: Files;
24
- /**
25
- * Extra environment variables in use for the user code, to be
26
- * assigned to the edge function.
27
- */
28
- envVarsInUse?: string[];
29
24
  /**
30
25
  * Extra binary files to be included in the edge function
31
26
  */
@@ -11,7 +11,6 @@ class EdgeFunction {
11
11
  this.deploymentTarget = params.deploymentTarget;
12
12
  this.entrypoint = params.entrypoint;
13
13
  this.files = params.files;
14
- this.envVarsInUse = params.envVarsInUse;
15
14
  this.assets = params.assets;
16
15
  this.regions = params.regions;
17
16
  this.framework = params.framework;
package/dist/index.js CHANGED
@@ -28193,7 +28193,6 @@ class EdgeFunction {
28193
28193
  this.deploymentTarget = params.deploymentTarget;
28194
28194
  this.entrypoint = params.entrypoint;
28195
28195
  this.files = params.files;
28196
- this.envVarsInUse = params.envVarsInUse;
28197
28196
  this.assets = params.assets;
28198
28197
  this.regions = params.regions;
28199
28198
  this.framework = params.framework;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/build-utils",
3
- "version": "6.7.3",
3
+ "version": "6.7.4",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.js",