Releases: lquixada/cross-fetch
Releases · lquixada/cross-fetch
v3.1.1
🐞 fixed missing fetch api types from constructor signatures #96 (thanks @jstewmon)
v3.1.0
⚡️ improved TypeScript support with own fetch API type definitions (thanks @jstewmon)
⚡️ set fetch.ponyfill
to true
when custom ponyfill implementation is used.
💡 set the same fetch API test suite to run against node-fetch
, whatwg-fetch
and native fetch.
v3.0.6
⚡️ updated node-fetch to 2.6.1
v3.0.5
⚡️ whatwg-fetch is not a prod dependency anymore (#63)
⚡️ updated all dev dependencies.
v3.0.4
🐞 fixed bug that crashed Safari 9 (#49).
⚡️ added VaporJS code to the project.
v3.0.3
⚡️ upgraded node-fetch to 2.6.0.
v3.0.2
🐞 bugfix #35: fixed TypeScript failing on types when dom lib is not present.
v3.0.1
🐞 bugfix #38: fixed the browser ponyfill stomping the global fetch function on React Native (thanks @msluther)
v3.0.0
- major upgrade of whatwg-fetch to 3.0.0 (see breaking changes)
- minor upgrade of node-fetch to 2.3.0 (see changelog)
- comprehensive test coverage (from 16 specs to 72)
- dropped yarn in favor of npm for package management
- dropped npm in favor of make for tasks runner
- Now you can do
import {fetch} from 'cross-fetch'
on a browser bundle.
- For ponyfills,
fetch.polyfill
is now set to undefined
instead of false
.
v2.2.3
🐞 bugfix #26: fixed TypeScript usage without esModuleInterop. (thanks @mattmccutchen)