Skip to content

v5.0.0

Compare
Choose a tag to compare
@nicgirault nicgirault released this 15 May 13:44
· 90 commits to master since this release

5.0.0 (2020-05-15)

Features

  • ✨ add __options in filters (99225a5)

BREAKING CHANGES

  • before a filter {name: '%John'} would be transformed as {name: {[Op.like]: '%John'}}.
    Now to get {name: {[Op.like]: '%John'}} you must provide the filter {__options: {name: 'ENDS_WITH'}, name: 'John'}