@whatwg-node/node-fetch 0.7.4-alpha-20241125131513-7ac7e92d53ef0d5a6ddab6fcb0b311d88708df6d → 0.7.4-alpha-20241125135107-f57895e3cc8e9724899983c32c8b503cbd283558

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.
@@ -38,7 +38,6 @@ function fetchNodeHttp(fetchRequest) {
38
38
  auth: fetchRequest.parsedUrl.username
39
39
  ? `${fetchRequest.parsedUrl.username}:${fetchRequest.parsedUrl.password}`
40
40
  : undefined,
41
- host: fetchRequest.parsedUrl.host,
42
41
  hostname: fetchRequest.parsedUrl.hostname,
43
42
  method: fetchRequest.method,
44
43
  path: fetchRequest.parsedUrl.pathname + (fetchRequest.parsedUrl.search || ''),
@@ -35,7 +35,6 @@ export function fetchNodeHttp(fetchRequest) {
35
35
  auth: fetchRequest.parsedUrl.username
36
36
  ? `${fetchRequest.parsedUrl.username}:${fetchRequest.parsedUrl.password}`
37
37
  : undefined,
38
- host: fetchRequest.parsedUrl.host,
39
38
  hostname: fetchRequest.parsedUrl.hostname,
40
39
  method: fetchRequest.method,
41
40
  path: fetchRequest.parsedUrl.pathname + (fetchRequest.parsedUrl.search || ''),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@whatwg-node/node-fetch",
3
- "version": "0.7.4-alpha-20241125131513-7ac7e92d53ef0d5a6ddab6fcb0b311d88708df6d",
3
+ "version": "0.7.4-alpha-20241125135107-f57895e3cc8e9724899983c32c8b503cbd283558",
4
4
  "description": "Fetch API implementation for Node",
5
5
  "sideEffects": false,
6
6
  "dependencies": {