v1.9.0 π
meili-bot
released this
01 Jul 11:48
·
85 commits
to refs/heads/main
since this release
This version introduces features released on Meilisearch v1.9.0 π
Check out the changelog of Meilisearch v1.9.0 for more information on the changes.
π Enhancements
- Add ranking score threshold (#644) @the-sinner
$client->index('INDEX_NAME')->search('badman', [
'rankingScoreThreshold' => 0.2
]);
- Add get similar document method (#645) @the-sinner
$similarQuery = new SimilarDocumentsQuery('TARGET_DOCUMENT_ID');
$client->index('INDEX_NAME')->getSimilar($similarQuery);
- hybrid search changes (#649) @ManyTheFish
- Add
setRetrieveVectors
method toSimilarDocumentsQuery
- Add
setRetrieveVectors
method toDocumentsQuery
- Add
- Add distinct attribute at search (#648) @the-sinner
$client->index('products')->updateFilterableAttributes(['product_id', 'sku', 'url']);
βοΈ Maintenance/misc
- Add PHP 8.3 to testing matrix (#626) @Koopzington
Thanks again to @Koopzington, @ManyTheFish, @curquiza, and @the-sinner! π