Skip to content

Releases: LaunchPadLab/lp-redux-api

v7.0.0

07 Aug 19:42
Compare
Choose a tag to compare

What's Changed

Breaking

  • No longer supports IE. See v7 migration guide for more details

Full Changelog: v6.3.1...v7.0.0

v6.3.1

29 Jun 23:17
b0dea64
Compare
Choose a tag to compare

What's Changed

Full Changelog: v6.3.0...v6.3.1

v6.3.0

29 Jun 20:35
46f9c79
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v6.2.1...v6.3.0

v6.2.1

29 Jul 00:01
Compare
Choose a tag to compare

Chore: fix typos in migration guide

v6.2.0

26 Jun 19:39
Compare
Choose a tag to compare

Added delay option to createStubRequest to facilitate simulating a slow API. This will help developers test loading states while developing off of stubbed requests before an endpoint is ready.

Example:

export const fetchUser = createStubRequest(
  'FETCH_USER',
  { id: 1, name: "John Doe" },
  { delay: 500 }
)

v6.1.0

20 Jun 19:56
Compare
Choose a tag to compare
  • Allows createStubRequest to reject with a given error

v6.0.0

07 May 16:10
Compare
Choose a tag to compare
  • Allows middleware to use request adapter
  • Removes requestWithKey and setFromRequest
  • Renames createStubRequest to stubRequest

v5.7.0

21 Aug 15:28
71c89c3
Compare
Choose a tag to compare
  • Adds convenience functions: createGetRequest, createPostRequest, etc

v5.6.0

10 Jul 15:58
Compare
Choose a tag to compare
  • onUnauthorized action creator is now passed error and request arguments

v5.4.0

10 Jul 15:56
Compare
Choose a tag to compare
  • Adds stubRequest action creator function