Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1015 Bytes

CHANGELOG.md

File metadata and controls

29 lines (20 loc) · 1015 Bytes

Changelog

6.0.0

Updates the underlying elm/http and elm/json package dependencies. Because the new elm/http package changed the API for sending HTTP requests (there is no longer an Http.Request type), RemoteData.sendRequest was removed.

5.0.0

Changes inline with the Elm 0.19 release. RemoteData.Infix removed. Elm 0.19 has no custom infix operators. Added unwrap and unpack.

4.0.0

Changes inline with the Elm 0.18 release.

  • The order the arguments for andThen are flipped.

3.0.0

Changes inline with the Elm 0.18 release.

  • apply was renamed to andMap, and the argument order was flipped for easier chaining with |>. This follows the new Elm 0.18 convention.
  • ($) and (*) were moved to RemoteData.Infix.
  • pure became succeed, to fall in line with Elm core.
  • mapFailure became mapError, to fall in line with Elm core.
  • fromTask no longer exists, following changes to the underling Task API.