Skip to content

v1.12.0 🐘

Latest
Compare
Choose a tag to compare
@curquiza curquiza released this 23 Dec 11:52
78879c2

This version introduces features released on Meilisearch v1.12.0 πŸŽ‰

Check out the Meilisearch v1.12.0 changelog for more information.

πŸš€ Enhancements

Introducing new methods to get one or several batches, respectively getBatch() and getBatches(). A batch is a set of tasks processed together.

The TaskQuery class now has a setReverse() method to retrieve tasks in reverse chronological order.

client->getTasks((new TasksQuery())->setReverse(true));

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 of hits (and not totalHits value) (#701) @johnnynotsolucky

βš™οΈ Maintenance/misc

Thanks again to @aivchen, @johnnynotsolucky, @norkunas, @mdubus and @Strift! πŸŽ‰