- Better TypeScript types for FetchOptions - PR
- Publish the
src
directory in the npm package to avoid warnings where the sourcemap indist
links to non-existentsrc
files.
- Rewrote in TypeScript! Types are published, so if you're using TypeScript you should be able to take advantage of them.
- Breaking change: rather than call
fetch.newClient
, you nowimport { makeFetchClient } from 'so-fetch-js'
.
- remove polyfill version
- Change responses to be
SoFetchResponse
and add.data
and.isError
onto them.
- provide
so-fetch-js/lib/polyfill
that containsObject.assign
andfetch
polyfills
- include a UMD build and use rollups for all builds - PR by @RusinovAnton
- don't publish
*.test.js
files in the prod build - PR by @RusinovAnton
- first release