Releases: open-southeners/laravel-apiable
Releases · open-southeners/laravel-apiable
3.2.2
Fixed
- Filters values like:
filter[attribute]=0
now doesn't get removed
3.2.1
Fixed
- PHP 8.2 deprecation warnings
3.2.0
Added
- PHP 8.2 support
3.1.3
Fixed
- Fixed OR filters with rest of filtering or SQL query affecting negatively the results
3.1.2
Fixed
- Fixed
page[size]
in request doesn't get the number of results when lower than model's$perPage
(only on higher)
3.1.1
Fixed
- Filtering scopes were not being applied
3.1.0
Added
- Search (Laravel Scout) filters with allowed attributes and/or value(s):
?q=hello&q[filter][attribute]=foo
or?search=hello&search[filter][attribute]=foo
3.0.1
3.0.0
Fixed
- Remove page parameter from pagination links when using
withQuery
Changed
- Filter relationship without any value applies relationship existence filtering, now doesn't
- Filtering now handles AND/OR conditions properly
- Filtering using OR condition (
filter[status]=Active,Inactive
) will be fully invalidated if one member doesn't pass the validation RequestQueryObject::filters
method now implements own logic instead of reusing Symfony's request one to be able to get AND filters with same keys (attributes) on a different array item
Removed
withWhereHas
under filtering, now all related data is loaded (until reimplemented with AND/OR conditionals...)