Releases: Kinto/elm-kinto
Releases · Kinto/elm-kinto
8.0.0
Breaking changes
- Remove
total
field in Pager
, add count
fn. (#50)
7.0.0
Changed
- Port elm-kinto to elm-http-builder 7.0 and elm-http 2.0
Removed
decodePager
helper
- error helpers
toRequest
helper
6.0.0
Breaking Changes
Use verbs for sort and filter, the same as for limit
. See 996d8db
This means:
sortBy
becomes sort
withFilter
becomes filter
5.0.0
Breaking Changes
All filters now use the same casing (all uppercases), see 6632351.
This means:
Equal
becomes EQUAL
Min
becomes MIN
Max
becomes MAX
4.0.0
Breaking Changes
Sending a list request now retrieves a Pager a
instead of a List a
, allowing to paginate over pages of results. Check out the updated example app code and demo for more info.
New features
- Add support for paginating results. (#27)