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.
Changes inline with the Elm 0.19 release.
RemoteData.Infix removed. Elm 0.19 has no custom infix operators.
Added unwrap
and unpack
.
Changes inline with the Elm 0.18 release.
- The order the arguments for
andThen
are flipped.
Changes inline with the Elm 0.18 release.
apply
was renamed toandMap
, and the argument order was flipped for easier chaining with|>
. This follows the new Elm 0.18 convention.($)
and(*)
were moved toRemoteData.Infix
.pure
becamesucceed
, to fall in line with Elm core.mapFailure
becamemapError
, to fall in line with Elm core.fromTask
no longer exists, following changes to the underlingTask
API.