@whatwg-node/fetch 0.9.8-alpha-20230710180612-32e574f → 0.9.8

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.
package/CHANGELOG.md CHANGED
@@ -1,13 +1,16 @@
1
1
  # @whatwg-node/fetch
2
2
 
3
- ## 0.9.8-alpha-20230710180612-32e574f
3
+ ## 0.9.8
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - [`a1c2140`](https://github.com/ardatan/whatwg-node/commit/a1c2140240388ca11a6f4c7bcec2682c47bdc24d)
8
+ Thanks [@ardatan](https://github.com/ardatan)! - Do not use async iterators to consume incoming
9
+ Readable stream
10
+
7
11
  - Updated dependencies
8
- [[`66260af`](https://github.com/ardatan/whatwg-node/commit/66260af40d9d3c53c36414ed3d42f2e5896bf85f),
9
- [`66260af`](https://github.com/ardatan/whatwg-node/commit/66260af40d9d3c53c36414ed3d42f2e5896bf85f)]:
10
- - @whatwg-node/node-fetch@0.5.0-alpha-20230710180612-32e574f
12
+ [[`a1c2140`](https://github.com/ardatan/whatwg-node/commit/a1c2140240388ca11a6f4c7bcec2682c47bdc24d)]:
13
+ - @whatwg-node/node-fetch@0.4.7
11
14
 
12
15
  ## 0.9.7
13
16
 
@@ -2,10 +2,6 @@
2
2
  const createNodePonyfill = require('./create-node-ponyfill');
3
3
  const ponyfills = createNodePonyfill();
4
4
 
5
- try {
6
- globalThis.libcurl = globalThis.libcurl || require('node-libcurl');
7
- } catch(e) {}
8
-
9
5
  module.exports.fetch = ponyfills.fetch;
10
6
  module.exports.Headers = ponyfills.Headers;
11
7
  module.exports.Request = ponyfills.Request;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@whatwg-node/fetch",
3
- "version": "0.9.8-alpha-20230710180612-32e574f",
3
+ "version": "0.9.8",
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.5.0-alpha-20230710180612-32e574f",
19
+ "@whatwg-node/node-fetch": "^0.4.7",
20
20
  "urlpattern-polyfill": "^9.0.0"
21
21
  },
22
22
  "publishConfig": {