Skip to content
This repository was archived by the owner on Feb 12, 2026. It is now read-only.

Releases: raphaelpor/fitch.js

v0.11.0

23 Oct 14:17

Choose a tag to compare

  • Add support to default configuration and request interceptor (#13).

v0.10.0

27 Nov 00:41

Choose a tag to compare

Breanking changes:

  • Unnecessary method removed: error
  • Response changed to have more information. Now, your data is inside data object:
fitch.get(apiUrl)
  .then(response => console.log(response))

/* Response:
{
  data: { foo: 'bar' },
  status: 200,
  statusText: 'Ok',
  headers: { Content-Type: application/json },
}
*/

v0.9.0

22 Nov 15:25

Choose a tag to compare

v0.8.0

15 Nov 22:14

Choose a tag to compare

  • Added build scripts using Webpack + Babel.
  • Breaking change: method delete renamed to del.

v0.7.0

10 Nov 01:16

Choose a tag to compare

Now Fitch.js works with all the data types (using dataType) supported by Fetch API.
See how it works here.

v0.6.0

08 Nov 23:43

Choose a tag to compare

v0.5.0

08 Nov 00:48

Choose a tag to compare

  • Added support to redirect configuration
  • Added support to credentials configuration
  • Improved documentation

v0.4.5

07 Nov 20:25

Choose a tag to compare

Added a better documentation.