vercel-cli 48.6.7__py3-none-any.whl → 48.8.0__py3-none-any.whl

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.

Potentially problematic release.


This version of vercel-cli might be problematic. Click here for more details.

@@ -3,9 +3,9 @@
3
3
  "requires": true,
4
4
  "packages": {
5
5
  "node_modules/@vercel/build-utils": {
6
- "version": "12.2.2",
7
- "resolved": "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-12.2.2.tgz",
8
- "integrity": "sha512-6AQL0YT6la3/j9xh4vyYfyEKbRQ8asikAX1EWasiZqhRcFSstM4zbqkez5B+SpDK8y+Kh7yz9sz/dkBTW4Xtqg==",
6
+ "version": "12.2.3",
7
+ "resolved": "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-12.2.3.tgz",
8
+ "integrity": "sha512-0g63aF8J7dLYW3PYenxig6gG4PuW3/Gy3PmLXjyX2KwTNrvfIwynKZpJf/naSVSpeN49VbROlxrvaVXVgjlC0A==",
9
9
  "license": "Apache-2.0"
10
10
  },
11
11
  "node_modules/@vercel/detect-agent": {
@@ -18,9 +18,9 @@
18
18
  }
19
19
  },
20
20
  "node_modules/@vercel/python": {
21
- "version": "5.0.10",
22
- "resolved": "https://registry.npmjs.org/@vercel/python/-/python-5.0.10.tgz",
23
- "integrity": "sha512-ZtTH/s2PIdzgN54n0XmB2x1sQZconOR3U1wIGFUc27HQvk+Zzl2YmqId+8HDURhvRjTyGlxZtkjHI6RZU8D0xw==",
21
+ "version": "6.0.0",
22
+ "resolved": "https://registry.npmjs.org/@vercel/python/-/python-6.0.0.tgz",
23
+ "integrity": "sha512-55lsI1LsnTyfKaFmYWb/1qnEG69oA5tvCGDsRFNYGDc5Z9lKOzABIwVVuFK1IpTkXL00AnQFlgq8ni0iGFfBQQ==",
24
24
  "license": "Apache-2.0"
25
25
  }
26
26
  }
@@ -1,5 +1,11 @@
1
1
  # @vercel/build-utils
2
2
 
3
+ ## 12.2.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Add Elysia framework ([#14164](https://github.com/vercel/vercel/pull/14164))
8
+
3
9
  ## 12.2.2
4
10
 
5
11
  ### Patch Changes
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * List of backend frameworks supported by the experimental backends feature
3
3
  */
4
- export declare const BACKEND_FRAMEWORKS: readonly ["express", "hono", "h3", "nestjs", "fastify"];
4
+ export declare const BACKEND_FRAMEWORKS: readonly ["express", "hono", "h3", "nestjs", "fastify", "elysia"];
5
5
  export type BackendFramework = (typeof BACKEND_FRAMEWORKS)[number];
6
6
  /**
7
7
  * Checks if the given framework is a backend framework
@@ -29,7 +29,8 @@ const BACKEND_FRAMEWORKS = [
29
29
  "hono",
30
30
  "h3",
31
31
  "nestjs",
32
- "fastify"
32
+ "fastify",
33
+ "elysia"
33
34
  ];
34
35
  function isBackendFramework(framework) {
35
36
  if (!framework)
@@ -24782,7 +24782,8 @@ var BACKEND_FRAMEWORKS = [
24782
24782
  "hono",
24783
24783
  "h3",
24784
24784
  "nestjs",
24785
- "fastify"
24785
+ "fastify",
24786
+ "elysia"
24786
24787
  ];
24787
24788
  function isBackendFramework(framework) {
24788
24789
  if (!framework)
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/build-utils",
3
- "version": "12.2.2",
3
+ "version": "12.2.3",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.js",
@@ -3206,7 +3206,7 @@ var import_fs2 = __toESM(require("fs"));
3206
3206
  var import_path2 = require("path");
3207
3207
  var import_build_utils3 = require("@vercel/build-utils");
3208
3208
  var FASTAPI_ENTRYPOINT_FILENAMES = ["app", "index", "server", "main"];
3209
- var FASTAPI_ENTRYPOINT_DIRS = ["", "src", "app"];
3209
+ var FASTAPI_ENTRYPOINT_DIRS = ["", "src", "app", "api"];
3210
3210
  var FASTAPI_CONTENT_REGEX = /(from\s+fastapi\s+import\s+FastAPI|import\s+fastapi|FastAPI\s*\()/;
3211
3211
  var FASTAPI_CANDIDATE_ENTRYPOINTS = FASTAPI_ENTRYPOINT_FILENAMES.flatMap(
3212
3212
  (filename) => FASTAPI_ENTRYPOINT_DIRS.map(
@@ -3225,7 +3225,7 @@ function isFastapiEntrypoint(file) {
3225
3225
  }
3226
3226
  }
3227
3227
  var FLASK_ENTRYPOINT_FILENAMES = ["app", "index", "server", "main"];
3228
- var FLASK_ENTRYPOINT_DIRS = ["", "src", "app"];
3228
+ var FLASK_ENTRYPOINT_DIRS = ["", "src", "app", "api"];
3229
3229
  var FLASK_CONTENT_REGEX = /(from\s+flask\s+import\s+Flask|import\s+flask|Flask\s*\()/;
3230
3230
  var FLASK_CANDIDATE_ENTRYPOINTS = FLASK_ENTRYPOINT_FILENAMES.flatMap(
3231
3231
  (filename) => FLASK_ENTRYPOINT_DIRS.map(
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/python",
3
- "version": "5.0.10",
3
+ "version": "6.0.0",
4
4
  "main": "./dist/index.js",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://vercel.com/docs/runtimes#official-runtimes/python",
@@ -21,7 +21,7 @@
21
21
  "@types/jest": "27.4.1",
22
22
  "@types/node": "14.18.33",
23
23
  "@types/which": "3.0.0",
24
- "@vercel/build-utils": "12.1.3",
24
+ "@vercel/build-utils": "12.2.3",
25
25
  "cross-env": "7.0.3",
26
26
  "execa": "^1.0.0",
27
27
  "fs-extra": "11.1.1",
@@ -4,9 +4,9 @@
4
4
  "vercel": "./dist/vc.js"
5
5
  },
6
6
  "dependencies": {
7
- "@vercel/build-utils": "12.2.2",
7
+ "@vercel/build-utils": "12.2.3",
8
8
  "@vercel/detect-agent": "1.0.0",
9
- "@vercel/python": "5.0.10"
9
+ "@vercel/python": "6.0.0"
10
10
  },
11
11
  "description": "The command-line interface for Vercel",
12
12
  "engines": {
@@ -30,12 +30,12 @@
30
30
  "dev": "echo \"'pnpm dev [command]' has been removed. Use 'pnpm vercel [command]' instead.\" && exit 1",
31
31
  "test": "jest --reporters=default --reporters=jest-junit --env node --verbose --bail",
32
32
  "test-dev": "pnpm test test/dev/",
33
- "test-e2e": "rimraf test/fixtures/integration && pnpm test test/integration-1.test.ts test/integration-2.test.ts test/integration-3.test.ts",
33
+ "test-e2e-node-all-versions": "rimraf test/fixtures/integration && pnpm test test/integration-1.test.ts test/integration-2.test.ts test/integration-3.test.ts",
34
34
  "type-check": "tsc --noEmit",
35
35
  "vc": "pnpm vercel",
36
36
  "vercel": "pnpm build && node ./dist/vc.js",
37
37
  "vitest-run": "vitest --config ./vitest.config.mts",
38
38
  "vitest-unit": "jest test/unit/ --listTests"
39
39
  },
40
- "version": "48.6.7"
40
+ "version": "48.8.0"
41
41
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vercel-cli
3
- Version: 48.6.7
3
+ Version: 48.8.0
4
4
  Summary: Vercel CLI packaged for Python (bundled Node.js, vendored npm)
5
5
  Project-URL: Homepage, https://github.com/nuage-studio/vercel-cli-python
6
6
  Project-URL: Repository, https://github.com/nuage-studio/vercel-cli-python
@@ -1,20 +1,20 @@
1
1
  vercel_cli/vendor/LICENSE,sha256=sHDXe_ssUqHdaZbeDOX2TEmgylXIibFjqWPd9csAHuI,11343
2
2
  vercel_cli/vendor/README.md,sha256=2ZrJzd7x21xlpsOZ9QKG6478zbXb8-3YN8cPyzPxZNk,1799
3
- vercel_cli/vendor/package.json,sha256=DyfJwLTw9jBG6-dPZY5BtdGuXgDsKpXjGdUSs20-jB8,1271
3
+ vercel_cli/vendor/package.json,sha256=9DRhofm4_WVjVWI7QyDSYfOaPk6PdWtvNTPFfacuSnQ,1288
4
4
  vercel_cli/vendor/dist/VERCEL_DIR_README.txt,sha256=9dHtD1AyrhKJMfRkWbX6oa9jGfwt-z56X-VKhL-T29Y,520
5
5
  vercel_cli/vendor/dist/builder-worker.js,sha256=RgutTXJcurRisV2NtlruuPDtCBOi8eHSGCo3n4GcCIM,1969
6
6
  vercel_cli/vendor/dist/get-latest-worker.js,sha256=w7nK8nQtlYad_SKuFQGw_sg7_bb-p0uHOf1MYiwrUNs,7964
7
- vercel_cli/vendor/dist/index.js,sha256=WohvsB6t-Hac9MFh1S2olWU8IjFSjepfS5hvJywIrx8,8925167
7
+ vercel_cli/vendor/dist/index.js,sha256=7YIwDK2yiZ-WB-jfCe1Y94g9Eum0_tayUrcSgOf7EDE,8949509
8
8
  vercel_cli/vendor/dist/vc.js,sha256=AAC4u6uwjpO0KfFVuLRs5YWXjW4aMCkgSj_45hR3W8k,340
9
- vercel_cli/vendor/node_modules/.package-lock.json,sha256=bG67j9GNs3Y-Y9TYDdY9ABwmA3kuWaXnvFciu_-jsL4,1055
10
- vercel_cli/vendor/node_modules/@vercel/build-utils/CHANGELOG.md,sha256=RuZIlJwvfLtyeiZF5qnkeL7T0U2Pfz8nkxcdFHmTlfA,18840
9
+ vercel_cli/vendor/node_modules/.package-lock.json,sha256=UnTiogNyF5s9SUav3huUpvZ_023_CqYOHkLqgwcfReI,1053
10
+ vercel_cli/vendor/node_modules/@vercel/build-utils/CHANGELOG.md,sha256=lMIZBBFBOup7NS6HG2JbUPfE5zGDG-_s8a8nQFDoYWQ,18950
11
11
  vercel_cli/vendor/node_modules/@vercel/build-utils/LICENSE,sha256=sHDXe_ssUqHdaZbeDOX2TEmgylXIibFjqWPd9csAHuI,11343
12
12
  vercel_cli/vendor/node_modules/@vercel/build-utils/build.mjs,sha256=UCAJgPaur_bxtLTnQxSkBwoq246SSCBvI-0w_PvbAVU,132
13
13
  vercel_cli/vendor/node_modules/@vercel/build-utils/file-blob.js,sha256=aRpphtlekNrjt2il5QT0F2bXAkqFTO_V1krxIOq4hrI,51
14
14
  vercel_cli/vendor/node_modules/@vercel/build-utils/file-fs-ref.js,sha256=fOL25R1bIwSeLf_imxHGMUUhjRLF_BE1_Zu7id4zQHQ,52
15
15
  vercel_cli/vendor/node_modules/@vercel/build-utils/file-ref.js,sha256=Zagnve_F2XviRbTHabnkueLyODg4bS0YrNSqd3nfIl8,50
16
16
  vercel_cli/vendor/node_modules/@vercel/build-utils/lambda.js,sha256=KAiW9B7zt1YNj6DpnUErjD8pZJUq7MP1xCTG8oFzCKU,42
17
- vercel_cli/vendor/node_modules/@vercel/build-utils/package.json,sha256=jMx3-EwU8ZCP5PxfOu3SWB48fOL7AkBygRw01GulCcc,1847
17
+ vercel_cli/vendor/node_modules/@vercel/build-utils/package.json,sha256=BF9p5RVzys2lFoz-LNXp8W3MIhQefte7TbyHormtAtI,1847
18
18
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/clone-env.d.ts,sha256=j_d2xvRDDMBB4yXz53kyZ-plZRvg0Rg1d9-lFFvjVRo,415
19
19
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/clone-env.js,sha256=LzFB8CsnB1G7wZ2pl5D25siWq0kuY2eTvRlZMj6tbg0,1423
20
20
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/debug.d.ts,sha256=zh9K0T0QHcac03_UpCv9r4q3w8aia11XqtWd7Jsfhos,76
@@ -31,8 +31,8 @@ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/file-fs-ref.d.ts,sha256=
31
31
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/file-fs-ref.js,sha256=AXyXrTwRJTeqLOBhWGKm_KMkAiMxjOJpQlrW4lFotiU,3910
32
32
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/file-ref.d.ts,sha256=TavWfLrgq6soixSDYhdsvt8MtzIB_qLJPcbo02pm_Ts,1098
33
33
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/file-ref.js,sha256=7rTV64WuFTvLurFsNE8JWCC4Y7EFFgiqwtCAe9Co3CU,4929
34
- vercel_cli/vendor/node_modules/@vercel/build-utils/dist/framework-helpers.d.ts,sha256=IRG_QtqC8nldsMuBFyRmUzVTLDwBa5beZ8WtE82tVFk,772
35
- vercel_cli/vendor/node_modules/@vercel/build-utils/dist/framework-helpers.js,sha256=3kXU2W2xicW5bwcFKIFQ3RVhaCNu9qtOG4Zi0KVWeNA,1991
34
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/framework-helpers.d.ts,sha256=kaSv_huoAkhBBwTabmHtbLUe-VcQBmQjWjP_QWy0mDw,782
35
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/framework-helpers.js,sha256=41oh7NxpVDGwS1J7HVKCAnoF5elgjotUEvx1g0jPfpQ,2003
36
36
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/generate-node-builder-functions.d.ts,sha256=Qb_-JRWbd1gWWZBjNCRbXGzKneYF9QLQufU4IW0o2g8,509
37
37
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/generate-node-builder-functions.js,sha256=DhEN1dmoC8xRb3BMVefBCEpOZ6yhZrmdqvRcUFhWCB4,7550
38
38
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/get-ignore-filter.d.ts,sha256=Rr_2-k8x2nv7naAZFeV-vDiMjOiyQRn3ldqdSeh3jaE,113
@@ -46,7 +46,7 @@ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/get-prefixed-env-vars.js
46
46
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/hard-link-dir.d.ts,sha256=HplXUbwTLeD9eY-mSorms1O1mucLWBH-edAPIvAiYSM,85
47
47
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/hard-link-dir.js,sha256=K4utFK-gzVTfepi8P488t4cFBHBA8virdMyFumvu8E8,3685
48
48
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/index.d.ts,sha256=uhPAgdJem38X_WAjhOp_nMSTjcq-1JltuFiCxuyVT7g,3159
49
- vercel_cli/vendor/node_modules/@vercel/build-utils/dist/index.js,sha256=YcYAqLtFMZpU0ri8DMLzu8nPnPQ0ueIaB9bU0M0TnCI,1138326
49
+ vercel_cli/vendor/node_modules/@vercel/build-utils/dist/index.js,sha256=B4RQSKtdgGUt2zvg_QIDJcWAraRCocNQqf6WNPpzDhg,1138338
50
50
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/lambda.d.ts,sha256=wpPR6WTT3dvm0RBJ0KqaPW9ATmHMav4_uFvAnuxeWQQ,4746
51
51
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/lambda.js,sha256=MZS-MK-rCX6B5FPUiecss3a5wqSbSm--6mMp6Pu-Tu4,11598
52
52
  vercel_cli/vendor/node_modules/@vercel/build-utils/dist/nodejs-lambda.d.ts,sha256=LwC890Vt5ilvPpMhqRt8X0eOycQHa_vAsCeBf3KoKik,595
@@ -100,12 +100,12 @@ vercel_cli/vendor/node_modules/@vercel/detect-agent/package.json,sha256=skFFT-Up
100
100
  vercel_cli/vendor/node_modules/@vercel/detect-agent/dist/index.d.ts,sha256=3HzKZBBpy_L_9ZFprqKrWHCTmazGlzGoqvx6MRABkjg,901
101
101
  vercel_cli/vendor/node_modules/@vercel/detect-agent/dist/index.js,sha256=likIDfr0UHioDUkMLymGQoCfoOhDvj0c3mP2VyP9StA,2510
102
102
  vercel_cli/vendor/node_modules/@vercel/python/LICENSE,sha256=sHDXe_ssUqHdaZbeDOX2TEmgylXIibFjqWPd9csAHuI,11343
103
- vercel_cli/vendor/node_modules/@vercel/python/package.json,sha256=2JbjnfPDP83BBxc5z65Jgbh6U_KdPc1hxurYpZzB6Wg,1099
103
+ vercel_cli/vendor/node_modules/@vercel/python/package.json,sha256=MpO0f0K8NXyoRR-2f2pfsqDo0V0iSxH1vf7bhLZQ6T4,1098
104
104
  vercel_cli/vendor/node_modules/@vercel/python/vc_init.py,sha256=A7949hQi18B9yqPkTr1bepToi7nKRh_yRP7GwmsI-Ww,28201
105
105
  vercel_cli/vendor/node_modules/@vercel/python/vc_init_dev_asgi.py,sha256=pV9s5Jz4AS_JswthCOP3L6SPWVgk_2kRD1REgA9GKIQ,3078
106
106
  vercel_cli/vendor/node_modules/@vercel/python/vc_init_dev_wsgi.py,sha256=pnNGrPJtPF9OdioaiIdD_OgA3qdio4HqGmKaenogtAk,4078
107
- vercel_cli/vendor/node_modules/@vercel/python/dist/index.js,sha256=fAumiV0j6qLydhmE1mcuKhUarPee09cOpcOlwrUOz_0,136129
108
- vercel_cli-48.6.7.dist-info/METADATA,sha256=beXsN1IsJyLqfs5RepFOgRFL-oFGXTtWV17u5bPdQZk,7085
109
- vercel_cli-48.6.7.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
110
- vercel_cli-48.6.7.dist-info/entry_points.txt,sha256=3iHkg20gi2BZorK1g5UlyZY3tN5E1vJX6PX5-ibn9fI,83
111
- vercel_cli-48.6.7.dist-info/RECORD,,
107
+ vercel_cli/vendor/node_modules/@vercel/python/dist/index.js,sha256=Fm31RpvUIksIVXi2ZHRSOdUScOMpbHL7A2uqspmRcx8,136143
108
+ vercel_cli-48.8.0.dist-info/METADATA,sha256=UjdUYpf5mqGwvU1HMP5GECXWU8NzgdNxaMA2NYtVpOI,7085
109
+ vercel_cli-48.8.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
110
+ vercel_cli-48.8.0.dist-info/entry_points.txt,sha256=3iHkg20gi2BZorK1g5UlyZY3tN5E1vJX6PX5-ibn9fI,83
111
+ vercel_cli-48.8.0.dist-info/RECORD,,