vercel 48.10.1 → 48.10.3

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 +121 -62
  2. package/package.json +5 -6
package/dist/index.js CHANGED
@@ -49730,7 +49730,7 @@ var require_package = __commonJS2({
49730
49730
  "../client/package.json"(exports2, module2) {
49731
49731
  module2.exports = {
49732
49732
  name: "@vercel/client",
49733
- version: "17.2.4",
49733
+ version: "17.2.5",
49734
49734
  main: "dist/index.js",
49735
49735
  typings: "dist/index.d.ts",
49736
49736
  homepage: "https://vercel.com",
@@ -58237,8 +58237,8 @@ var require_utils14 = __commonJS2({
58237
58237
  return ignored;
58238
58238
  };
58239
58239
  fileList = await (0, import_readdir_recursive.default)(path11, [ignores2]);
58240
+ const refs = /* @__PURE__ */ new Set();
58240
58241
  if (prebuilt) {
58241
- const refs = /* @__PURE__ */ new Set();
58242
58242
  const vcConfigFilePaths = fileList.filter(
58243
58243
  (file) => (0, import_path41.basename)(file) === ".vc-config.json"
58244
58244
  );
@@ -58271,9 +58271,19 @@ var require_utils14 = __commonJS2({
58271
58271
  } catch (e2) {
58272
58272
  debug2(`Error detecting microfrontend config: ${e2}`);
58273
58273
  }
58274
- if (refs.size > 0) {
58275
- fileList = fileList.concat(Array.from(refs));
58274
+ }
58275
+ try {
58276
+ const routesJsonPath = (0, import_path41.join)(path11, ".vercel", "routes.json");
58277
+ const routesJsonContent = await maybeRead(routesJsonPath, null);
58278
+ if (routesJsonContent !== null) {
58279
+ refs.add(routesJsonPath);
58280
+ debug2("Including .vercel/routes.json in deployment");
58276
58281
  }
58282
+ } catch (e2) {
58283
+ debug2(`Error checking for .vercel/routes.json: ${e2}`);
58284
+ }
58285
+ if (refs.size > 0) {
58286
+ fileList = fileList.concat(Array.from(refs));
58277
58287
  }
58278
58288
  debug2(`Found ${fileList.length} files in the specified directory`);
58279
58289
  } else if (Array.isArray(path11)) {
@@ -146351,29 +146361,42 @@ var init_unzip = __esm({
146351
146361
  });
146352
146362
 
146353
146363
  // src/util/build/write-build-result.ts
146354
- async function writeBuildResult(repoRootPath, outputDir, buildResult, build2, builder, builderPkg, vercelConfig, standalone = false) {
146364
+ async function writeBuildResult(args2) {
146365
+ const {
146366
+ repoRootPath,
146367
+ outputDir,
146368
+ buildResult,
146369
+ build: build2,
146370
+ builder,
146371
+ builderPkg,
146372
+ vercelConfig,
146373
+ standalone,
146374
+ workPath
146375
+ } = args2;
146355
146376
  let version2 = builder.version;
146356
146377
  if ((0, import_build_utils11.isExperimentalBackendsEnabled)() && "output" in buildResult) {
146357
146378
  version2 = 2;
146358
146379
  }
146359
146380
  if (typeof version2 !== "number" || version2 === 2) {
146360
- return writeBuildResultV2(
146381
+ return writeBuildResultV2({
146361
146382
  repoRootPath,
146362
146383
  outputDir,
146363
146384
  buildResult,
146364
- build2,
146385
+ build: build2,
146365
146386
  vercelConfig,
146366
- standalone
146367
- );
146387
+ standalone,
146388
+ workPath
146389
+ });
146368
146390
  } else if (version2 === 3) {
146369
- return writeBuildResultV3(
146391
+ return writeBuildResultV3({
146370
146392
  repoRootPath,
146371
146393
  outputDir,
146372
146394
  buildResult,
146373
- build2,
146395
+ build: build2,
146374
146396
  vercelConfig,
146375
- standalone
146376
- );
146397
+ standalone,
146398
+ workPath
146399
+ });
146377
146400
  }
146378
146401
  throw new Error(
146379
146402
  `Unsupported Builder version \`${version2}\` from "${builderPkg.name}"`
@@ -146395,7 +146418,15 @@ function isFile(v) {
146395
146418
  function stripDuplicateSlashes(path11) {
146396
146419
  return normalize2(path11).replace(/(^\/|\/$)/g, "");
146397
146420
  }
146398
- async function writeBuildResultV2(repoRootPath, outputDir, buildResult, build2, vercelConfig, standalone = false) {
146421
+ async function writeBuildResultV2(args2) {
146422
+ const {
146423
+ repoRootPath,
146424
+ outputDir,
146425
+ buildResult,
146426
+ build: build2,
146427
+ vercelConfig,
146428
+ standalone
146429
+ } = args2;
146399
146430
  if ("buildOutputPath" in buildResult) {
146400
146431
  await mergeBuilderOutput(outputDir, buildResult);
146401
146432
  return;
@@ -146497,9 +146528,18 @@ async function writeBuildResultV2(repoRootPath, outputDir, buildResult, build2,
146497
146528
  }
146498
146529
  return Object.keys(overrides).length > 0 ? overrides : void 0;
146499
146530
  }
146500
- async function writeBuildResultV3(repoRootPath, outputDir, buildResult, build2, vercelConfig, standalone = false) {
146531
+ async function writeBuildResultV3(args2) {
146532
+ const {
146533
+ repoRootPath,
146534
+ outputDir,
146535
+ buildResult,
146536
+ build: build2,
146537
+ vercelConfig,
146538
+ standalone,
146539
+ workPath
146540
+ } = args2;
146501
146541
  const { output: output2 } = buildResult;
146502
- const routesJsonPath = (0, import_path21.join)(outputDir, "..", "routes.json");
146542
+ const routesJsonPath = (0, import_path21.join)(workPath, ".vercel", "routes.json");
146503
146543
  if ((0, import_build_utils11.isBackendBuilder)(build2) && (0, import_fs_extra12.existsSync)(routesJsonPath)) {
146504
146544
  try {
146505
146545
  const newOutput = {
@@ -146516,14 +146556,15 @@ async function writeBuildResultV3(repoRootPath, outputDir, buildResult, build2,
146516
146556
  }
146517
146557
  }
146518
146558
  }
146519
- return writeBuildResultV2(
146559
+ return writeBuildResultV2({
146520
146560
  repoRootPath,
146521
146561
  outputDir,
146522
- { output: newOutput, routes: buildResult.routes },
146523
- build2,
146562
+ buildResult: { output: newOutput, routes: buildResult.routes },
146563
+ build: build2,
146524
146564
  vercelConfig,
146525
- standalone
146526
- );
146565
+ standalone,
146566
+ workPath
146567
+ });
146527
146568
  } catch (error3) {
146528
146569
  output_manager_default.error(`Failed to read routes.json: ${error3}`);
146529
146570
  }
@@ -148819,7 +148860,7 @@ async function doBuild(client2, project, buildsJson, cwd, outputDir, span, stand
148819
148860
  }
148820
148861
  }
148821
148862
  if ("output" in buildResult && buildResult.output && (0, import_build_utils13.isBackendBuilder)(build2)) {
148822
- const routesJsonPath = (0, import_path27.join)(outputDir, "..", "routes.json");
148863
+ const routesJsonPath = (0, import_path27.join)(workPath, ".vercel", "routes.json");
148823
148864
  if ((0, import_fs_extra18.existsSync)(routesJsonPath)) {
148824
148865
  try {
148825
148866
  const routesJson = await readJSONFile(routesJsonPath);
@@ -148862,16 +148903,17 @@ async function doBuild(client2, project, buildsJson, cwd, outputDir, span, stand
148862
148903
  builderSpan.child("vc.builder.writeBuildResult", {
148863
148904
  buildOutputLength: String(buildOutputLength)
148864
148905
  }).trace(
148865
- () => writeBuildResult(
148906
+ () => writeBuildResult({
148866
148907
  repoRootPath,
148867
148908
  outputDir,
148868
148909
  buildResult,
148869
- build2,
148910
+ build: build2,
148870
148911
  builder,
148871
148912
  builderPkg,
148872
- localConfig,
148873
- standalone
148874
- )
148913
+ vercelConfig: localConfig,
148914
+ standalone,
148915
+ workPath
148916
+ })
148875
148917
  ).then(
148876
148918
  (override) => {
148877
148919
  if (override)
@@ -158007,12 +158049,12 @@ var require_requires_port = __commonJS2({
158007
158049
  }
158008
158050
  });
158009
158051
 
158010
- // ../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/lib/http-proxy/common.js
158052
+ // ../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/lib/http-proxy/common.js
158011
158053
  var require_common12 = __commonJS2({
158012
- "../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/lib/http-proxy/common.js"(exports2) {
158054
+ "../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/lib/http-proxy/common.js"(exports2) {
158013
158055
  var common2 = exports2;
158014
158056
  var url3 = require("url");
158015
- var extend = require("util")._extend;
158057
+ var extend = Object.assign;
158016
158058
  var required = require_requires_port();
158017
158059
  var upgradeHeader = /(^|,)\s*upgrade\s*($|,)/i;
158018
158060
  var isSSL = /^https|wss/;
@@ -158081,13 +158123,17 @@ var require_common12 = __commonJS2({
158081
158123
  return Boolean(req.connection.encrypted || req.connection.pair);
158082
158124
  };
158083
158125
  common2.urlJoin = function() {
158084
- var args2 = Array.prototype.slice.call(arguments), lastIndex = args2.length - 1, last = args2[lastIndex], lastSegs = last.split("?"), retSegs;
158085
- args2[lastIndex] = lastSegs.shift();
158086
- retSegs = [
158087
- args2.filter(Boolean).join("/").replace(/\/+/g, "/").replace("http:/", "http://").replace("https:/", "https://")
158088
- ];
158089
- retSegs.push.apply(retSegs, lastSegs);
158090
- return retSegs.join("?");
158126
+ var args2 = Array.prototype.slice.call(arguments), queryParams = [], queryParamRaw = "", retSegs;
158127
+ args2.forEach((url4, index) => {
158128
+ var qpStart = url4.indexOf("?");
158129
+ if (qpStart !== -1) {
158130
+ queryParams.push(url4.substring(qpStart + 1));
158131
+ args2[index] = url4.substring(0, qpStart);
158132
+ }
158133
+ });
158134
+ queryParamRaw = queryParams.filter(Boolean).join("&");
158135
+ retSegs = args2.filter(Boolean).join("/").replace(/\/+/g, "/").replace("http:/", "http://").replace("https:/", "https://");
158136
+ return queryParamRaw ? retSegs + "?" + queryParamRaw : retSegs;
158091
158137
  };
158092
158138
  common2.rewriteCookieProperty = function rewriteCookieProperty(header, config2, property) {
158093
158139
  if (Array.isArray(header)) {
@@ -158117,9 +158163,9 @@ var require_common12 = __commonJS2({
158117
158163
  }
158118
158164
  });
158119
158165
 
158120
- // ../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/lib/http-proxy/passes/web-outgoing.js
158166
+ // ../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/lib/http-proxy/passes/web-outgoing.js
158121
158167
  var require_web_outgoing = __commonJS2({
158122
- "../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/lib/http-proxy/passes/web-outgoing.js"(exports2, module2) {
158168
+ "../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/lib/http-proxy/passes/web-outgoing.js"(exports2, module2) {
158123
158169
  var url3 = require("url");
158124
158170
  var common2 = require_common12();
158125
158171
  var redirectRegex = /^201|30(1|2|7|8)$/;
@@ -159331,9 +159377,9 @@ var require_follow_redirects = __commonJS2({
159331
159377
  }
159332
159378
  });
159333
159379
 
159334
- // ../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/lib/http-proxy/passes/web-incoming.js
159380
+ // ../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/lib/http-proxy/passes/web-incoming.js
159335
159381
  var require_web_incoming = __commonJS2({
159336
- "../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/lib/http-proxy/passes/web-incoming.js"(exports2, module2) {
159382
+ "../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/lib/http-proxy/passes/web-incoming.js"(exports2, module2) {
159337
159383
  var httpNative = require("http");
159338
159384
  var httpsNative = require("https");
159339
159385
  var web_o = require_web_outgoing();
@@ -159343,6 +159389,10 @@ var require_web_incoming = __commonJS2({
159343
159389
  return web_o[pass];
159344
159390
  });
159345
159391
  var nativeAgents = { http: httpNative, https: httpsNative };
159392
+ var supportsAbortedEvent = function() {
159393
+ var ver = process.versions.node.split(".").map(Number);
159394
+ return ver[0] <= 14 || ver[0] === 15 && ver[1] <= 4;
159395
+ }();
159346
159396
  module2.exports = {
159347
159397
  /**
159348
159398
  * Sets `content-length` to '0' if request is of DELETE type.
@@ -159437,9 +159487,18 @@ var require_web_incoming = __commonJS2({
159437
159487
  proxyReq.abort();
159438
159488
  });
159439
159489
  }
159440
- req.on("aborted", function() {
159441
- proxyReq.abort();
159442
- });
159490
+ if (supportsAbortedEvent) {
159491
+ req.on("aborted", function() {
159492
+ proxyReq.abort();
159493
+ });
159494
+ } else {
159495
+ res.on("close", function() {
159496
+ var aborted = !res.writableFinished;
159497
+ if (aborted) {
159498
+ proxyReq.abort();
159499
+ }
159500
+ });
159501
+ }
159443
159502
  var proxyError = createErrorHandler(proxyReq, options.target);
159444
159503
  req.on("error", proxyError);
159445
159504
  proxyReq.on("error", proxyError);
@@ -159485,9 +159544,9 @@ var require_web_incoming = __commonJS2({
159485
159544
  }
159486
159545
  });
159487
159546
 
159488
- // ../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/lib/http-proxy/passes/ws-incoming.js
159547
+ // ../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/lib/http-proxy/passes/ws-incoming.js
159489
159548
  var require_ws_incoming = __commonJS2({
159490
- "../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/lib/http-proxy/passes/ws-incoming.js"(exports2, module2) {
159549
+ "../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/lib/http-proxy/passes/ws-incoming.js"(exports2, module2) {
159491
159550
  var http3 = require("http");
159492
159551
  var https = require("https");
159493
159552
  var common2 = require_common12();
@@ -159578,7 +159637,7 @@ var require_ws_incoming = __commonJS2({
159578
159637
  server.emit("close", proxyRes, proxySocket, proxyHead);
159579
159638
  });
159580
159639
  socket.on("error", function() {
159581
- proxySocket.end();
159640
+ proxySocket.destroy();
159582
159641
  });
159583
159642
  common2.setupSocket(proxySocket);
159584
159643
  if (proxyHead && proxyHead.length)
@@ -159602,11 +159661,11 @@ var require_ws_incoming = __commonJS2({
159602
159661
  }
159603
159662
  });
159604
159663
 
159605
- // ../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/lib/http-proxy/index.js
159664
+ // ../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/lib/http-proxy/index.js
159606
159665
  var require_http_proxy = __commonJS2({
159607
- "../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/lib/http-proxy/index.js"(exports2, module2) {
159666
+ "../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/lib/http-proxy/index.js"(exports2, module2) {
159608
159667
  var httpProxy2 = module2.exports;
159609
- var extend = require("util")._extend;
159668
+ var extend = Object.assign;
159610
159669
  var parse_url = require("url").parse;
159611
159670
  var EE3 = require_eventemitter3();
159612
159671
  var http3 = require("http");
@@ -159723,9 +159782,9 @@ var require_http_proxy = __commonJS2({
159723
159782
  }
159724
159783
  });
159725
159784
 
159726
- // ../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/lib/http-proxy.js
159785
+ // ../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/lib/http-proxy.js
159727
159786
  var require_http_proxy2 = __commonJS2({
159728
- "../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/lib/http-proxy.js"(exports2, module2) {
159787
+ "../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/lib/http-proxy.js"(exports2, module2) {
159729
159788
  var ProxyServer = require_http_proxy().Server;
159730
159789
  function createProxyServer(options) {
159731
159790
  return new ProxyServer(options);
@@ -159737,9 +159796,9 @@ var require_http_proxy2 = __commonJS2({
159737
159796
  }
159738
159797
  });
159739
159798
 
159740
- // ../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/index.js
159741
- var require_http_proxy3 = __commonJS2({
159742
- "../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/index.js"(exports2, module2) {
159799
+ // ../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/index.js
159800
+ var require_http_proxy_node16 = __commonJS2({
159801
+ "../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/index.js"(exports2, module2) {
159743
159802
  module2.exports = require_http_proxy2();
159744
159803
  }
159745
159804
  });
@@ -171056,7 +171115,7 @@ function buildMatchEquals(a, b) {
171056
171115
  return false;
171057
171116
  return true;
171058
171117
  }
171059
- var import_url15, import_http3, import_fs_extra21, import_ms13, import_chalk70, import_node_fetch6, import_pluralize9, import_raw_body, import_async_listen3, import_minimatch4, import_http_proxy, import_crypto2, import_serve_handler, import_chokidar, import_dotenv2, import_path35, import_once, import_directory, import_get_port, import_is_port_reachable, import_fast_deep_equal, import_npm_package_arg2, import_json_parse_better_errors3, import_client12, import_routing_utils5, import_build_utils17, import_fs_detectors6, import_frameworks6, import_error_utils21, frontendRuntimeSet, DEV_SERVER_PORT_BIND_TIMEOUT, DevServer;
171118
+ var import_url15, import_http3, import_fs_extra21, import_ms13, import_chalk70, import_node_fetch6, import_pluralize9, import_raw_body, import_async_listen3, import_minimatch4, import_http_proxy_node16, import_crypto2, import_serve_handler, import_chokidar, import_dotenv2, import_path35, import_once, import_directory, import_get_port, import_is_port_reachable, import_fast_deep_equal, import_npm_package_arg2, import_json_parse_better_errors3, import_client12, import_routing_utils5, import_build_utils17, import_fs_detectors6, import_frameworks6, import_error_utils21, frontendRuntimeSet, DEV_SERVER_PORT_BIND_TIMEOUT, DevServer;
171060
171119
  var init_server = __esm({
171061
171120
  "src/util/dev/server.ts"() {
171062
171121
  "use strict";
@@ -171070,7 +171129,7 @@ var init_server = __esm({
171070
171129
  import_raw_body = __toESM3(require_raw_body());
171071
171130
  import_async_listen3 = __toESM3(require_dist6());
171072
171131
  import_minimatch4 = __toESM3(require_minimatch2());
171073
- import_http_proxy = __toESM3(require_http_proxy3());
171132
+ import_http_proxy_node16 = __toESM3(require_http_proxy_node16());
171074
171133
  import_crypto2 = require("crypto");
171075
171134
  import_serve_handler = __toESM3(require_src4());
171076
171135
  import_chokidar = require("chokidar");
@@ -171774,7 +171833,7 @@ Please ensure that ${cmd(err.path)} is properly installed`;
171774
171833
  this.caseSensitive = false;
171775
171834
  this.apiDir = null;
171776
171835
  this.apiExtensions = /* @__PURE__ */ new Set();
171777
- this.proxy = import_http_proxy.default.createProxyServer({
171836
+ this.proxy = import_http_proxy_node16.default.createProxyServer({
171778
171837
  changeOrigin: true,
171779
171838
  ws: true,
171780
171839
  xfwd: true
@@ -189187,7 +189246,7 @@ raw-body/index.js:
189187
189246
  * MIT Licensed
189188
189247
  *)
189189
189248
 
189190
- http-proxy/lib/http-proxy/passes/web-outgoing.js:
189249
+ http-proxy-node16/lib/http-proxy/passes/web-outgoing.js:
189191
189250
  (*!
189192
189251
  * Array of passes.
189193
189252
  *
@@ -189196,7 +189255,7 @@ http-proxy/lib/http-proxy/passes/web-outgoing.js:
189196
189255
  * flexible.
189197
189256
  *)
189198
189257
 
189199
- http-proxy/lib/http-proxy/passes/web-incoming.js:
189258
+ http-proxy-node16/lib/http-proxy/passes/web-incoming.js:
189200
189259
  (*!
189201
189260
  * Array of passes.
189202
189261
  *
@@ -189205,7 +189264,7 @@ http-proxy/lib/http-proxy/passes/web-incoming.js:
189205
189264
  * flexible.
189206
189265
  *)
189207
189266
 
189208
- http-proxy/lib/http-proxy/passes/ws-incoming.js:
189267
+ http-proxy-node16/lib/http-proxy/passes/ws-incoming.js:
189209
189268
  (*!
189210
189269
  * Array of passes.
189211
189270
  *
@@ -189214,7 +189273,7 @@ http-proxy/lib/http-proxy/passes/ws-incoming.js:
189214
189273
  * flexible.
189215
189274
  *)
189216
189275
 
189217
- http-proxy/index.js:
189276
+ http-proxy-node16/index.js:
189218
189277
  (*!
189219
189278
  * Caron dimonio, con occhi di bragia
189220
189279
  * loro accennando, tutte le raccoglie;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vercel",
3
- "version": "48.10.1",
3
+ "version": "48.10.3",
4
4
  "preferGlobal": true,
5
5
  "license": "Apache-2.0",
6
6
  "description": "The command-line interface for Vercel",
@@ -26,7 +26,7 @@
26
26
  "@vercel/fun": "1.1.6",
27
27
  "@vercel/go": "3.2.3",
28
28
  "@vercel/elysia": "0.1.4",
29
- "@vercel/express": "0.1.7",
29
+ "@vercel/express": "0.1.8",
30
30
  "@vercel/fastify": "0.1.7",
31
31
  "@vercel/hono": "0.2.7",
32
32
  "@vercel/h3": "0.1.13",
@@ -41,7 +41,7 @@
41
41
  "chokidar": "4.0.0",
42
42
  "jose": "5.9.6",
43
43
  "@vercel/detect-agent": "1.0.0",
44
- "@vercel/backends": "0.0.7"
44
+ "@vercel/backends": "0.0.8"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@alex_neo/jest-expect-message": "1.0.5",
@@ -63,7 +63,6 @@
63
63
  "@types/dotenv": "6.1.1",
64
64
  "@types/escape-html": "0.0.20",
65
65
  "@types/fs-extra": "9.0.13",
66
- "@types/http-proxy": "1.16.2",
67
66
  "@types/ini": "1.3.31",
68
67
  "@types/jest": "27.4.1",
69
68
  "@types/jest-expect-message": "1.0.3",
@@ -86,7 +85,7 @@
86
85
  "@types/which": "3.0.0",
87
86
  "@types/write-json-file": "2.2.1",
88
87
  "@types/yauzl-promise": "2.1.0",
89
- "@vercel/client": "17.2.4",
88
+ "@vercel/client": "17.2.5",
90
89
  "@vercel/error-utils": "2.0.3",
91
90
  "@vercel/frameworks": "3.15.3",
92
91
  "@vercel/fs-detectors": "5.7.6",
@@ -122,7 +121,7 @@
122
121
  "fs-extra": "10.0.0",
123
122
  "get-port": "5.1.1",
124
123
  "git-last-commit": "1.0.1",
125
- "http-proxy": "1.18.1",
124
+ "http-proxy-node16": "1.0.6",
126
125
  "ini": "3.0.0",
127
126
  "is-docker": "2.2.1",
128
127
  "is-port-reachable": "3.1.0",