- Updates for Elm 0.19.
Exts.Date
is removed. There have been major changes to Date-representation in Elm 0.19. Read the docs forelm/time
and consider using it withrtfeldman/elm-iso8601-date-strings
instead.Exts.Json.Decode.decodeDate
is removed for the same reasons.Exts.Function
is removed, because Elm no longer supports custom infix operators.Exts.Json.Encode.dict
and.set
are removed. Seeelm/json
instead.Exts.Html.Attributes.styleList
now returnsList (Attribute msg)
instead of a singleAttribute msg
. Seeelm/html
for the justification.
- Removed
Exts.Tuple.mapFirst
and.mapSecond
. These are in core.
Big breaking changes for Elm 0.18.
- Removed
RemoteData
. This now lives in [its own package][remotedata]. Exts.Tuple.first
andsecond
becomemapFirst
andmapSecond
. [remotedata]: package.elm-lang.org/packages/krisajenkins/remotedata/latest- Removed most of
Exts.Http
. The new version ofelm-lang/http
is much more user-friendly, so few of those supporting functions still apply.