Skip to content

Releases: JakeChampion/fetch

Fetch 0.10.1

02 Nov 20:00
Compare
Choose a tag to compare
  • Allow making a POST request with an ArrayBuffer body

Fetch 0.10.0

12 Oct 12:03
Compare
Choose a tag to compare
  • 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

30 May 12:49
Compare
Choose a tag to compare
  • Invoke forEach callback with value, key, and Headers object.
  • Accept a thisArg forEach parameter.

fetch 0.8.2

30 May 12:49
Compare
Choose a tag to compare
  • Fix "Error: INVALID_STATE_ERR: DOM Exception 11".
  • Follow spec on credentials 'include' value. Only support standard options.

fetch 0.8.1

30 May 13:08
Compare
Choose a tag to compare
  • Proper Bower ignore

fetch 0.8.0

30 May 12:49
Compare
Choose a tag to compare
  • Add a convenience ok getter on Response
  • Follow spec on Headers to throw TypeError
  • Headers constructor in Response constructor
  • Support Request being passed to fetch()

fetch 0.7.0

30 May 12:49
Compare
Choose a tag to compare
  • 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

30 May 12:49
Compare
Choose a tag to compare
  • Check for xhr.response only when supported.
  • Feature test responseType support
  • Fix X-Request-URL on CORS requests

fetch 0.6.0

30 May 12:49
Compare
Choose a tag to compare
  • Use xhr.responseType = 'blob' to preserve binary data.
  • Add support for arrayBuffer
  • Support blob and string BodyInit

fetch 0.5.0

30 May 12:49
Compare
Choose a tag to compare
  • 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.