Skip to content

Tags: ilanashapiro/node-fetch

Tags

v2.7.0

Toggle v2.7.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: `AbortError` (node-fetch#1744)

v2.6.13

Toggle v2.6.13's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: Remove the default connection close header (node-fetch#1765)

Instead, we rely on the underlying http implementation in Node.js
to handle this, as per the documentation at
https://nodejs.org/api/http.html#new-agentoptions

This fixes node-fetch#1735 and likely replaces node-fetch#1473

The original change introducing this provided no clear motivation
for the override, and the implementation has since been changed to
disable this header when an agent is provided, so I think there
is sufficient evidence that removing this is the correct behaviour.
node-fetch@af21ae6
node-fetch@7f68577

This commit is backported to the v2 branch from node-fetch#1736 against v3.

v3.3.2

Toggle v3.3.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: Remove the default connection close header. (node-fetch#1736)

Instead, we rely on the underlying http implementation in Node.js
to handle this, as per the documentation at
https://nodejs.org/api/http.html#new-agentoptions

This fixes node-fetch#1735 and likely replaces node-fetch#1473

The original change introducing this provided no clear motivation
for the override, and the implementation has since been changed to
disable this header when an agent is provided, so I think there
is sufficient evidence that removing this is the correct behaviour.
node-fetch@af21ae6
node-fetch@7f68577

v2.6.12

Toggle v2.6.12's commit message

Partially verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
fix: socket variable testing for undefined (node-fetch#1726)

* fix: socket variable testing for undefined
Avoid issue where socket event was not triggered and local socket vraible is not defined.
This issue is reproducible only using deno.

* chore: made socket test capture simpler
Only controls the execution of the section that uses socket.

* Update src/index.js

Co-authored-by: Linus Unnebäck <[email protected]>

* Update index.js

---------

Co-authored-by: Linus Unnebäck <[email protected]>
Co-authored-by: Jimmy Wärting <[email protected]>

v2.6.11

Toggle v2.6.11's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Revert "fix: handle bom in text and json (node-fetch#1739)" (node-fet…

…ch#1741)

This reverts commit 29909d7.

v2.6.10

Toggle v2.6.10's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: handle bom in text and json (node-fetch#1739)

* fix: handle bom in text and json
* add unit tests

v3.3.1

Toggle v3.3.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: release "Allow URL class object as an argument for fetch()" node…

…-fetch#1696 (node-fetch#1716)

v2.6.9

Toggle v2.6.9's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: "global is not defined" (node-fetch#1704)

v2.6.8

Toggle v2.6.8's commit message
ci(release): install dependencies

v3.3.0

Toggle v3.3.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: add static Response.json (node-fetch#1670)

* feat: add static Response.json

* fix: set content-type if it doesn't exist properly