Skip to content

Releases: Kinto/elm-kinto

8.0.0

05 Nov 16:06
Compare
Choose a tag to compare

Breaking changes

  • Remove total field in Pager, add count fn. (#50)

7.0.0

22 May 09:47
Compare
Choose a tag to compare

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

16 Jan 10:33
Compare
Choose a tag to compare

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

16 Jan 10:30
Compare
Choose a tag to compare

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

26 May 15:59
506f0d3
Compare
Choose a tag to compare

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)