You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@vercel/build-utils

Package Overview
Dependencies
Maintainers
2
Versions
401
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vercel/build-utils - npm Package Compare versions

Comparing version
13.2.15
to
13.2.16
+8
-0
CHANGELOG.md
# @vercel/build-utils
## 13.2.16
### Patch Changes
- Add maxConcurrency to experimentalTriggers ([#14725](https://github.com/vercel/vercel/pull/14725))
- Add maxConcurrency trigger field ([#14725](https://github.com/vercel/vercel/pull/14725))
## 13.2.15

@@ -4,0 +12,0 @@

@@ -211,2 +211,12 @@ "use strict";

}
if (trigger.maxConcurrency !== void 0) {
(0, import_assert.default)(
typeof trigger.maxConcurrency === "number",
`${prefix}.maxConcurrency must be a number`
);
(0, import_assert.default)(
Number.isInteger(trigger.maxConcurrency) && trigger.maxConcurrency >= 1,
`${prefix}.maxConcurrency must be at least 1`
);
}
}

@@ -213,0 +223,0 @@ }

+4
-0

@@ -65,2 +65,6 @@ export declare const functionsSchema: {

};
maxConcurrency: {
type: string;
minimum: number;
};
};

@@ -67,0 +71,0 @@ required: string[];

@@ -51,2 +51,6 @@ "use strict";

minimum: 0
},
maxConcurrency: {
type: "number",
minimum: 1
}

@@ -53,0 +57,0 @@ },

@@ -551,2 +551,8 @@ /// <reference types="node" />

initialDelaySeconds?: number;
/**
* Maximum number of concurrent executions for this consumer (OPTIONAL)
* Must be at least 1 if specified.
* Behavior when not specified depends on the server's default configuration.
*/
maxConcurrency?: number;
}

@@ -553,0 +559,0 @@ export type ServiceRuntime = 'node' | 'python' | 'go' | 'rust' | 'ruby';

+1
-1
{
"name": "@vercel/build-utils",
"version": "13.2.15",
"version": "13.2.16",
"license": "Apache-2.0",

@@ -5,0 +5,0 @@ "main": "./dist/index.js",

Sorry, the diff of this file is too big to display