@netlify/build 30.0.4 → 30.0.5

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.
@@ -33,8 +33,8 @@ const coreStep = async function ({ logs, deployId, buildDir, packagePath, consta
33
33
  // If using the deploy config API or the Frameworks API, configure the store
34
34
  // to use the region that was configured for the deploy. We don't do it for
35
35
  // the legacy file-based upload API since that would be a breaking change.
36
- if (blobs.apiVersion > 1) {
37
- storeOpts.experimentalRegion = 'auto';
36
+ if (blobs.apiVersion === 1) {
37
+ storeOpts.region = 'us-east-2';
38
38
  }
39
39
  const blobStore = getDeployStore(storeOpts);
40
40
  const blobsToUpload = blobs.apiVersion >= 3 ? await getBlobs(blobs.directory) : await getKeysToUpload(blobs.directory);
@@ -34,8 +34,8 @@ const coreStep = async function ({ debug, logs, deployId, buildDir, quiet, packa
34
34
  // If using the deploy config API or the Frameworks API, configure the store
35
35
  // to use the region that was configured for the deploy. We don't do it for
36
36
  // the legacy file-based upload API since that would be a breaking change.
37
- if (blobs.apiVersion > 1) {
38
- storeOpts.experimentalRegion = 'auto';
37
+ if (blobs.apiVersion === 1) {
38
+ storeOpts.region = 'us-east-2';
39
39
  }
40
40
  const blobStore = getDeployStore(storeOpts);
41
41
  const blobsToUpload = blobs.apiVersion >= 3 ? await getBlobs(blobs.directory) : await getKeysToUpload(blobs.directory);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netlify/build",
3
- "version": "30.0.4",
3
+ "version": "30.0.5",
4
4
  "description": "Netlify build module",
5
5
  "type": "module",
6
6
  "exports": "./lib/index.js",
@@ -67,9 +67,9 @@
67
67
  "license": "MIT",
68
68
  "dependencies": {
69
69
  "@bugsnag/js": "^7.0.0",
70
- "@netlify/blobs": "^7.4.0",
70
+ "@netlify/blobs": "^8.1.1",
71
71
  "@netlify/cache-utils": "^5.2.0",
72
- "@netlify/config": "^21.0.3",
72
+ "@netlify/config": "^21.0.4",
73
73
  "@netlify/edge-bundler": "12.3.3",
74
74
  "@netlify/framework-info": "^9.9.2",
75
75
  "@netlify/functions-utils": "^5.3.13",
@@ -159,5 +159,5 @@
159
159
  "engines": {
160
160
  "node": "^14.16.0 || >=16.0.0"
161
161
  },
162
- "gitHead": "180306dc6d37736969b5fa951f8588c2c85e6109"
162
+ "gitHead": "61c3b009c7b1e16b32e06e1f783a5717106bae10"
163
163
  }