@vercel/build-utils 14.9.0 → 14.9.2

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,17 @@
1
1
  # @vercel/build-utils
2
2
 
3
+ ## 14.9.2
4
+
5
+ ### Patch Changes
6
+
7
+ - b174f14: Raise the client-side `maxDuration` validation limit to 3600 seconds.
8
+
9
+ ## 14.9.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 1817491: Delay the pnpm 11 created-at default so unpinned lockfile 9.0 projects stay on pnpm 10. pnpm 11's default `minimumReleaseAge` of 1 day was breaking installs of freshly published packages. Explicit `packageManager` / `devEngines` pins to pnpm 11 are unchanged.
14
+
3
15
  ## 14.9.0
4
16
 
5
17
  ### Minor Changes
@@ -815,7 +815,7 @@ To use a different version, set package.json#packageManager or package.json#devE
815
815
  return newEnv;
816
816
  }
817
817
  const PNPM_10_PREFERRED_AT = /* @__PURE__ */ new Date("2025-02-27T20:00:00Z");
818
- const PNPM_11_PREFERRED_AT = /* @__PURE__ */ new Date("2026-08-19T20:00:00Z");
818
+ const PNPM_11_PREFERRED_AT = /* @__PURE__ */ new Date("2027-03-01T20:00:00Z");
819
819
  const INSTALLED_PNPM_MAJORS = [12, 11, 10, 9, 8, 7, 6];
820
820
  function pnpmPathOverride(major) {
821
821
  return {
package/dist/index.js CHANGED
@@ -37454,7 +37454,7 @@ To use a different version, set package.json#packageManager or package.json#devE
37454
37454
  return newEnv;
37455
37455
  }
37456
37456
  var PNPM_10_PREFERRED_AT = /* @__PURE__ */ new Date("2025-02-27T20:00:00Z");
37457
- var PNPM_11_PREFERRED_AT = /* @__PURE__ */ new Date("2026-08-19T20:00:00Z");
37457
+ var PNPM_11_PREFERRED_AT = /* @__PURE__ */ new Date("2027-03-01T20:00:00Z");
37458
37458
  var INSTALLED_PNPM_MAJORS = [12, 11, 10, 9, 8, 7, 6];
37459
37459
  function pnpmPathOverride(major) {
37460
37460
  return {
@@ -38426,7 +38426,7 @@ function hasProp2(obj, key) {
38426
38426
  }
38427
38427
 
38428
38428
  // src/max-duration.ts
38429
- var DEFAULT_MAX_DURATION_LIMIT = 1800;
38429
+ var DEFAULT_MAX_DURATION_LIMIT = 3600;
38430
38430
  var SKIP_MAX_DURATION_LIMIT_ENV = "VERCEL_CLI_SKIP_MAX_DURATION_LIMIT";
38431
38431
  function getMaxDurationLimit() {
38432
38432
  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 = 1800;
11
+ export declare const DEFAULT_MAX_DURATION_LIMIT = 3600;
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 = 1800;
27
+ const DEFAULT_MAX_DURATION_LIMIT = 3600;
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": "14.9.0",
3
+ "version": "14.9.2",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.js",
@@ -52,8 +52,8 @@
52
52
  "vitest": "4.1.10",
53
53
  "typescript": "4.9.5",
54
54
  "yazl": "2.5.1",
55
- "@vercel/routing-utils": "6.5.0",
56
- "@vercel/error-utils": "2.2.1"
55
+ "@vercel/error-utils": "2.2.1",
56
+ "@vercel/routing-utils": "6.5.0"
57
57
  },
58
58
  "scripts": {
59
59
  "build": "node build.mjs",