Skip to content

Commit

Permalink
Upcoming Release Changes (#1247)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
theguild-bot and github-actions[bot] committed Apr 15, 2024
1 parent 4717be5 commit 6bc7ed9
Show file tree
Hide file tree
Showing 11 changed files with 47 additions and 18 deletions.
9 changes: 0 additions & 9 deletions .changeset/violet-dancers-wash.md

This file was deleted.

7 changes: 7 additions & 0 deletions benchmarks/server/CHANGELOG.md
@@ -1,5 +1,12 @@
# @benchmarks/server

## 0.0.8

### Patch Changes

- Updated dependencies [[`4717be5`](https://github.com/ardatan/whatwg-node/commit/4717be5a0311334c81176c4a3bc6c01e286f3a39)]:
- @whatwg-node/server@0.9.33

## 0.0.7

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions benchmarks/server/package.json
@@ -1,6 +1,6 @@
{
"name": "@benchmarks/server",
"version": "0.0.7",
"version": "0.0.8",
"type": "module",
"private": true,
"scripts": {
Expand All @@ -13,7 +13,7 @@
"test": "start-server-and-test start http://127.0.0.1:4000/ping loadtest"
},
"dependencies": {
"@whatwg-node/server": "0.9.32"
"@whatwg-node/server": "0.9.33"
},
"devDependencies": {
"start-server-and-test": "2.0.3"
Expand Down
7 changes: 7 additions & 0 deletions e2e/bun/CHANGELOG.md
@@ -1,5 +1,12 @@
# @e2e/bun

## 0.0.92

### Patch Changes

- Updated dependencies []:
- @e2e/shared-server@0.0.92

## 0.0.91

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions e2e/bun/package.json
@@ -1,13 +1,13 @@
{
"name": "@e2e/bun",
"version": "0.0.91",
"version": "0.0.92",
"private": true,
"scripts": {
"e2e": "bun test",
"start": "bun src/index.ts"
},
"dependencies": {
"@e2e/shared-server": "0.0.91",
"@e2e/shared-server": "0.0.92",
"@types/node": "20.12.2",
"bun-types": "1.1.0"
},
Expand Down
7 changes: 7 additions & 0 deletions e2e/shared-server/CHANGELOG.md
@@ -1,5 +1,12 @@
# @e2e/shared-server

## 0.0.92

### Patch Changes

- Updated dependencies [[`4717be5`](https://github.com/ardatan/whatwg-node/commit/4717be5a0311334c81176c4a3bc6c01e286f3a39)]:
- @whatwg-node/server@0.9.33

## 0.0.91

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions e2e/shared-server/package.json
@@ -1,9 +1,9 @@
{
"name": "@e2e/shared-server",
"version": "0.0.91",
"version": "0.0.92",
"private": true,
"dependencies": {
"@whatwg-node/fetch": "0.9.17",
"@whatwg-node/server": "0.9.32"
"@whatwg-node/server": "0.9.33"
}
}
7 changes: 7 additions & 0 deletions e2e/vercel/CHANGELOG.md
@@ -1,5 +1,12 @@
# @e2e/vercel

## 0.0.92

### Patch Changes

- Updated dependencies []:
- @e2e/shared-server@0.0.92

## 0.0.91

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions e2e/vercel/package.json
@@ -1,6 +1,6 @@
{
"name": "@e2e/vercel",
"version": "0.0.91",
"version": "0.0.92",
"private": true,
"scripts": {
"build": "node scripts/bundle.js",
Expand All @@ -12,7 +12,7 @@
},
"dependencies": {
"@e2e/shared-scripts": "0.0.0",
"@e2e/shared-server": "0.0.91",
"@e2e/shared-server": "0.0.92",
"encoding": "0.1.13",
"next": "14.1.4",
"react": "18.2.0",
Expand Down
10 changes: 10 additions & 0 deletions packages/server/CHANGELOG.md
@@ -1,5 +1,15 @@
# @whatwg-node/server

## 0.9.33

### Patch Changes

- [#1246](https://github.com/ardatan/whatwg-node/pull/1246) [`4717be5`](https://github.com/ardatan/whatwg-node/commit/4717be5a0311334c81176c4a3bc6c01e286f3a39) Thanks [@ardatan](https://github.com/ardatan)! - Ensure unique context objects are sent per each request.

For example in CloudFlare Workers,
`fetch` receives `env` and `ctx`, and `env` is shared across requests. That causes the server receives the same context object for each request.
Now the server creates a new context object for each request, even if the first argument is the same. Before, it always takes the first argument as the context object, then merges the following arguments into it.

## 0.9.32

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/server/package.json
@@ -1,6 +1,6 @@
{
"name": "@whatwg-node/server",
"version": "0.9.32",
"version": "0.9.33",
"type": "module",
"description": "Fetch API compliant HTTP Server adapter",
"repository": {
Expand Down

0 comments on commit 6bc7ed9

Please sign in to comment.