@whatwg-node/node-fetch 0.4.8-alpha-20230714134016-d696bc4 → 0.4.8-alpha-20230714142707-7e874bb

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/cjs/fetchCurl.js CHANGED
@@ -19,6 +19,7 @@ async function fetchCurl(fetchRequest) {
19
19
  });
20
20
  let easyNativeBinding;
21
21
  const curlyOptions = {
22
+ sslVerifyPeer: false,
22
23
  // we want the unparsed binary response to be returned as a stream to us
23
24
  curlyStreamResponse: true,
24
25
  curlyResponseBodyParser: false,
package/esm/fetchCurl.js CHANGED
@@ -16,6 +16,7 @@ export async function fetchCurl(fetchRequest) {
16
16
  });
17
17
  let easyNativeBinding;
18
18
  const curlyOptions = {
19
+ sslVerifyPeer: false,
19
20
  // we want the unparsed binary response to be returned as a stream to us
20
21
  curlyStreamResponse: true,
21
22
  curlyResponseBodyParser: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@whatwg-node/node-fetch",
3
- "version": "0.4.8-alpha-20230714134016-d696bc4",
3
+ "version": "0.4.8-alpha-20230714142707-7e874bb",
4
4
  "description": "Fetch API implementation for Node",
5
5
  "sideEffects": false,
6
6
  "dependencies": {