Releases: l3aro/pipeline-query-collection
Releases · l3aro/pipeline-query-collection
v1.4.2
v1.4.1
v1.4.0
v1.3.6
v1.3.0
What's Changed
- Default value relative wildcard operator position config in #3 , thanks to @joelbutcher
- SQLite covered in #4 #5 , thanks to @joelbutcher
- [Posible Breaking Change] I change the definition of
apply
method, now take zero params and return static. If you have custom pipe that extends myBaseFilter
, please take some actions for theapply
logic. Check #6 for more details @l3aro
<?php
// old
protected function apply(Builder $query): Builder {}
// new
protected function apply(): static {}
New Contributors
- @joelbutcher made their first contribution in #3
v1.2.0
What's Changed
- Finally, test works 🎉🎉
- Add new
TrashFilter
pipe to perform query against Laravel's Soft Delete - Fix
DateToFilter
's query name - Add custom postfix of query date
DateFromFilter
andDateToFilter
- Fix
RelationFilter
's method name should be camelCase - Fix
RelativeFilter
's query name - Improve
BitwiseFilter
@l3aro