This version introduces features released on Meilisearch v1.12.0 π
Check out the Meilisearch v1.12.0 changelog for more information.
π Enhancements
- Addition: #699
Introducing new methods to get one or several batches, respectively getBatch()
and getBatches()
. A batch is a set of tasks processed together.
- Addition: #698
The TaskQuery
class now has a setReverse()
method to retrieve tasks in reverse chronological order.
client->getTasks((new TasksQuery())->setReverse(true));
- Addition: #702
Index settings now allow disabling prefix search and facet search. They're both enabled by default. The SDK now comes with dedicated methods to configure these settings.
// disable prefix search
$index->updatePrefixSearch('disabled');
// reset prefix search settings
$index->resetPrefixSearch();
// disable facet search
$index->updateFacetSearch(false);
// reset facet search settings
$index->resetFacetSearch();
π Bug Fixes
- fix: pull the latest in the CI instead of forcing the v1.11 (#691) @mdubus
- Make
hitsCount
always the number ofhits
(and nottotalHits
value) (#701) @johnnynotsolucky
βοΈ Maintenance/misc
- Update CI to run with PHP 8.4 (#696) @norkunas
- Fixed SearchNestedFieldsTest test (#704) @aivchen
- PHPStan 2 + fixed uninitialized properties in SearchResult (#706) @aivchen
Thanks again to @aivchen, @johnnynotsolucky, @norkunas, @mdubus and @Strift! π