Skip to content

Commit

Permalink
Upcoming Release Changes (#1962)
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] authored Jan 10, 2025
1 parent 2785c80 commit 02c97ae
Show file tree
Hide file tree
Showing 11 changed files with 57 additions and 16 deletions.
7 changes: 0 additions & 7 deletions .changeset/afraid-lies-nail.md

This file was deleted.

8 changes: 8 additions & 0 deletions e2e/aws-lambda/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @e2e/aws-lambda

## 0.0.37

### Patch Changes

- Updated dependencies
[[`2785c80`](https://github.com/ardatan/whatwg-node/commit/2785c80be2c887c581ef0fac8150befeab306eba)]:
- @whatwg-node/fetch@0.10.3

## 0.0.36

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions e2e/aws-lambda/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@e2e/aws-lambda",
"version": "0.0.36",
"version": "0.0.37",
"private": true,
"scripts": {
"build": "node scripts/bundle.js",
"e2e": "ts-node -r tsconfig-paths/register scripts/e2e.ts"
},
"dependencies": {
"@e2e/shared-scripts": "0.0.0",
"@whatwg-node/fetch": "0.10.2",
"@whatwg-node/fetch": "0.10.3",
"aws-lambda": "1.0.7"
},
"devDependencies": {
Expand Down
8 changes: 8 additions & 0 deletions e2e/shared-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @e2e/shared-server

## 0.0.128

### Patch Changes

- Updated dependencies
[[`2785c80`](https://github.com/ardatan/whatwg-node/commit/2785c80be2c887c581ef0fac8150befeab306eba)]:
- @whatwg-node/fetch@0.10.3

## 0.0.127

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions e2e/shared-server/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@e2e/shared-server",
"version": "0.0.127",
"version": "0.0.128",
"private": true,
"dependencies": {
"@whatwg-node/fetch": "0.10.2",
"@whatwg-node/fetch": "0.10.3",
"@whatwg-node/server": "0.9.65"
}
}
7 changes: 7 additions & 0 deletions e2e/vercel/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @e2e/vercel

## 0.0.128

### Patch Changes

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

## 0.0.127

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions e2e/vercel/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@e2e/vercel",
"version": "0.0.127",
"version": "0.0.128",
"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.127",
"@e2e/shared-server": "0.0.128",
"encoding": "0.1.13",
"next": "15.1.4",
"react": "19.0.0",
Expand Down
14 changes: 14 additions & 0 deletions packages/fetch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @whatwg-node/fetch

## 0.10.3

### Patch Changes

- [#1961](https://github.com/ardatan/whatwg-node/pull/1961)
[`2785c80`](https://github.com/ardatan/whatwg-node/commit/2785c80be2c887c581ef0fac8150befeab306eba)
Thanks [@ardatan](https://github.com/ardatan)! - `ReadableStream`'s `Symbol.asyncIterator` now
returns `AsyncIterableIterator` like before even if it is ok to return `AsyncIterator` right now.
It is safer to return `AsyncIterableIterator` because it is a common mistake to use
`AsyncIterator` as `AsyncIterable`.
- Updated dependencies
[[`2785c80`](https://github.com/ardatan/whatwg-node/commit/2785c80be2c887c581ef0fac8150befeab306eba)]:
- @whatwg-node/node-fetch@0.7.7

## 0.10.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/fetch/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@whatwg-node/fetch",
"version": "0.10.2",
"version": "0.10.3",
"description": "Cross Platform Smart Fetch Ponyfill",
"repository": {
"type": "git",
Expand All @@ -16,7 +16,7 @@
"browser": "dist/global-ponyfill.js",
"types": "dist/index.d.ts",
"dependencies": {
"@whatwg-node/node-fetch": "^0.7.6",
"@whatwg-node/node-fetch": "^0.7.7",
"urlpattern-polyfill": "^10.0.0"
},
"publishConfig": {
Expand Down
11 changes: 11 additions & 0 deletions packages/node-fetch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @whatwg-node/node-fetch

## 0.7.7

### Patch Changes

- [#1961](https://github.com/ardatan/whatwg-node/pull/1961)
[`2785c80`](https://github.com/ardatan/whatwg-node/commit/2785c80be2c887c581ef0fac8150befeab306eba)
Thanks [@ardatan](https://github.com/ardatan)! - `ReadableStream`'s `Symbol.asyncIterator` now
returns `AsyncIterableIterator` like before even if it is ok to return `AsyncIterator` right now.
It is safer to return `AsyncIterableIterator` because it is a common mistake to use
`AsyncIterator` as `AsyncIterable`.

## 0.7.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/node-fetch/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@whatwg-node/node-fetch",
"version": "0.7.6",
"version": "0.7.7",
"type": "module",
"description": "Fetch API implementation for Node",
"repository": {
Expand Down

0 comments on commit 02c97ae

Please sign in to comment.