v1.11.1
This version fixes lots of issues regarding logical operator in object conditions, such as:
Post.where({
$or: [
{ title: { $like: '%Cain%' }, authorId: 1 },
{ title: { $in: [ 's1', '21' ] }, authorId: 2 },
]
});
What's Changed
- fix: normalize logical operator conditions before formatting by @cyjake in #186
- fix: support len validator by @JimmyDaddy in #188
- fix: sequelize mode support HAVING, and select fields raw sql support by @JimmyDaddy in #187
- fix: logical operator with multiple conditions such as by @cyjake in #190
Full Changelog: v1.11.0...v1.11.1