Skip to content

Commit

Permalink
bump: edge-runtime (#10712)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Nov 6, 2023
1 parent 33cc8e0 commit 644b8a5
Show file tree
Hide file tree
Showing 6 changed files with 61 additions and 51 deletions.
7 changes: 7 additions & 0 deletions .changeset/lemon-plums-watch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"vercel": patch
"@vercel/edge": patch
"@vercel/node": patch
---

bump: edge-runtime
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
},
"devDependencies": {
"@alex_neo/jest-expect-message": "1.0.5",
"@edge-runtime/node-utils": "2.2.1",
"@edge-runtime/node-utils": "2.2.2",
"@next/env": "11.1.2",
"@sentry/node": "5.5.0",
"@sindresorhus/slugify": "0.11.0",
Expand Down
6 changes: 1 addition & 5 deletions packages/cli/src/util/extension/proxy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,7 @@ export function createProxy(client: Client): Server {
json: false,
});
res.statusCode = fetchRes.status;
mergeIntoServerResponse(
// @ts-expect-error - `node-fetch` Headers is missing `getAll()`
toOutgoingHeaders(fetchRes.headers),
res
);
mergeIntoServerResponse(toOutgoingHeaders(fetchRes.headers), res);
fetchRes.body.pipe(res);
} catch (err: unknown) {
client.output.prettyError(err);
Expand Down
2 changes: 1 addition & 1 deletion packages/edge/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@edge-runtime/jest-environment": "2.3.1",
"@edge-runtime/jest-environment": "2.3.7",
"@types/jest": "27.4.1",
"jest-junit": "16.0.0",
"ts-node": "8.9.1",
Expand Down
6 changes: 3 additions & 3 deletions packages/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
],
"dependencies": {
"@edge-runtime/node-utils": "2.2.1",
"@edge-runtime/primitives": "3.1.1",
"@edge-runtime/vm": "3.1.1",
"@edge-runtime/primitives": "4.0.5",
"@edge-runtime/vm": "3.1.7",
"@types/node": "14.18.33",
"@vercel/build-utils": "7.2.2",
"@vercel/error-utils": "2.0.1",
"@vercel/nft": "0.24.2",
"@vercel/static-config": "3.0.0",
"async-listen": "3.0.0",
"edge-runtime": "2.5.1",
"edge-runtime": "2.5.7",
"esbuild": "0.14.47",
"etag": "1.8.1",
"exit-hook": "2.2.1",
Expand Down
89 changes: 48 additions & 41 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 644b8a5

Please sign in to comment.