vercel 46.0.2 → 46.0.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.
Files changed (2) hide show
  1. package/dist/index.js +44 -2
  2. package/package.json +13 -13
package/dist/index.js CHANGED
@@ -47228,7 +47228,7 @@ var require_package = __commonJS2({
47228
47228
  "../client/package.json"(exports2, module2) {
47229
47229
  module2.exports = {
47230
47230
  name: "@vercel/client",
47231
- version: "15.3.14",
47231
+ version: "15.3.15",
47232
47232
  main: "dist/index.js",
47233
47233
  typings: "dist/index.d.ts",
47234
47234
  homepage: "https://vercel.com",
@@ -47267,7 +47267,7 @@ var require_package = __commonJS2({
47267
47267
  vitest: "2.0.1"
47268
47268
  },
47269
47269
  dependencies: {
47270
- "@vercel/build-utils": "11.0.1",
47270
+ "@vercel/build-utils": "11.0.2",
47271
47271
  "@vercel/error-utils": "2.0.3",
47272
47272
  "@vercel/microfrontends": "1.2.2",
47273
47273
  "@vercel/routing-utils": "5.1.1",
@@ -116551,6 +116551,26 @@ var require_frameworks = __commonJS2({
116551
116551
  detectors: {
116552
116552
  every: [{ matchPackage: "hono" }],
116553
116553
  some: [
116554
+ {
116555
+ path: "app.cjs",
116556
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']hono["']\\s*(?:\\))?`
116557
+ },
116558
+ {
116559
+ path: "app.js",
116560
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']hono["']\\s*(?:\\))?`
116561
+ },
116562
+ {
116563
+ path: "app.mjs",
116564
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']hono["']\\s*(?:\\))?`
116565
+ },
116566
+ {
116567
+ path: "app.mts",
116568
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']hono["']\\s*(?:\\))?`
116569
+ },
116570
+ {
116571
+ path: "app.ts",
116572
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']hono["']\\s*(?:\\))?`
116573
+ },
116554
116574
  {
116555
116575
  path: "index.cjs",
116556
116576
  matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']hono["']\\s*(?:\\))?`
@@ -116653,6 +116673,26 @@ var require_frameworks = __commonJS2({
116653
116673
  detectors: {
116654
116674
  every: [{ matchPackage: "express" }],
116655
116675
  some: [
116676
+ {
116677
+ path: "app.cjs",
116678
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']express["']\\s*(?:\\))?`
116679
+ },
116680
+ {
116681
+ path: "app.js",
116682
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']express["']\\s*(?:\\))?`
116683
+ },
116684
+ {
116685
+ path: "app.mjs",
116686
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']express["']\\s*(?:\\))?`
116687
+ },
116688
+ {
116689
+ path: "app.mts",
116690
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']express["']\\s*(?:\\))?`
116691
+ },
116692
+ {
116693
+ path: "app.ts",
116694
+ matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']express["']\\s*(?:\\))?`
116695
+ },
116656
116696
  {
116657
116697
  path: "index.cjs",
116658
116698
  matchContent: `(?:from|require|import)\\s*(?:\\(\\s*)?["']express["']\\s*(?:\\))?`
@@ -144336,6 +144376,7 @@ async function writeLambda(repoRootPath, outputDir, lambda, path11, functionConf
144336
144376
  const memory = functionConfiguration?.memory ?? lambda.memory;
144337
144377
  const maxDuration = functionConfiguration?.maxDuration ?? lambda.maxDuration;
144338
144378
  const experimentalTriggers = functionConfiguration?.experimentalTriggers ?? lambda.experimentalTriggers;
144379
+ const supportsCancellation = functionConfiguration?.supportsCancellation ?? lambda.supportsCancellation;
144339
144380
  const config2 = {
144340
144381
  ...lambda,
144341
144382
  handler: (0, import_build_utils11.normalizePath)(lambda.handler),
@@ -144343,6 +144384,7 @@ async function writeLambda(repoRootPath, outputDir, lambda, path11, functionConf
144343
144384
  memory,
144344
144385
  maxDuration,
144345
144386
  experimentalTriggers,
144387
+ supportsCancellation,
144346
144388
  filePathMap,
144347
144389
  type: void 0,
144348
144390
  files: void 0,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vercel",
3
- "version": "46.0.2",
3
+ "version": "46.0.4",
4
4
  "preferGlobal": true,
5
5
  "license": "Apache-2.0",
6
6
  "description": "The command-line interface for Vercel",
@@ -22,19 +22,19 @@
22
22
  },
23
23
  "dependencies": {
24
24
  "@vercel/blob": "1.0.2",
25
- "@vercel/build-utils": "11.0.1",
25
+ "@vercel/build-utils": "11.0.2",
26
26
  "@vercel/fun": "1.1.6",
27
27
  "@vercel/go": "3.2.3",
28
- "@vercel/express": "0.0.6",
29
- "@vercel/hono": "0.0.14",
28
+ "@vercel/express": "0.0.8",
29
+ "@vercel/hono": "0.0.16",
30
30
  "@vercel/hydrogen": "1.2.3",
31
- "@vercel/next": "4.11.3",
32
- "@vercel/node": "5.3.13",
31
+ "@vercel/next": "4.12.1",
32
+ "@vercel/node": "5.3.15",
33
33
  "@vercel/python": "5.0.0",
34
- "@vercel/redwood": "2.3.4",
35
- "@vercel/remix-builder": "5.4.10",
34
+ "@vercel/redwood": "2.3.5",
35
+ "@vercel/remix-builder": "5.4.11",
36
36
  "@vercel/ruby": "2.2.1",
37
- "@vercel/static-build": "2.7.18",
37
+ "@vercel/static-build": "2.7.19",
38
38
  "chokidar": "4.0.0",
39
39
  "jose": "5.9.6"
40
40
  },
@@ -81,11 +81,11 @@
81
81
  "@types/which": "3.0.0",
82
82
  "@types/write-json-file": "2.2.1",
83
83
  "@types/yauzl-promise": "2.1.0",
84
- "@vercel/client": "15.3.14",
84
+ "@vercel/client": "15.3.15",
85
85
  "@vercel/detect-agent": "0.2.0",
86
86
  "@vercel/error-utils": "2.0.3",
87
- "@vercel/frameworks": "3.8.0",
88
- "@vercel/fs-detectors": "5.4.14",
87
+ "@vercel/frameworks": "3.8.1",
88
+ "@vercel/fs-detectors": "5.4.15",
89
89
  "@vercel/routing-utils": "5.1.1",
90
90
  "@vitest/expect": "2.1.3",
91
91
  "ajv": "6.12.3",
@@ -165,8 +165,8 @@
165
165
  "write-json-file": "2.2.0",
166
166
  "xdg-app-paths": "5.1.0",
167
167
  "yauzl-promise": "2.1.3",
168
- "@vercel-internals/get-package-json": "1.0.0",
169
168
  "@vercel-internals/constants": "1.0.4",
169
+ "@vercel-internals/get-package-json": "1.0.0",
170
170
  "@vercel-internals/types": "3.0.6"
171
171
  },
172
172
  "scripts": {