Skip to content

Commit

Permalink
chore(release): update monorepo packages versions
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 27, 2022
1 parent eb10500 commit 5f42a49
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 19 deletions.
5 changes: 0 additions & 5 deletions .changeset/curvy-pillows-compete.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/green-pens-boil.md

This file was deleted.

11 changes: 11 additions & 0 deletions packages/fetch/CHANGELOG.md
@@ -1,5 +1,16 @@
# @whatwg-node/fetch

## 0.4.6

### Patch Changes

- [`c918527`](https://github.com/ardatan/whatwg-node/commit/c918527f15eb6096656376648dccdbc8d6898395) Thanks [@ardatan](https://github.com/ardatan)! - Bump Undici

- [#148](https://github.com/ardatan/whatwg-node/pull/148) [`eb10500`](https://github.com/ardatan/whatwg-node/commit/eb105005fd01bd227eff8d52c22b39ea1a8c6700) Thanks [@ardatan](https://github.com/ardatan)! - - On Node 14, fix the return method of Response.body's AsyncIterator to close HTTP connection correctly
- On Node 14, handle ReadableStream's cancel correctly if Response.body is a ReadableStream
- Do not modify ReadableStream.cancel's behavior but handle it internally
- On Node 18, do not combine Response.body's return and AbortController which causes a memory leak

## 0.4.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/fetch/package.json
@@ -1,6 +1,6 @@
{
"name": "@whatwg-node/fetch",
"version": "0.4.5",
"version": "0.4.6",
"description": "Cross Platform Smart Fetch Ponyfill",
"author": "Arda TANRIKULU <ardatanrikulu@gmail.com>",
"repository": {
Expand Down
15 changes: 13 additions & 2 deletions packages/server/CHANGELOG.md
@@ -1,5 +1,16 @@
# @whatwg-node/server

## 0.4.10

### Patch Changes

- [#148](https://github.com/ardatan/whatwg-node/pull/148) [`eb10500`](https://github.com/ardatan/whatwg-node/commit/eb105005fd01bd227eff8d52c22b39ea1a8c6700) Thanks [@ardatan](https://github.com/ardatan)! - - On Node 14, fix the return method of Response.body's AsyncIterator to close HTTP connection correctly
- On Node 14, handle ReadableStream's cancel correctly if Response.body is a ReadableStream
- Do not modify ReadableStream.cancel's behavior but handle it internally
- On Node 18, do not combine Response.body's return and AbortController which causes a memory leak
- Updated dependencies [[`c918527`](https://github.com/ardatan/whatwg-node/commit/c918527f15eb6096656376648dccdbc8d6898395), [`eb10500`](https://github.com/ardatan/whatwg-node/commit/eb105005fd01bd227eff8d52c22b39ea1a8c6700)]:
- @whatwg-node/fetch@0.4.6

## 0.4.9

### Patch Changes
Expand Down Expand Up @@ -70,8 +81,8 @@

```ts
createServerAdapter(req => {
return new Response(`I got ${req.url}`)
})
return new Response(`I got ${req.url}`);
});
```

Breaking Changes;
Expand Down
4 changes: 2 additions & 2 deletions packages/server/package.json
@@ -1,6 +1,6 @@
{
"name": "@whatwg-node/server",
"version": "0.4.9",
"version": "0.4.10",
"description": "Fetch API compliant HTTP Server adapter",
"author": "Arda TANRIKULU <ardatanrikulu@gmail.com>",
"repository": {
Expand Down Expand Up @@ -34,7 +34,7 @@
"directory": "dist"
},
"dependencies": {
"@whatwg-node/fetch": "0.4.5",
"@whatwg-node/fetch": "0.4.6",
"tslib": "^2.3.1"
},
"peerDependencies": {
Expand Down

0 comments on commit 5f42a49

Please sign in to comment.