Skip to content

Releases: jd1378/deno-fetch-goody

v5.0.0

11 Jun 15:54
Compare
Choose a tag to compare
  • fix timeout functionality as the abort signal is now supported as of deno v1.11

Please update to this version if you are using v4.0.0 already.

v4.0.0

27 Mar 14:32
Compare
Choose a tag to compare
  • due to adding timeout option and the way it works, it may cause issues. so I release this as breaking change.

v3.0.1

11 Feb 08:51
Compare
Choose a tag to compare
  • fix form keys not getting url encoded.

v3.0.0

11 Feb 08:45
Compare
Choose a tag to compare
  • BREAKING CHANGE: Changed form option to formData and used form option as a application/x-www-form-urlencoded value instead of multipart/form-data.
    this means anything meant to be sent as a multipart/form-data now should be passed as formData option.

v2.1.0

09 Feb 14:19
Compare
Choose a tag to compare
  • Allow array of strings as value in form option.

v2.0.0

09 Feb 09:45
Compare
Choose a tag to compare
  • BREAKING CHANGE: rename fetchFn to fetch in WrapFetchOptions
  • create WrapFetchOptions type
  • add a validator option to WrapFetchOptions
  • the validator that is passed to WrapFetchOptions will run before the validator of ExtendedRequestInit

v1.5.0

09 Feb 09:12
Compare
Choose a tag to compare
  • pass init to validator

v1.4.0

09 Feb 08:53
Compare
Choose a tag to compare
  • add validator option
  • update docs a bit

v1.3.3

09 Feb 06:34
Compare
Choose a tag to compare
  • fix bug introduced in last version and add test

v1.3.2

09 Feb 06:26
Compare
Choose a tag to compare
  • allow qs value to be undefined