Releases: JakeChampion/fetch
Releases · JakeChampion/fetch
Fetch 0.10.1
- Allow making a POST request with an ArrayBuffer body
Fetch 0.10.0
- Fix handling non-String Headers names and values
- Request object can now be initialized with another Request as 1st parameter
- Allow
fetch(request, options)
invocation style with existing Request object - Add
request.clone()
method - Add
response.clone()
method - Add
Response.error()
method - Add
Response.redirect(url, status)
method
fetch 0.9.0
- Invoke
forEach
callback with value, key, and Headers object. - Accept a
thisArg
forEach
parameter.
fetch 0.8.2
- Fix "Error: INVALID_STATE_ERR: DOM Exception 11".
- Follow spec on credentials 'include' value. Only support standard options.
fetch 0.8.1
- Proper Bower ignore
fetch 0.8.0
- Add a convenience
ok
getter onResponse
- Follow spec on Headers to throw TypeError
- Headers constructor in Response constructor
- Support Request being passed to fetch()
fetch 0.7.0
- Fix up body consuming on request
- Handle FormData in lack of blob case
- Throw TypeError if body is given for GET or HEAD
- Declare deliberate "async=true" on XMLHttpRequest open
- If CORS, with credentials
fetch 0.6.1
- Check for xhr.response only when supported.
- Feature test responseType support
- Fix
X-Request-URL
on CORS requests
fetch 0.6.0
- Use
xhr.responseType = 'blob'
to preserve binary data. - Add support for arrayBuffer
- Support blob and string BodyInit
fetch 0.5.0
- Expose Headers, Request and Response to window
- Conditionally define Response#blob
- Default credentials to 'omit'
- Add
X-Request-URL
support - Make Headers case insensitive though lowercasing. This implementation is not case preserving when iterating over a Headers object.