@vercel/next 4.15.26 → 4.15.27

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.
@@ -10028,7 +10028,8 @@ async function handleEdgeOutputs(edgeOutputs, {
10028
10028
  import_node_path.default.posix.relative(projectDir, output.filePath)
10029
10029
  ];
10030
10030
  const params = {
10031
- name: output.id.replace(/\.rsc$/, ""),
10031
+ // the edge entries has this hardcoded to "middleware" so match that
10032
+ name: output.id.replace(/\.rsc$/, "").replace("_middleware", "middleware").replace(/^\//, ""),
10032
10033
  staticRoutes: [],
10033
10034
  dynamicRoutes: [],
10034
10035
  nextConfig: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/next",
3
- "version": "4.15.26",
3
+ "version": "4.15.27",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index",
6
6
  "homepage": "https://vercel.com/docs/runtimes#official-runtimes/next-js",
@@ -16,7 +16,7 @@
16
16
  "@vercel/nft": "1.1.1"
17
17
  },
18
18
  "devDependencies": {
19
- "@next-community/adapter-vercel": "0.0.1-beta.5",
19
+ "@next-community/adapter-vercel": "0.0.1-beta.6",
20
20
  "@types/aws-lambda": "8.10.19",
21
21
  "@types/buffer-crc32": "0.2.0",
22
22
  "@types/bytes": "3.1.1",
@@ -53,8 +53,8 @@
53
53
  "test-listen": "1.1.0",
54
54
  "text-table": "0.2.0",
55
55
  "webpack-sources": "3.2.3",
56
- "@vercel/routing-utils": "5.3.2",
57
- "@vercel/build-utils": "13.3.2"
56
+ "@vercel/build-utils": "13.3.3",
57
+ "@vercel/routing-utils": "5.3.2"
58
58
  },
59
59
  "scripts": {
60
60
  "build": "node build.mjs",