@vercel/build-utils 13.29.0 → 13.29.1

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
+ ## 13.29.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 32a730e: Elevate maximum maxDuration to 1800s
8
+
3
9
  ## 13.29.0
4
10
 
5
11
  ### Minor Changes
package/dist/index.js CHANGED
@@ -38260,7 +38260,7 @@ function hasProp2(obj, key) {
38260
38260
  }
38261
38261
 
38262
38262
  // src/max-duration.ts
38263
- var DEFAULT_MAX_DURATION_LIMIT = 900;
38263
+ var DEFAULT_MAX_DURATION_LIMIT = 1800;
38264
38264
  var SKIP_MAX_DURATION_LIMIT_ENV = "VERCEL_CLI_SKIP_MAX_DURATION_LIMIT";
38265
38265
  function getMaxDurationLimit() {
38266
38266
  if (process.env[SKIP_MAX_DURATION_LIMIT_ENV] === "1") {
@@ -8,7 +8,7 @@
8
8
  * this client-side bound is intentionally coarse — it exists only to give fast
9
9
  * local feedback on obviously-invalid values.
10
10
  */
11
- export declare const DEFAULT_MAX_DURATION_LIMIT = 900;
11
+ export declare const DEFAULT_MAX_DURATION_LIMIT = 1800;
12
12
  /**
13
13
  * Internal env var used to skip the client-side `maxDuration` upper-bound check.
14
14
  * When set to `'1'`, the client-side maximum ({@link DEFAULT_MAX_DURATION_LIMIT})
@@ -24,7 +24,7 @@ __export(max_duration_exports, {
24
24
  getMaxDurationSchema: () => getMaxDurationSchema
25
25
  });
26
26
  module.exports = __toCommonJS(max_duration_exports);
27
- const DEFAULT_MAX_DURATION_LIMIT = 900;
27
+ const DEFAULT_MAX_DURATION_LIMIT = 1800;
28
28
  const SKIP_MAX_DURATION_LIMIT_ENV = "VERCEL_CLI_SKIP_MAX_DURATION_LIMIT";
29
29
  function getMaxDurationLimit() {
30
30
  if (process.env[SKIP_MAX_DURATION_LIMIT_ENV] === "1") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/build-utils",
3
- "version": "13.29.0",
3
+ "version": "13.29.1",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.js",