@whatwg-node/fetch 0.10.2 → 0.10.3

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @whatwg-node/fetch
2
2
 
3
+ ## 0.10.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1961](https://github.com/ardatan/whatwg-node/pull/1961)
8
+ [`2785c80`](https://github.com/ardatan/whatwg-node/commit/2785c80be2c887c581ef0fac8150befeab306eba)
9
+ Thanks [@ardatan](https://github.com/ardatan)! - `ReadableStream`'s `Symbol.asyncIterator` now
10
+ returns `AsyncIterableIterator` like before even if it is ok to return `AsyncIterator` right now.
11
+ It is safer to return `AsyncIterableIterator` because it is a common mistake to use
12
+ `AsyncIterator` as `AsyncIterable`.
13
+ - Updated dependencies
14
+ [[`2785c80`](https://github.com/ardatan/whatwg-node/commit/2785c80be2c887c581ef0fac8150befeab306eba)]:
15
+ - @whatwg-node/node-fetch@0.7.7
16
+
3
17
  ## 0.10.2
4
18
 
5
19
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@whatwg-node/fetch",
3
- "version": "0.10.2",
3
+ "version": "0.10.3",
4
4
  "description": "Cross Platform Smart Fetch Ponyfill",
5
5
  "repository": {
6
6
  "type": "git",
@@ -16,7 +16,7 @@
16
16
  "browser": "dist/global-ponyfill.js",
17
17
  "types": "dist/index.d.ts",
18
18
  "dependencies": {
19
- "@whatwg-node/node-fetch": "^0.7.6",
19
+ "@whatwg-node/node-fetch": "^0.7.7",
20
20
  "urlpattern-polyfill": "^10.0.0"
21
21
  },
22
22
  "publishConfig": {